/* ===========================
   Websky Radio – Main Stylesheet
   Dark Theme with Neon Accents
   =========================== */

/* --- CSS Custom Properties --- */
:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #111118;
    --bg-tertiary: #1a1a2e;
    --bg-card: rgba(22, 33, 62, 0.5);
    --bg-glass: rgba(255, 255, 255, 0.03);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.4);
    --accent-pink: #ff2d75;
    --accent-cyan: #00d4ff;
    --accent-orange: #ff6b35;
    --accent-purple: #7b2ff7;
    --accent-gold: #ffd93d;
    --gradient-primary: linear-gradient(135deg, var(--accent-pink), var(--accent-orange));
    --gradient-secondary: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    --gradient-text: linear-gradient(135deg, var(--accent-cyan), var(--accent-pink));
    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-glow: rgba(0, 212, 255, 0.3);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
    --shadow-glow-pink: 0 0 30px rgba(255, 45, 117, 0.3);
    --shadow-glow-cyan: 0 0 30px rgba(0, 212, 255, 0.3);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --font-primary: 'Outfit', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    --nav-height: 80px;
    --player-height: 80px;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
}

body {
    font-family: var(--font-secondary);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    padding-bottom: var(--player-height);
    min-height: 100vh;
}

::selection {
    background: var(--accent-pink);
    color: white;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--accent-pink), var(--accent-purple));
    border-radius: 4px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* --- Typography --- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
}

.text-gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Container --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-primary);
    font-weight: 600;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.btn:hover::after {
    opacity: 1;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.8rem;
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 20px rgba(255, 45, 117, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 45, 117, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    box-shadow: var(--shadow-glow-cyan);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ===========================
   NAVBAR
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    z-index: 1000;
    transition: all 0.4s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1.3rem;
    color: white;
    z-index: 1001;
}

.nav-logo img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.4);
    animation: logoPulse 3s ease-in-out infinite;
}

@keyframes logoPulse {

    0%,
    100% {
        box-shadow: 0 0 15px rgba(0, 212, 255, 0.4);
    }

    50% {
        box-shadow: 0 0 25px rgba(255, 45, 117, 0.5);
    }
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 10px 20px;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: white;
    background: rgba(255, 255, 255, 0.05);
}

.nav-link.active {
    color: var(--accent-cyan);
}

/* Nav Dropdown (Mehr) */
.nav-dropdown {
    position: relative;
}
.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s ease;
    z-index: 1000;
}
.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.nav-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}
.nav-dropdown-item:hover {
    color: #fff;
    background: rgba(255,255,255,0.05);
}
.nav-dropdown-item i {
    width: 18px;
    text-align: center;
    color: var(--accent-primary);
    font-size: 0.8rem;
}

.nav-auth {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-user {
    color: var(--accent-cyan);
    font-weight: 500;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* --- User Dropdown --- */
.user-dropdown {
    position: relative;
}

.user-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    border-radius: 50px;
    padding: 6px 16px 6px 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 500;
}

.user-dropdown-toggle:hover {
    border-color: var(--border-glow);
    background: rgba(255, 255, 255, 0.08);
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.user-avatar-default {
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.85rem;
    color: white;
}

.user-dropdown-name {
    white-space: nowrap;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-dropdown-arrow {
    font-size: 0.65rem;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.user-dropdown.open .user-dropdown-arrow {
    transform: rotate(180deg);
}

.user-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 240px;
    background: rgba(17, 17, 24, 0.98);
    backdrop-filter: blur(30px);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.97);
    transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 1100;
}

.user-dropdown.open .user-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.dropdown-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.03);
}

.dropdown-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.dropdown-avatar-default {
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1rem;
    color: white;
}

.dropdown-user-info strong {
    display: block;
    font-size: 0.9rem;
}

.dropdown-role {
    display: block;
    font-size: 0.75rem;
    color: var(--accent-cyan);
    font-weight: 500;
}

.dropdown-divider {
    height: 1px;
    background: var(--border-subtle);
    margin: 6px 0;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    color: var(--text-secondary);
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.06);
    color: white;
}

.dropdown-item i {
    width: 18px;
    text-align: center;
    font-size: 0.85rem;
}

