@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700&family=Space+Grotesk:wght@400;500;600&display=swap');

:root {
    --bg: #08090d;
    --bg-soft: #0f1118;
    --accent: #ff2edc;
    --accent-2: #00f6ff;
    --accent-3: #7cff6b;
    --text: #f7f7fb;
    --muted: #9aa6b2;
    --border: #20242e;
    --glow: 0 0 24px rgba(255, 46, 220, 0.35);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background:
        radial-gradient(circle at 15% 20%, rgba(255, 46, 220, 0.25), transparent 40%),
        radial-gradient(circle at 85% 10%, rgba(0, 246, 255, 0.18), transparent 45%),
        radial-gradient(circle at 60% 90%, rgba(124, 255, 107, 0.14), transparent 40%),
        linear-gradient(160deg, #050609 0%, #0a0c12 45%, #08090d 100%);
    color: var(--text);
    min-height: 100vh;
}

.noise {
    position: fixed;
    inset: 0;
    background-image: url('../icons/noise.svg');
    opacity: 0.12;
    pointer-events: none;
}

.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 48px 8vw 24px;
}

.hero__brand {
    display: flex;
    gap: 18px;
    align-items: center;
}

.hero__logo {
    width: 68px;
    height: 68px;
    filter: drop-shadow(0 0 18px rgba(255, 46, 220, 0.5));
}

.hero__tag {
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-2);
    font-size: 11px;
}

.hero h1 {
    font-family: 'Syne', sans-serif;
    font-size: 40px;
    text-shadow: 0 0 18px rgba(255, 46, 220, 0.3);
}

.hero__actions {
    display: flex;
    gap: 12px;
}

.button {
    background: linear-gradient(120deg, var(--accent), var(--accent-2));
    color: #0a0a0f;
    border: none;
    padding: 12px 20px;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: var(--glow);
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(255, 46, 220, 0.25);
}

.button--ghost {
    background: rgba(9, 10, 16, 0.6);
    color: var(--text);
    border: 1px solid rgba(0, 246, 255, 0.25);
    box-shadow: 0 0 12px rgba(0, 246, 255, 0.2);
}

main {
    padding: 0 8vw 60px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.panel {
    background: linear-gradient(140deg, rgba(16, 19, 28, 0.92), rgba(8, 9, 13, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 22px;
    padding: 24px;
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.panel__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 16px;
}

.panel__controls input {
    background: rgba(11, 13, 20, 0.8);
    border: 1px solid rgba(0, 246, 255, 0.2);
    color: var(--text);
    padding: 10px 14px;
    border-radius: 12px;
    min-width: 220px;
    box-shadow: 0 0 12px rgba(0, 246, 255, 0.08);
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 11px;
    color: var(--accent-2);
    margin-bottom: 6px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.player {
    display: flex;
    gap: 20px;
    align-items: center;
}

.player__cover {
    width: 128px;
    height: 128px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #10131c;
    box-shadow: 0 0 22px rgba(0, 246, 255, 0.2);
}

.player__meta h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.player__controls {
    display: grid;
    gap: 12px;
    margin-top: 14px;
}

.transport {
    display: flex;
    align-items: center;
    gap: 10px;
}

.transport .icon-button {
    width: 42px;
    height: 42px;
}

.timeline {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: var(--muted);
}

.timeline input[type="range"],
.volume input[type="range"] {
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    outline: none;
}

.timeline input[type="range"]::-webkit-slider-thumb,
.volume input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--accent-2);
    box-shadow: 0 0 10px rgba(0, 246, 255, 0.5);
    cursor: pointer;
}

.timeline input[type="range"]:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.volume {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: var(--muted);
}

.volume img {
    width: 18px;
    height: 18px;
    opacity: 0.8;
}

.list {
    display: grid;
    gap: 12px;
}

.list__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 14px;
    background: rgba(12, 14, 22, 0.9);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.list__item:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.3);
}

.list__item button {
    background: transparent;
    border: none;
    color: var(--accent-2);
    cursor: pointer;
    font-weight: 600;
}

.table {
    display: grid;
    gap: 10px;
}

.table__row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 12px 14px;
    background: rgba(12, 14, 22, 0.9);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.icon-button {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(12, 14, 22, 0.9);
    border: 1px solid rgba(255, 46, 220, 0.35);
    display: grid;
    place-items: center;
    cursor: pointer;
    box-shadow: 0 0 18px rgba(255, 46, 220, 0.2);
}

.footer {
    padding: 20px 8vw 40px;
    display: flex;
    justify-content: space-between;
    color: var(--muted);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__links a {
    color: var(--text);
    margin-left: 16px;
    text-decoration: none;
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .player {
        flex-direction: column;
        align-items: flex-start;
    }

    .table__row {
        grid-template-columns: 1fr;
    }

    .footer {
        flex-direction: column;
        gap: 10px;
    }
}