.dropdown-item-danger:hover {
    background: rgba(255, 45, 117, 0.1);
    color: var(--accent-pink);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: radial-gradient(ellipse at center, #1a1a2e 0%, #0a0a0f 70%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 45, 117, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(123, 47, 247, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 24px;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 45, 117, 0.15);
    border: 1px solid rgba(255, 45, 117, 0.3);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: var(--font-primary);
    letter-spacing: 2px;
    color: var(--accent-pink);
    margin-bottom: 32px;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 45, 117, 0.3);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(255, 45, 117, 0);
    }
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 0 0 40px rgba(0, 212, 255, 0.3);
}

.hero-title-glow {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.5));
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

/* Equalizer Animation */
.hero-equalizer {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 4px;
    height: 50px;
}

.hero-equalizer span {
    width: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
    animation: equalizer 1.2s ease-in-out infinite;
}

.hero-equalizer span:nth-child(1) {
    animation-delay: 0s;
    height: 15px;
}

.hero-equalizer span:nth-child(2) {
    animation-delay: 0.1s;
    height: 30px;
}

.hero-equalizer span:nth-child(3) {
    animation-delay: 0.2s;
    height: 20px;
}

.hero-equalizer span:nth-child(4) {
    animation-delay: 0.3s;
    height: 40px;
}

.hero-equalizer span:nth-child(5) {
    animation-delay: 0.4s;
    height: 25px;
}

.hero-equalizer span:nth-child(6) {
    animation-delay: 0.5s;
    height: 35px;
}

.hero-equalizer span:nth-child(7) {
    animation-delay: 0.6s;
    height: 18px;
}

.hero-equalizer span:nth-child(8) {
    animation-delay: 0.7s;
    height: 45px;
}

.hero-equalizer span:nth-child(9) {
    animation-delay: 0.8s;
    height: 22px;
}

.hero-equalizer span:nth-child(10) {
    animation-delay: 0.9s;
    height: 30px;
}

@keyframes equalizer {

    0%,
    100% {
        transform: scaleY(0.3);
        opacity: 0.5;
    }

    50% {
        transform: scaleY(1);
        opacity: 1;
    }
}

/* ===========================
   SECTIONS
   =========================== */
.section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-cyan);
    margin-bottom: 16px;
    padding: 6px 18px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 50px;
    background: rgba(0, 212, 255, 0.05);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ===========================
   CHANNELS SECTION
   =========================== */
.channels-section {
    background: var(--bg-secondary);
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

.channel-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 40px 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.channel-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(0, 212, 255, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.channel-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-glow);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(0, 212, 255, 0.1);
}

.channel-card:hover::before {
    opacity: 1;
}

.channel-vinyl {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto 24px;
}

.vinyl-disc {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: repeating-radial-gradient(circle,
            #1a1a2e 0px,
            #1a1a2e 2px,
            #111118 3px,
            #111118 5px);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: vinylSpin 8s linear infinite;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.05), inset 0 0 30px rgba(0, 0, 0, 0.5);
}

.channel-card:hover .vinyl-disc {
    animation-duration: 2s;
}

@keyframes vinylSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.vinyl-label {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.channel-live-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--accent-pink);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
    letter-spacing: 1px;
    animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 45, 117, 0.4);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(255, 45, 117, 0);
    }
}

.channel-name {
    font-size: 1.2rem;
    margin-bottom: 8px;
    position: relative;
}

.channel-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 20px;
    position: relative;
}

.channel-play {
    position: relative;
}

/* ===========================
   TRACKS SECTION
   =========================== */
.tracks-section {
    background: var(--bg-primary);
}

.tracks-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.track-item {
    display: grid;
    grid-template-columns: 50px 56px 1fr auto 80px auto 44px;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.track-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--border-glow);
    transform: translateX(4px);
}

.track-rank {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-muted);
}

.track-item:first-child .track-rank {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.track-cover {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

.track-info {
    min-width: 0;
}

.track-title {
    font-size: 0.95rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.track-artist {
    font-size: 0.82rem;
    color: var(--text-secondary);
}

.track-album {
    color: var(--text-muted);
    font-size: 0.85rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.track-duration {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-family: var(--font-primary);
    font-weight: 500;
}

.track-rating {
    display: flex;
    gap: 2px;
    font-size: 0.7rem;
}

.track-rating .fas {
    color: var(--accent-gold);
}

.track-rating .far {
    color: var(--text-muted);
}

.track-play-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: var(--gradient-primary);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    transition: all 0.3s;
    opacity: 0.6;
}

.track-item:hover .track-play-btn {
    opacity: 1;
    transform: scale(1.1);
}

/* ===========================
   NEWS SECTION
   =========================== */
.news-section {
    background: var(--bg-secondary);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.news-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s ease;
}

.news-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-glow);
    box-shadow: var(--shadow-lg);
}

.news-img {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.news-icon {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.15);
}

.news-date {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.news-body {
    padding: 24px;
}

.news-category {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-cyan);
    background: rgba(0, 212, 255, 0.1);
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.news-title {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.news-excerpt {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 16px;
    line-height: 1.6;
}

.news-link {
    color: var(--accent-pink);
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s;
}

.news-link:hover {
    gap: 12px;
    color: var(--accent-cyan);
}

/* ===========================
   CONTACT SECTION
   =========================== */
.contact-section {
    background: var(--bg-primary);
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.form-group label i {
    margin-right: 6px;
    color: var(--accent-cyan);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-glass);
    border: 1.5px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===========================
   AUTH PAGES
   =========================== */
.auth-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--nav-height) + 40px) 24px calc(var(--player-height) + 40px);
    background: radial-gradient(ellipse at center, #1a1a2e 0%, #0a0a0f 70%);
}

.auth-container {
    width: 100%;
    max-width: 460px;
}

.auth-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.auth-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
}

.auth-header {
    text-align: center;
    margin-bottom: 32px;
}

.auth-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    box-shadow: var(--shadow-glow-cyan);
}

.auth-header h1 {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.auth-header p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.auth-form {
    margin-bottom: 24px;
}

.auth-footer {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.auth-footer a {
    color: var(--accent-cyan);
    font-weight: 600;
}

.auth-footer a:hover {
    color: var(--accent-pink);
}

.forgot-password-link {
    color: var(--text-secondary);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.forgot-password-link:hover {
    color: var(--accent-cyan);
}

/* Remember Me Checkbox */
.remember-me-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: -0.5rem;
}

.remember-me-label {
    display: flex !important;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem !important;
    color: var(--text-secondary) !important;
    user-select: none;
    transition: color 0.3s ease;
}

.remember-me-label:hover {
    color: var(--text-primary) !important;
}

.remember-me-label input[type="checkbox"] {
    display: none;
}

.remember-me-checkmark {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 1.5px solid var(--border-subtle);
    border-radius: 5px;
    background: var(--bg-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.remember-me-checkmark::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free', 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 0.65rem;
    color: white;
    opacity: 0;
    transform: scale(0);
    transition: all 0.2s ease;
}

.remember-me-label input[type="checkbox"]:checked ~ .remember-me-checkmark {
    background: var(--gradient-primary);
    border-color: var(--accent-cyan);
    box-shadow: 0 0 8px rgba(0, 212, 255, 0.25);
}

.remember-me-label input[type="checkbox"]:checked ~ .remember-me-checkmark::after {
    opacity: 1;
    transform: scale(1);
}

/* Alerts */
.alert {
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
    font-size: 0.9rem;
}

.alert p {
    margin-bottom: 4px;
}

.alert p:last-child {
    margin-bottom: 0;
}

.alert-success {
    background: rgba(40, 167, 69, 0.15);
    border: 1px solid rgba(40, 167, 69, 0.3);
    color: #6fcf97;
}

.alert-success a {
    color: var(--accent-cyan);
    font-weight: 600;
}

.alert-error {
    background: rgba(255, 45, 117, 0.1);
    border: 1px solid rgba(255, 45, 117, 0.3);
    color: #ff6b8a;
}

/* ===========================
   PAGE HERO (Sub-pages)
   =========================== */
.page-hero {
    position: relative;
    padding: calc(var(--nav-height) + 80px) 0 80px;
    text-align: center;
    background: radial-gradient(ellipse at center, #1a1a2e 0%, #0a0a0f 70%);
    overflow: hidden;
}

.page-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 50%, rgba(255, 45, 117, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(0, 212, 255, 0.08) 0%, transparent 50%);
}

.page-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    position: relative;
}

.page-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-top: 12px;
    position: relative;
}

/* ===========================
   ABOUT PAGE
   =========================== */
.about-section {
    background: var(--bg-secondary);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 24px;
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-img-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.about-img-wrapper img {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-glow-cyan);
}

.about-img-glow {
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.15), transparent 70%);
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-card {
    text-align: center;
    padding: 32px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-glow);
}

.stat-icon {
    font-size: 1.8rem;
    margin-bottom: 12px;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-number {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
}

.team-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: all 0.4s ease;
}

.team-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-glow);
}

.team-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin: 0 auto 20px;
    overflow: hidden;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h3 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.team-role {
    color: var(--accent-primary);
    font-size: 0.85rem;
    font-weight: 600;
}

.team-desc {
    color: var(--text-secondary);
    font-size: 0.82rem;
    line-height: 1.5;
    margin-top: 12px;
    max-width: 260px;
    margin-left: auto;
    margin-right: auto;
}

.team-socials {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
}

.team-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: all 0.3s;
}

.team-socials a:hover {
    background: var(--accent-primary);
    color: white;
    border-color: var(--accent-primary);
    transform: translateY(-2px);
}

/* ===========================
   CONTACT PAGE
   =========================== */
.contact-page-section {
    background: var(--bg-secondary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    align-items: start;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    padding: 28px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: var(--border-glow);
    transform: translateY(-3px);
}

.info-icon {
    font-size: 1.5rem;
    margin-bottom: 12px;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.info-card h3 {
    font-size: 1rem;
    margin-bottom: 6px;
}

.info-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.contact-form-page {
    max-width: none;
}

/* ===========================
   AUDIO PLAYER
   =========================== */
.audio-player {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: var(--player-height);
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(30px);
    border-top: 1px solid var(--border-subtle);
    z-index: 999;
    display: flex;
    align-items: center;
}

.player-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 250px 160px 1fr 150px auto;
    align-items: center;
    gap: 24px;
}

.player-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.player-thumbnail {
    position: relative;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.player-thumbnail img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.player-pulse {
    position: absolute;
    inset: -4px;
    border: 2px solid var(--accent-pink);
    border-radius: 50%;
    animation: playerPulse 2s ease-in-out infinite;
}

@keyframes playerPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0;
    }
}

.player-details {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.player-title {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    display: inline-block;
    flex-shrink: 0;
}

.player-title-row {
    display: flex;
    align-items: center;
    gap: 8px;
    overflow: hidden;
    max-width: 260px;
    position: relative;
    mask-image: linear-gradient(to right, black 0%, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, black 0%, black 85%, transparent 100%);
}

.player-title.scrolling {
    animation: marquee-scroll var(--scroll-duration, 10s) linear infinite;
    animation-delay: 2s;
}

@keyframes marquee-scroll {
    0%, 10% { transform: translateX(0); }
    90%, 100% { transform: translateX(var(--scroll-distance, -50%)); }
}

.player-artist {
    font-size: 0.78rem;
    color: var(--text-secondary);
}

.player-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.player-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    padding: 8px;
}

.player-btn:hover {
    color: white;
    transform: scale(1.1);
}

.player-btn-play {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 2px 15px rgba(255, 45, 117, 0.4);
}

.player-btn-play:hover {
    box-shadow: 0 4px 25px rgba(255, 45, 117, 0.6);
}

.player-progress {
    display: flex;
    align-items: center;
    gap: 12px;
}

.player-time {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-family: var(--font-primary);
    font-weight: 500;
    min-width: 36px;
}

.progress-bar {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.progress-bar:hover {
    height: 6px;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: width 0.1s linear;
}

.player-volume {
    display: flex;
    align-items: center;
    gap: 10px;
}

.player-popup-btn {
    margin-left: 8px;
    font-size: 0.85rem !important;
    opacity: 0.6;
    transition: all 0.2s;
}
.player-popup-btn:hover {
    opacity: 1;
    color: var(--accent-primary) !important;
}

.volume-slider {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.volume-fill {
    height: 100%;
    background: var(--accent-cyan);
    border-radius: 2px;
    transition: width 0.1s;
}


/* Player Live Badge & Extras */

.player-live-badge {
    background: var(--accent-pink);
    color: white;
    font-size: 0.55rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 3px;
    letter-spacing: 1px;
    animation: livePulse 2s ease-in-out infinite;
}

.player-listeners {
    color: var(--text-muted);
    font-size: 0.75rem;
    font-family: var(--font-primary);
    font-weight: 500;
    min-width: 50px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.player-stream-type {
    background: rgba(0, 212, 255, 0.15);
    color: var(--accent-cyan);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.player-stream-type.stream-live {
    background: rgba(255, 45, 117, 0.15);
    color: var(--accent-pink);
}

.audio-player.playing .player-pulse {
    animation: playerPulseAnim 1.5s ease-in-out infinite;
}

@keyframes playerPulseAnim {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 45, 117, 0.4);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(255, 45, 117, 0);
    }
}

/* ===========================
   FOOTER
   =========================== */
.site-footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
    padding-bottom: var(--player-height);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding: 60px 0 40px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-links h4,
.footer-social h4 {
    font-size: 1rem;
    margin-bottom: 20px;
    color: white;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: var(--accent-cyan);
    padding-left: 6px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow-pink);
}

.footer-bottom {
    border-top: 1px solid var(--border-subtle);
    padding: 20px 0;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ===========================
   ANIMATIONS & UTILITIES
   =========================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===========================
   APP DOWNLOAD BANNER
   =========================== */
.app-download-banner {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    transform: translateY(50%);
    padding: 0 max(20px, calc((100% - 1200px) / 2));
}

.app-download-inner {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.18), rgba(6, 182, 212, 0.12));
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 16px;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    backdrop-filter: blur(12px);
}

.app-download-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.app-download-icon i {
    font-size: 1.4rem;
    color: #fff;
}

.app-download-text {
    flex: 1;
    min-width: 0;
}

.app-download-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 3px;
}

.app-download-desc {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.3;
}

.app-download-btn {
    background: var(--gradient-primary);
    color: #fff;
    padding: 10px 22px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.2s;
    flex-shrink: 0;
}

.app-download-btn:hover {
    opacity: 0.85;
}

/* Song Request Form Grid */
.sr-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */
@media (max-width: 1024px) {
    .section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .track-item {
        grid-template-columns: 40px 48px 1fr 70px 44px;
    }

    .track-album,
    .track-rating {
        display: none;
    }

    .player-container {
        grid-template-columns: 200px 120px 1fr 120px auto;
        gap: 16px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        order: -1;
    }

    .settings-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 70px;
        --player-height: 70px;
    }

    .section {
        padding: 40px 0;
    }

    .section-header {
        margin-bottom: 32px;
    }

    .section-title {
        font-size: clamp(1.6rem, 5vw, 2.2rem);
    }

    .section-subtitle {
        font-size: 0.92rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 100px 32px 32px;
        gap: 4px;
        transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        border-left: 1px solid var(--border-subtle);
        z-index: 1000;
        overflow-y: auto;
    }

    .nav-menu.open {
        right: 0;
    }

    /* Mobile Nav Dropdown – always expanded in mobile sidebar */
    .nav-dropdown-menu {
        position: static;
        background: transparent;
        backdrop-filter: none;
        border: none;
        box-shadow: none;
        padding: 0 0 0 12px;
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, opacity 0.3s ease;
    }

    .nav-dropdown.mobile-open .nav-dropdown-menu {
        max-height: 300px;
        opacity: 1;
    }

    .nav-dropdown:hover .nav-dropdown-menu {
        max-height: 0;
        opacity: 0;
    }

    .nav-dropdown.mobile-open .nav-dropdown-menu {
        max-height: 300px;
        opacity: 1;
        visibility: visible;
    }

    .nav-dropdown-item {
        padding: 8px 14px;
        border-radius: var(--radius-sm);
    }

    .nav-dropdown-item:hover {
        background: rgba(255, 255, 255, 0.05);
    }

    .nav-auth {
        position: fixed;
        bottom: calc(var(--player-height) + 20px);
        right: -100%;
        width: 280px;
        padding: 0 32px;
        transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        z-index: 1000;
        flex-direction: column;
        gap: 8px;
    }

    .nav-menu.open~.nav-auth {
        right: 0;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero-title {
        font-size: clamp(2.2rem, 10vw, 4rem);
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 28px;
    }

    .hero-equalizer {
        height: 35px;
    }

    /* App Download Banner – stack on mobile */
    .app-download-banner {
        padding: 0 16px;
    }

    .app-download-inner {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 14px;
    }

    .app-download-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
    }

    .channels-section {
        padding-top: 50px;
    }

    .channels-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
    }

    .channel-card {
        padding: 28px 20px;
    }

    .channel-vinyl {
        width: 110px;
        height: 110px;
    }

    .form-row,
    .sr-form-grid {
        grid-template-columns: 1fr;
    }

    .player-container {
        grid-template-columns: 1fr auto;
        padding: 0 16px;
    }

    .player-progress,
    .player-volume,
    .player-popup-btn {
        display: none;
    }

    .player-title-row {
        max-width: 160px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stat-card {
        padding: 24px 12px;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-brand {
        max-width: none;
    }

    .track-item {
        grid-template-columns: 36px 40px 1fr 44px;
        padding: 12px 16px;
        gap: 12px;
    }

    .track-duration {
        display: none;
    }

    .auth-card {
        padding: 32px 24px;
    }

    .auth-logo {
        width: 60px;
        height: 60px;
    }

    .auth-header h1 {
        font-size: 1.5rem;
    }

    .settings-grid {
        grid-template-columns: 1fr;
    }

    .settings-card {
        padding: 28px 20px;
    }

    .page-hero {
        padding: calc(var(--nav-height) + 50px) 0 50px;
    }

    .page-title {
        font-size: clamp(1.6rem, 6vw, 2.5rem);
    }

    .page-subtitle {
        font-size: 0.95rem;
    }

    .dashboard-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }

    .panel-header,
    .panel-body {
        padding: 16px 18px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-lg {
        width: 100%;
        justify-content: center;
    }

    .btn-sm {
        padding: 7px 16px;
        font-size: 0.75rem;
    }

    .channels-grid {
        grid-template-columns: 1fr;
    }

    .channel-card {
        padding: 24px 16px;
    }

    .channel-vinyl {
        width: 90px;
        height: 90px;
        margin-bottom: 16px;
    }

    .news-img {
        height: 160px;
    }

    .news-body {
        padding: 18px;
    }

    .news-title {
        font-size: 1rem;
    }

    .track-item {
        grid-template-columns: 30px 36px 1fr 36px;
        padding: 10px 12px;
        gap: 10px;
    }

    .track-rank {
        font-size: 1.1rem;
    }

    .track-cover {
        width: 36px;
        height: 36px;
    }

    .track-title {
        font-size: 0.85rem;
    }

    .track-artist {
        font-size: 0.75rem;
    }

    .track-play-btn {
        width: 32px;
        height: 32px;
        font-size: 0.65rem;
    }

    .footer-top {
        padding: 40px 0 24px;
        gap: 24px;
    }

    .social-icons {
        gap: 8px;
    }

    .social-icon {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 18px;
        letter-spacing: 1.5px;
    }

    .player-thumbnail {
        width: 40px;
        height: 40px;
    }

    .player-title {
        font-size: 0.82rem;
    }

    .player-artist {
        font-size: 0.72rem;
    }

    .player-btn-play {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }

    .player-title-row {
        max-width: 130px;
    }

    .info-card {
        padding: 20px;
    }

    .stat-card {
        padding: 20px 10px;
    }

    .stat-number {
        font-size: 1.4rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .auth-card {
        padding: 24px 18px;
        border-radius: var(--radius-lg);
    }

    .auth-header h1 {
        font-size: 1.3rem;
    }

    .sp-show-name {
        font-size: 1rem;
    }

    .sp-show-desc {
        font-size: 0.88rem;
    }

    .sp-show-text {
        padding: 16px;
    }

    .about-img-wrapper img {
        width: 200px;
        height: 200px;
    }

    .about-content h2 {
        font-size: 1.5rem;
    }

    .team-card {
        padding: 28px 18px;
    }

    .team-avatar {
        width: 80px;
        height: 80px;
    }
}

/* ===========================
   SETTINGS PAGE
   =========================== */
.settings-section {
    background: var(--bg-secondary);
}

.settings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.settings-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    backdrop-filter: blur(10px);
}

.settings-card h2 {
    font-size: 1.2rem;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.settings-card h2 i {
    color: var(--accent-cyan);
}

/* ===========================
   TEAMDASHBOARD
   =========================== */
.dashboard-section {
    background: var(--bg-secondary);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.dashboard-stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: all 0.3s ease;
}

.dashboard-stat-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-glow);
}

.dashboard-stat-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    flex-shrink: 0;
}

.dashboard-stat-info {
    display: flex;
    flex-direction: column;
}

.dashboard-stat-number {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
}

.dashboard-stat-label {
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin-top: 4px;
}

.dashboard-panel {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.panel-header {
    padding: 20px 28px;
    border-bottom: 1px solid var(--border-subtle);
    background: rgba(255, 255, 255, 0.02);
}

.panel-header h2 {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.panel-header h2 i {
    color: var(--accent-cyan);
}

.panel-body {
    padding: 20px 28px;
    overflow-x: auto;
}

.dashboard-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.dashboard-table th {
    text-align: left;
    padding: 12px 16px;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--border-subtle);
}

.dashboard-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border-subtle);
    color: var(--text-secondary);
}

.dashboard-table tr:last-child td {
    border-bottom: none;
}

.dashboard-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

.role-badge {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: capitalize;
}

.role-administrator {
    background: rgba(255, 45, 117, 0.15);
    color: var(--accent-pink);
    border: 1px solid rgba(255, 45, 117, 0.3);
}

.role-moderator {
    background: rgba(0, 212, 255, 0.15);
    color: var(--accent-cyan);
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.role-redakteur {
    background: rgba(123, 47, 247, 0.15);
    color: var(--accent-purple);
    border: 1px solid rgba(123, 47, 247, 0.3);
}

.role-user {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    border: 1px solid var(--border-subtle);
}

/* ===========================
   SENDEPLAN PAGE
   =========================== */

/* Subtitle Bar */
.sp-subtitle-bar {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-subtle);
    padding: 14px 0;
    padding-top: 94px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.sp-section {
    padding: 32px 0 80px;
}

/* Day Tabs */
.sp-day-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 0;
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: 10px 10px 0 0;
    overflow: hidden;
}

.sp-day-tab {
    flex: 1;
    text-align: center;
    padding: 16px 8px 12px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.2s;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.sp-day-name {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.8px;
}

.sp-day-today {
    font-size: 0.65rem;
    color: var(--text-muted);
    font-style: italic;
    font-weight: 400;
}

.sp-day-tab:hover {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
}

.sp-day-tab.active {
    background: var(--accent-primary);
    color: #fff;
}

.sp-day-tab.active .sp-day-today {
    color: rgba(255, 255, 255, 0.7);
}

/* Show Cards */
.sp-shows {
    display: flex;
    flex-direction: column;
}

.sp-show-card {
    display: flex;
    min-height: 200px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-top: none;
    overflow: hidden;
    transition: background 0.2s;
}

.sp-show-card:last-child {
    border-radius: 0 0 10px 10px;
}

.sp-show-card:hover {
    background: rgba(255, 255, 255, 0.015);
}

.sp-show-card.sp-on-air {
    background: rgba(0, 212, 255, 0.03);
}

/* Text area (left side) */
.sp-show-text {
    flex: 1;
    padding: 14px 32px 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.sp-show-time {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 2px;
}

.sp-show-mod {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--accent-primary);
    margin-bottom: 30px;
}

.sp-show-name {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 20px;
    margin-bottom: 12px;
    line-height: 1.2;
}

.sp-show-desc {
    font-size: 1.0rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 550px;
}

/* Image area (right side) */
.sp-show-image {
    width: 280px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.sp-show-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Empty state */
.sp-empty {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-muted);
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-top: none;
    border-radius: 0 0 10px 10px;
}

.sp-empty i {
    font-size: 3rem;
    margin-bottom: 16px;
    opacity: 0.3;
    display: block;
}

.sp-empty p {
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 900px) {
    .sp-show-image {
        width: 180px;
    }

    .sp-show-name {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .sp-day-tabs {
        flex-wrap: wrap;
        border-radius: 10px 10px 0 0;
    }

    .sp-day-tab {
        flex: 0 0 calc(100% / 4);
        padding: 10px 4px 8px;
    }

    .sp-day-name {
        font-size: 0.68rem;
    }

    .sp-show-card {
        flex-direction: column;
        min-height: auto;
    }

    .sp-show-image {
        width: 100%;
        height: 200px;
        order: -1;
    }

    .sp-show-text {
        padding: 20px;
    }

    .sp-show-name {
        font-size: 1.1rem;
    }
}

/* ===========================
   COOKIE CONSENT BANNER
   =========================== */
.cookie-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.cookie-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10001;
    padding: 20px;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
}

.cookie-banner.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.cookie-banner-card {
    max-width: 680px;
    margin: 0 auto;
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow:
        0 -10px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(0, 212, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    text-align: center;
}

.cookie-banner-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, rgba(255, 45, 117, 0.15), rgba(0, 212, 255, 0.15));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-cyan);
    border: 1px solid rgba(0, 212, 255, 0.2);
    animation: cookieIconPulse 2.5s ease-in-out infinite;
}

@keyframes cookieIconPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.2); }
    50% { box-shadow: 0 0 0 12px rgba(0, 212, 255, 0); }
}

.cookie-banner-title {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.cookie-banner-text {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cookie-privacy-link {
    color: var(--accent-cyan) !important;
    text-decoration: underline !important;
    font-weight: 500;
}

.cookie-privacy-link:hover {
    color: var(--accent-pink) !important;
}

.cookie-banner-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.cookie-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 12px 24px;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookie-btn-accept {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 20px rgba(255, 45, 117, 0.3);
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 45, 117, 0.5);
}

.cookie-btn-reject {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.2);
}

.cookie-btn-settings {
    background: transparent;
    color: var(--accent-cyan);
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.cookie-btn-settings:hover {
    background: rgba(0, 212, 255, 0.08);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.15);
    border-color: rgba(0, 212, 255, 0.5);
}

/* Cookie Settings Panel */
.cookie-settings {
    max-width: 680px;
    margin: 12px auto 0;
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    box-shadow: 0 -10px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.cookie-settings.active {
    max-height: 500px;
    opacity: 1;
    margin-top: 12px;
    padding: 24px 28px;
}

.cookie-settings-title {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 18px;
    color: var(--text-primary);
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-subtle);
}

.cookie-category {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-subtle);
}

.cookie-category:last-of-type {
    border-bottom: none;
}

.cookie-category-info {
    flex: 1;
}

.cookie-category-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
}

.cookie-category-name {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.cookie-category-name i {
    color: var(--accent-cyan);
    font-size: 0.8rem;
    width: 16px;
    text-align: center;
}

.cookie-category-badge {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 3px 10px;
    border-radius: 50px;
}

.cookie-badge-required {
    background: rgba(40, 199, 111, 0.15);
    color: #28c76f;
    border: 1px solid rgba(40, 199, 111, 0.3);
}

.cookie-category-desc {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Toggle Switch */
.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 26px;
    flex-shrink: 0;
    cursor: pointer;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.cookie-toggle-slider::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    left: 3px;
    bottom: 2px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.2);
}

.cookie-toggle input:checked + .cookie-toggle-slider::before {
    transform: translateX(22px);
    background: white;
    box-shadow: 0 2px 8px rgba(0, 212, 255, 0.4);
}

.cookie-toggle-disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-btn-save {
    width: 100%;
    justify-content: center;
    margin-top: 18px;
    background: var(--gradient-secondary);
    color: white;
    padding: 12px 24px;
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.2);
}

.cookie-btn-save:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.4);
}

/* Cookie Banner – Closing Animation */
.cookie-banner.closing {
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.4s ease-in;
}

.cookie-overlay.closing {
    opacity: 0;
    transition: all 0.4s ease-in;
}

/* Responsive */
@media (max-width: 600px) {
    .cookie-banner {
        padding: 12px;
    }

    .cookie-banner-card {
        padding: 24px 18px;
        border-radius: var(--radius-md);
    }

    .cookie-banner-icon {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }

    .cookie-banner-title {
        font-size: 1.1rem;
    }

    .cookie-banner-text {
        font-size: 0.82rem;
    }

    .cookie-banner-buttons {
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
        justify-content: center;
        padding: 11px 20px;
        font-size: 0.8rem;
    }

    .cookie-settings {
        padding: 18px 14px;
        border-radius: var(--radius-md);
    }

    .cookie-settings.active {
        padding: 18px 14px;
    }

    .cookie-category {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}