﻿/**
 * Dark Premium Radio Design System
 * Inspired by MetroFM - Deep Dark Glassmorphism
 * Version: 2.0
 */

/* ========== 1. CSS VARIABLES ========== */
:root {
    --brand-blue: #3b82f6;
    --brand-blue-light: #60a5fa;
    --brand-blue-dark: #2563eb;
    --brand-red: #ef4444;
    --brand-indigo: #6366f1;
    --bg-primary: #0a0f1c;
    --bg-secondary: #0d1b2a;
    --bg-tertiary: #1b263b;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.06);
    --text-white: #ffffff;
    --text-primary: #e2e8f0;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --text-dark: #e2e8f0;
    --text-grey: #94a3b8;
    --text-light: #64748b;
    --border-light: rgba(255, 255, 255, 0.05);
    --border-medium: rgba(255, 255, 255, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.05);
    --shadow-soft: 0 4px 30px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 10px 40px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 20px rgba(59, 130, 246, 0.3);
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Poppins', sans-serif;
    --font-grotesk: 'Space Grotesk', sans-serif;
    --container-max: 1280px;
    --header-height: 110px;
    --player-height: 80px;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;
}

/* ========== 2. BASE ========== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-tertiary) 100%);
    background-attachment: fixed;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    padding-bottom: var(--player-height);
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--brand-blue-light);
}

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

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none;
}

/* ========== 3. TYPOGRAPHY ========== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-white);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.4rem, 3vw, 2.1rem);
}

h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
}

h4 {
    font-size: 1.25rem;
}

h5 {
    font-size: 1.1rem;
}

h6 {
    font-size: 1rem;
}

.text-gradient {
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-indigo) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-brand {
    color: var(--brand-blue);
}

.text-muted {
    color: var(--text-secondary);
}

.text-light {
    color: var(--text-muted);
}

/* ========== 4. LAYOUT ========== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 16px;
}

@media (min-width: 640px) {
    .container {
        padding: 0 24px;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 32px;
    }
}

.section {
    padding: 60px 0;
}

@media (min-width: 768px) {
    .section {
        padding: 80px 0;
    }
}

.grid {
    display: grid;
    gap: 24px;
}

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

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-header {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
}

@media (max-width: 768px) {

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-2 {
    gap: 8px;
}

.gap-4 {
    gap: 16px;
}

.gap-6 {
    gap: 24px;
}

.gap-8 {
    gap: 32px;
}

/* ========== 5. GLASSMORPHISM ========== */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-soft);
}

.glass-dark {
    background: rgba(10, 15, 28, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* ========== 6. CARDS ========== */
.card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal), background var(--transition-normal);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    background: var(--bg-card-hover);
}

.card-padding {
    padding: 24px;
}

@media (min-width: 768px) {
    .card-padding {
        padding: 32px;
    }
}

.feature-card {
    padding: 32px;
}

.feature-card .feature-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.feature-card .icon-box {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.feature-card .icon-box.red {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.feature-card .icon-box.purple {
    background: rgba(99, 102, 241, 0.15);
    color: #818cf8;
}

.feature-card .icon-box.gold {
    background: rgba(234, 179, 8, 0.15);
    color: #eab308;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0;
    line-height: 1;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 16px;
}

.feature-card .link {
    color: var(--brand-blue-light);
    font-weight: 600;
    font-size: 0.875rem;
}

.feature-card .link:hover {
    text-decoration: underline;
    color: var(--brand-blue);
}

/* Premium Features Bar (Redesign) */
.premium-features-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: rgba(10, 15, 28, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.feature-item {
    padding: 30px 40px;
    display: flex;
    align-items: center;
    gap: 24px;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.feature-item:last-child {
    border-right: none;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.04);
}

.feature-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--brand-blue);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.feature-item:hover::after {
    transform: scaleX(1);
}

.feature-item .feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-white);
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.feature-item:hover .feature-icon {
    background: var(--brand-blue);
    border-color: var(--brand-blue);
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.feature-item .feature-content h3 {
    font-family: var(--font-grotesk);
    font-size: 1.15rem;
    margin-bottom: 4px;
    color: var(--text-white);
}

.feature-item .feature-content p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 1024px) {
    .premium-features-bar {
        grid-template-columns: 1fr;
    }

    .feature-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding: 24px;
    }

    .feature-item:last-child {
        border-bottom: none;
    }
}

/* ========== 7. BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.875rem;
    transition: all var(--transition-normal);
}

.btn-primary {
    background: var(--brand-blue);
    color: var(--text-white);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    background: var(--brand-blue-dark);
    transform: scale(1.05);
    color: var(--text-white);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.5);
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--border-medium);
}

.btn-secondary:hover {
    border-color: var(--brand-blue);
    box-shadow: var(--shadow-soft);
    color: var(--text-white);
}

.btn-outline {
    background: transparent;
    color: var(--brand-blue-light);
    border: 1px solid var(--brand-blue);
}

.btn-outline:hover {
    background: var(--brand-blue);
    color: var(--text-white);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
}

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

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

/* ========== 8. BADGES ========== */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-live {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.badge-live::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #ef4444;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.badge-red {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.badge-green {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* ========== 9. TOP BAR ========== */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 42px;
    background: rgba(10, 15, 28, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1001;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-bar-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.top-bar-left a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 600;
    transition: color 0.2s ease;
}

.top-bar-left a:hover {
    color: var(--brand-blue-light);
}

.top-bar-left i {
    font-size: 0.8rem;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-right>a {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.top-bar-right>a:hover {
    color: var(--brand-blue-light);
    background: rgba(255, 255, 255, 0.05);
}

.top-bar-social {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 8px;
    padding-left: 16px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-social a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.top-bar-social a:hover {
    color: var(--brand-blue-light);
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
}

/* ========== 10. NAVBAR ========== */
.navbar {
    position: fixed;
    top: 36px;
    left: 0;
    right: 0;
    height: var(--header-height);
    z-index: 1000;
    transition: all 0.35s ease;
    background: rgba(10, 15, 28, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .navbar {
        top: 0;
    }
}

.navbar-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    transition: transform 0.3s ease;
    position: relative;
}

.navbar-brand:hover {
    transform: scale(1.02);
    color: inherit;
}

.navbar-brand img {
    filter: drop-shadow(0 4px 12px rgba(59, 130, 246, 0.15));
    transition: all 0.4s ease;
}

.navbar-brand:hover img {
    filter: drop-shadow(0 6px 20px rgba(59, 130, 246, 0.25));
}

.navbar-brand .logo-icon {
    width: 56px;
    height: 56px;
    background: var(--brand-blue);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-family: var(--font-grotesk);
    font-weight: 800;
    font-size: 1.3rem;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
    transition: all 0.4s ease;
}

.navbar-brand:hover .logo-icon {
    transform: rotate(-5deg) scale(1.05);
}

.navbar-brand .logo-text {
    font-family: var(--font-grotesk);
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--text-white);
    letter-spacing: -0.02em;
}

.navbar-brand .logo-text span {
    color: var(--brand-blue-light);
}

.navbar-menu {
    display: none;
    align-items: center;
    gap: 0;
}

@media (min-width: 768px) {
    .navbar-menu {
        display: flex;
    }
}

.navbar-link {
    position: relative;
    font-family: 'Poppins', 'Inter', var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
    padding: 12px 14px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.navbar-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--brand-blue);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.navbar-link:hover {
    color: var(--text-white);
}

.navbar-link:hover::after {
    width: 24px;
}

.navbar-link.active {
    color: var(--brand-blue-light);
    font-weight: 700;
}

.navbar-link.active::after {
    width: 32px;
    background: var(--brand-blue);
}

.navbar-actions {
    display: none;
    align-items: center;
    gap: 10px;
}

@media (min-width: 768px) {
    .navbar-actions {
        display: flex;
    }
}

.navbar-request-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--brand-blue);
    color: #ffffff;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.navbar-request-btn i {
    font-size: 0.9rem;
}

.navbar-request-btn:hover {
    background: var(--brand-blue-dark);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.navbar-live-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.navbar-live-btn .live-dot {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    animation: livePulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

@keyframes livePulse {

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

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--text-white);
    font-size: 1.25rem;
    border-radius: var(--radius-sm);
    background: transparent;
    border: none;
    transition: all 0.25s ease;
}

.mobile-toggle:hover {
    color: var(--brand-blue-light);
    background: rgba(59, 130, 246, 0.1);
}

@media (min-width: 768px) {
    .mobile-toggle {
        display: none;
    }
}

.navbar.scrolled {
    height: 85px;
    background: rgba(10, 15, 28, 0.95);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled .navbar-brand img {
    height: 65px !important;
}

.navbar.scrolled .navbar-link {
    padding: 12px 14px;
    font-size: 0.9rem;
}

/* ========== 10b. MOBILE MENU ========== */
.mobile-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
    z-index: 999;
    transform: translateX(100%);
    transition: transform var(--transition-normal);
    padding: 24px;
    overflow-y: auto;
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-menu-link {
    display: block;
    padding: 16px;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    transition: background var(--transition-fast);
}

.mobile-menu-link:hover,
.mobile-menu-link.active {
    background: rgba(59, 130, 246, 0.1);
    color: var(--brand-blue-light);
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

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

/* ========== 11. HERO SLIDER ========== */
.hero {
    position: relative;
    height: 85vh;
    min-height: 600px;
    max-height: 900px;
    overflow: hidden;
    background: var(--bg-primary);
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1);
    transition: opacity 1s ease-in-out, transform 8s ease;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1.05);
}

.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10, 15, 28, 0.9) 0%, rgba(10, 15, 28, 0.6) 50%, rgba(10, 15, 28, 0.3) 100%);
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    z-index: 10;
}

.hero-text {
    max-width: 600px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-indigo) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-indicators {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: flex;
    gap: 8px;
    z-index: 20;
}

.hero-indicator {
    width: 12px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    transition: all var(--transition-normal);
    cursor: pointer;
}

.hero-indicator.active {
    width: 48px;
    background: var(--brand-blue);
}

/* ========== 12. CHART/TOP 10 ========== */
.chart-section {
    background: var(--bg-card);
    border-radius: var(--radius-2xl);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.chart-item {
    display: flex;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid var(--border-light);
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
    background: transparent;
}

.chart-item:last-child {
    border-bottom: none;
}

.chart-item:hover {
    background: var(--bg-card-hover);
    transform: translateX(6px);
}

.chart-item.active {
    background: rgba(59, 130, 246, 0.08);
    border-left: 4px solid var(--brand-blue);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
}

.chart-item.passed {
    opacity: 0.5;
}

.chart-item.playing {
    border-left: 3px solid var(--brand-blue);
    background: rgba(59, 130, 246, 0.05);
}

.chart-rank {
    width: 48px;
    text-align: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--brand-blue-light);
}

.chart-item:nth-child(n+4) .chart-rank {
    color: var(--text-secondary);
}

.chart-cover {
    position: relative;
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-left: 16px;
    flex-shrink: 0;
}

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

.chart-cover .play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-fast);
    cursor: pointer;
}

.chart-item:hover .play-overlay {
    opacity: 1;
}

.chart-cover .play-overlay i {
    color: var(--text-white);
    font-size: 1.5rem;
}

.chart-info {
    flex: 1;
    margin-left: 20px;
    min-width: 0;
}

.chart-info h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--text-white);
}

/* ========== 22. NEWS DETAIL PAGE (FIXED) ========== */
.news-detail-container {
    min-height: 100vh;
}

.news-detail-container .header-premium-dark {
    padding: 200px 0 120px;
    background:
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.2), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(99, 102, 241, 0.15), transparent 40%),
        var(--bg-primary);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.news-detail-container .header-premium-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2v-4h4v-2h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2v-4h4v-2H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    mask-image: linear-gradient(to bottom, black, transparent);
    -webkit-mask-image: linear-gradient(to bottom, black, transparent);
}

.back-btn-wrapper {
    margin-bottom: 32px;
}

.btn-back-luxury {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
}

.btn-back-luxury:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-white);
    transform: translateX(-5px);
}

.news-detail-container .header-content-v2 {
    position: relative;
    z-index: 20;
}

.news-detail-container .news-title-v2 {
    font-family: var(--font-grotesk);
    font-size: clamp(1.2rem, 3.5vw, 2.2rem);
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.news-detail-container .news-intro-v2 {
    font-size: 1.35rem;
    color: var(--text-primary);
    max-width: 850px;
    line-height: 1.6;
    margin-bottom: 48px;
    opacity: 0.9;
}

.news-detail-container .news-meta-divider {
    height: 1px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.1), transparent);
    margin-bottom: 30px;
}

.news-detail-container .news-meta-row-v2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.news-detail-container .meta-info-v2 {
    display: flex;
    align-items: center;
    gap: 24px;
    color: var(--text-muted);
}

.news-detail-container .meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 600;
}

.news-detail-container .meta-item i {
    color: var(--brand-blue-light);
    font-size: 1.1rem;
}

.news-detail-container .news-share-v2 {
    display: flex;
    align-items: center;
    gap: 16px;
}

.news-detail-container .share-label-v2 {
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.news-detail-container .share-btn {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.news-detail-container .share-btn:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

.news-detail-container .share-btn.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
}

.news-detail-container .share-btn.x-twitter:hover {
    background: #000;
    border-color: #333;
}

.news-detail-container .share-btn.whatsapp:hover {
    background: #25d366;
    border-color: #25d366;
}

.news-detail-container .article-card {
    background: #0d1b2a;
    /* Slightly lighter than pure dark for contrast */
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.02), transparent);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    margin-bottom: 60px;
    position: relative;
}

.news-detail-container .featured-image-v2 {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    position: relative;
}

.news-detail-container .featured-image-v2::after {
    content: '';
    position: absolute;
    inset: 0;
    /* Removed shadow fade to eliminate top gap */
}

.news-detail-container .featured-image-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-detail-container .article-body-v2 {
    padding: 20px 40px 60px;
}

.news-detail-container .main-article-content {
    font-size: 1.15rem;
    line-height: 1.75;
    color: var(--text-primary);
    font-weight: 400;
}

.news-detail-container .main-article-content p {
    margin-bottom: 24px;
}

.news-detail-container .main-article-content>*:first-child {
    margin-top: 0 !important;
}

.news-detail-container .main-article-content h2,
.news-detail-container .main-article-content h3 {
    font-family: var(--font-grotesk);
    color: var(--text-white);
    font-weight: 700;
    margin: 45px 0 20px;
    letter-spacing: -0.01em;
}

.news-detail-container .sidebar-sticky-v2 {
    position: sticky;
    top: 130px;
}

.news-detail-container .sidebar-sec-title {
    margin-bottom: 30px;
}

.news-detail-container .sidebar-sec-title h3 {
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--brand-blue-light);
    display: flex;
    align-items: center;
    gap: 15px;
}

.news-detail-container .sidebar-sec-title h3::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.1), transparent);
}

.news-detail-container .sidebar-list-v2 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-detail-container .sidebar-item-v2 {
    display: flex;
    gap: 18px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-lg);
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    text-decoration: none;
}

.news-detail-container .sidebar-item-v2:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateX(8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.news-detail-container .sidebar-thumb {
    width: 90px;
    height: 90px;
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.news-detail-container .sidebar-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.news-detail-container .sidebar-item-v2:hover .sidebar-thumb img {
    transform: scale(1.15);
}

.news-detail-container .sidebar-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-detail-container .sidebar-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.4;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s;
}

.news-detail-container .sidebar-item-v2:hover .sidebar-info h4 {
    color: var(--brand-blue-light);
}

.news-detail-container .sidebar-info .date {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
}

@media (max-width: 1280px) {
    .news-detail-container .article-body-v2 {
        padding: 15px 20px 50px;
    }
}

@media (max-width: 1024px) {
    .news-detail-container .article-body-v2 {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .news-detail-container .header-premium-dark {
        padding: 160px 0 80px;
    }

    .news-detail-container .news-title-v2 {
        font-size: 1.5rem;
    }

    .news-detail-container .article-body-v2 {
        padding: 15px 10px 40px;
    }

    .news-detail-container .main-article-content {
        font-size: 1.1rem;
    }

    .news-detail-container .news-meta-row-v2 {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

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

.chart-info .host {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.chart-change {
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
    margin-right: 16px;
}

.chart-change.up {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.chart-change.down {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.chart-change.same {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
}

.chart-duration {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.chart-time-box {
    min-width: 100px;
    text-align: center;
    padding-right: 25px;
    border-right: 2px solid rgba(255, 255, 255, 0.05);
}

.chart-time-start {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-white);
    font-family: var(--font-grotesk);
    margin-bottom: 2px;
}

.chart-time-end {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.chart-content {
    flex: 1;
    padding-left: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chart-thumb {
    width: 65px;
    height: 65px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.chart-item:hover .chart-thumb {
    transform: scale(1.1) rotate(3deg);
}

.badge-live-mini {
    background: var(--brand-blue);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 900;
    padding: 3px 10px;
    border-radius: 30px;
    letter-spacing: 1px;
    box-shadow: 0 3px 10px rgba(59, 130, 246, 0.3);
    text-transform: uppercase;
}

/* ========== 13. SCHEDULE WIDGET ========== */
.schedule-widget {
    background: var(--bg-card);
    border-radius: var(--radius-2xl);
    padding: 40px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.schedule-widget::after {
    content: '';
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    background: rgba(59, 130, 246, 0.08);
    border-radius: 50%;
    filter: blur(40px);
}

.schedule-current {
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.schedule-current .label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--brand-blue-light);
    margin-bottom: 8px;
    background: rgba(59, 130, 246, 0.1);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    display: inline-block;
}

.schedule-current h3 {
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.schedule-current p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.schedule-progress {
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: 8px;
}

.schedule-progress-bar {
    height: 100%;
    background: var(--brand-blue);
    border-radius: var(--radius-full);
}

.schedule-times {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.schedule-upcoming {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.schedule-item {
    display: flex;
    gap: 16px;
}

.schedule-item-time {
    font-family: var(--font-grotesk);
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-white);
    min-width: 56px;
}

.schedule-item-info {
    padding-left: 16px;
    border-left: 2px solid rgba(255, 255, 255, 0.05);
}

.schedule-item-info h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.schedule-item-info p {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.schedule-container {
    background: var(--bg-card);
    border-radius: 35px;
    padding: 30px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-soft);
}

/* ========== 14. PODCAST CARDS ========== */
.podcast-card {
    cursor: pointer;
}

.podcast-cover {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 16px;
    box-shadow: var(--shadow-soft);
}

.podcast-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.podcast-card:hover .podcast-cover img {
    transform: scale(1.1);
}

.podcast-cover .play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.podcast-card:hover .play-overlay {
    opacity: 1;
}

.podcast-cover .play-btn {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-primary);
    box-shadow: var(--shadow-medium);
}

.podcast-cover .duration-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-white);
}

.podcast-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
    transition: color var(--transition-fast);
}

.podcast-card:hover .podcast-title {
    color: var(--brand-blue-light);
}

.podcast-meta {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* ========== 15. ABOUT & MAP ========== */
.about-dark-card {
    background: var(--bg-card);
    border-radius: var(--radius-2xl);
    padding: 48px;
    color: var(--text-white);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.about-dark-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 256px;
    height: 256px;
    background: var(--brand-blue);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.1;
    transform: translate(50%, -50%);
}

.about-dark-card h2 {
    color: var(--text-white);
    margin-bottom: 24px;
}

.about-dark-card p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.7;
}

.about-stats {
    display: flex;
    gap: 48px;
    margin-top: auto;
}

.about-stat-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--brand-blue-light);
}

.about-stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.map-card {
    background: var(--bg-card);
    border-radius: var(--radius-2xl);
    padding: 24px;
    position: relative;
    height: 400px;
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.map-card iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: var(--radius-lg);
    opacity: 0.7;
    transition: opacity var(--transition-normal);
}

.map-card:hover iframe {
    opacity: 0.9;
}

.map-card-header {
    position: absolute;
    top: 40px;
    left: 40px;
    z-index: 10;
}

.map-card-header h3 {
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.map-card-header p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* ========== 16. FOOTER ========== */
.footer {
    background: rgba(10, 15, 28, 0.95);
    border-top: 1px solid var(--border-light);
    padding: 80px 0 calc(var(--player-height) + 32px);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 1.5fr repeat(3, 1fr);
    }
}

.footer-brand .logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.footer-brand .logo-icon {
    width: 32px;
    height: 32px;
    background: var(--brand-blue);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-family: var(--font-grotesk);
    font-weight: 700;
}

.footer-brand .logo-text {
    font-family: var(--font-grotesk);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-white);
}

.footer-brand .logo-text span {
    color: var(--brand-blue-light);
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 24px;
}

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

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 0.875rem;
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--brand-blue);
    color: var(--text-white);
}

.footer-nav h4 {
    font-size: 1rem;
    margin-bottom: 16px;
    color: var(--text-white);
}

.footer-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-nav a {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.footer-nav a:hover {
    color: var(--brand-blue-light);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border-light);
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.footer-bottom a {
    color: var(--text-secondary);
}

.footer-bottom a:hover {
    color: var(--brand-blue-light);
}

/* ========== 17. DOCKED PLAYER ========== */
.luxury-player {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 85px;
    z-index: 9999;
    background: rgba(10, 15, 28, 0.95);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    animation: playerSlideUp 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes playerSlideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.luxury-player-inner {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
}

.player-section {
    display: flex;
    align-items: center;
}

.player-program-side {
    flex: 1;
    justify-content: flex-start;
    min-width: 0;
}

.program-card-v2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    height: 100%;
    min-width: 0;
    max-width: 280px;
}

.badge-live-v2 {
    display: inline-flex;
    align-items: center;
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    font-size: 0.6rem;
    font-weight: 800;
    padding: 2px 10px;
    border-radius: 50px;
    letter-spacing: 0.8px;
    width: fit-content;
    margin-bottom: -2px;
}

.program-main-v2 {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.program-title-row-v2 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: -2px;
}

.program-title-row-v2 .icon-tower {
    color: var(--brand-blue-light);
    font-size: 0.9rem;
    animation: towerPulse 2s infinite;
}

.program-title-row-v2 .icon-mic {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

@keyframes towerPulse {
    0% {
        opacity: 1;
        transform: scale(1);
    }

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

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

.program-title-v2 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-white);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: -0.5px;
    font-family: var(--font-grotesk);
}

.program-host-v2 {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin: 0;
    font-weight: 500;
}

.program-progress-wrapper-v2 {
    width: 100%;
    margin-top: 4px;
}

.program-progress-track {
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.program-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--brand-blue), var(--brand-indigo));
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.4);
    border-radius: 10px;
    transition: width 1s linear;
}

.player-controls-side {
    flex: 0 0 auto;
    justify-content: center;
}

.player-actions-v2 {
    display: flex;
    align-items: center;
    gap: clamp(15px, 3vw, 35px);
}

.player-play-v2 {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--brand-blue);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    border: none;
    cursor: pointer;
}

.player-play-v2:hover {
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.6);
    background: var(--brand-blue-dark);
}

.player-share-v2 {
    color: var(--text-muted);
    font-size: 1.25rem;
    transition: all 0.3s;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.player-share-v2:hover {
    color: var(--brand-blue-light);
    transform: translateY(-2px);
}

.player-volume-v2 {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    transition: color 0.3s;
}

.player-volume-v2:hover {
    color: var(--text-white);
}

.volume-slider-v2 {
    width: 70px;
    height: 4px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    outline: none;
    cursor: pointer;
}

.volume-slider-v2::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    background: var(--brand-blue);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
    transition: transform 0.2s;
}

.volume-slider-v2::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.player-song-side {
    flex: 1;
    justify-content: flex-end;
    min-width: 0;
}

.song-card-v2 {
    display: flex;
    align-items: center;
    gap: 18px;
    text-align: right;
    min-width: 0;
}

.song-details-v2 {
    min-width: 0;
}

.song-title-v2 {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-white);
    margin: 0;
    max-width: 220px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
}

.song-artist-v2 {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin: 3px 0 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 500;
}

.song-art-wrapper-v2 {
    width: 62px;
    height: 62px;
    flex-shrink: 0;
}

.vinyl-disc {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #050505;
    padding: 3px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    animation: rotateVinyl 12s linear infinite;
    animation-play-state: paused;
    border: 2px solid #111;
    overflow: hidden;
    background-image: repeating-radial-gradient(circle, #111 0px, #050505 1px, #111 2px);
}

.vinyl-disc.spinning {
    animation-play-state: running;
}

.vinyl-disc::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.05) 45%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.05) 55%, rgba(255, 255, 255, 0) 100%), repeating-radial-gradient(circle, rgba(0, 0, 0, 0) 0px, rgba(0, 0, 0, 0.03) 1px, rgba(0, 0, 0, 0) 2px);
    z-index: 5;
    pointer-events: none;
    border-radius: 50%;
}

.vinyl-disc::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #222;
    border-radius: 50%;
    z-index: 10;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
}

.vinyl-disc img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    z-index: 4;
    transition: all 0.5s ease;
}

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

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

@media (max-width: 1100px) {
    .program-title-v2 {
        max-width: 150px;
    }

    .song-title-v2 {
        max-width: 150px;
    }
}

@media (max-width: 800px) {
    .player-song-side {
        display: none;
    }
}

@media (max-width: 500px) {
    .player-program-side {
        display: none;
    }

    .luxury-player-inner {
        justify-content: center;
    }

    .luxury-player {
        height: 75px;
    }
}

/* Old player compat */
.player-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex: 1;
}

.player-play-btn {
    width: 48px;
    height: 48px;
    background: var(--brand-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.25rem;
    box-shadow: var(--shadow-glow);
    transition: all var(--transition-normal);
}

.player-play-btn:hover {
    background: var(--brand-blue-dark);
    transform: scale(1.1);
}

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

.player-volume {
    display: none;
    align-items: center;
    gap: 8px;
}

@media (min-width: 640px) {
    .player-volume {
        display: flex;
    }
}

.player-volume i {
    color: var(--text-muted);
}

.player-volume-slider {
    width: 80px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    -webkit-appearance: none;
    appearance: none;
}

.player-volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    background: var(--text-white);
    border-radius: 50%;
    cursor: pointer;
}

.live-indicator {
    display: none;
}

.pulse-dot {
    width: 7px;
    height: 7px;
    background: #ef4444;
    border-radius: 50%;
    box-shadow: 0 0 12px #ef4444;
    animation: dotPulse 2s infinite;
}

@keyframes dotPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.6);
        opacity: 0.4;
    }

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

/* ========== 18. FORMS ========== */
.form-group {
    margin-bottom: 20px;
}

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

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    font-family: inherit;
    color: var(--text-white);
    transition: all var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--brand-blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
    background: rgba(255, 255, 255, 0.08);
}

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

/* ========== 19. NEWS CARDS ========== */
.news-card {
    display: block;
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: all var(--transition-normal);
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    background: var(--bg-card-hover);
}

.news-card-image {
    height: 180px;
    background: var(--bg-secondary);
    overflow: hidden;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.news-card:hover .news-card-image img {
    transform: scale(1.05);
}

.news-card-body {
    padding: 20px;
}

.news-card-date {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    display: block;
}

.news-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--text-white);
}

.news-card:hover .news-card-title {
    color: var(--brand-blue-light);
}

.news-card-excerpt {
    font-size: 0.875rem;
    color: var(--text-secondary);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ========== 20. UTILITIES ========== */
.mt-0 {
    margin-top: 0;
}

.mt-4 {
    margin-top: 16px;
}

.mt-6 {
    margin-top: 24px;
}

.mt-8 {
    margin-top: 32px;
}

.mt-10 {
    margin-top: 40px;
}

.mt-12 {
    margin-top: 48px;
}

.mt-16 {
    margin-top: 64px;
}

.mt-20 {
    margin-top: 80px;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-4 {
    margin-bottom: 16px;
}

.mb-6 {
    margin-bottom: 24px;
}

.mb-8 {
    margin-bottom: 32px;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.hidden {
    display: none;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* .hidden-mobile {} */

@media (max-width: 768px) {
    .hidden-mobile {
        display: none !important;
    }
}

/* ========== 21. PAGE HEADER ========== */
.page-header {
    padding: calc(var(--header-height) + 60px) 0 60px;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-light);
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 8px;
}

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

.page-header-premium {
    background: radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.15), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(99, 102, 241, 0.1), transparent 40%),
        var(--bg-primary);
    padding: 160px 0 60px;
    /* Reduced from 180px/100px */
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.page-header-premium h1 {
    color: #ffffff;
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 16px;
    font-family: var(--font-grotesk);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.page-header-premium p {
    color: var(--text-secondary);
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ========== 23. PREMIUM CONTENT PAGES ========== */
.premium-page-section {
    padding: 80px 0;
    position: relative;
    z-index: 10;
}

.premium-page-offset {
    margin-top: -110px;
    /* Increased from -80px to pull the content higher */
}

.premium-glass-card {
    background: #0d1b2a;
    background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-2xl);
    padding: 60px 80px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.premium-page-content {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #ffffff;
    /* Brighter for better contrast */
}

/* About Page Specifics */
.about_lead_v2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 40px;
    border-left: 4px solid var(--brand-blue);
    padding-left: 30px;
    line-height: 1.5;
    font-family: var(--font-grotesk);
}

.about_main_text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-primary);
}

.about_main_text p {
    margin-bottom: 25px;
}

.vision_mission_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.vision_box h4,
.mission_box h4 {
    color: var(--brand-blue-light);
    font-family: var(--font-grotesk);
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.vision_box p,
.mission_box p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Stats System */
.premium-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.premium-stat-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-xl);
    padding: 40px 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.premium-stat-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.1);
}

.premium-stat-card .stat-value {
    font-family: var(--font-grotesk);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 8px;
    display: block;
    line-height: 1;
}

.premium-stat-card .stat-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* Contact Specific Premium Styles */
.premium-contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.3fr;
    gap: 60px;
}

.premium-form-group {
    margin-bottom: 24px;
}

.premium-form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.premium-input,
.premium-textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 16px 20px;
    color: #ffffff;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.premium-input:focus,
.premium-textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--brand-blue);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
}

.premium-submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-indigo));
    color: white;
    border: none;
    border-radius: var(--radius-lg);
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

@media (max-width: 1100px) {
    .premium-contact-grid {
        grid-template-columns: 1fr;
    }

    .premium-glass-card {
        padding: 50px 40px;
    }
}

@media (max-width: 768px) {
    .premium-glass-card {
        padding: 35px 20px;
    }

    .vision_mission_grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about_lead_v2 {
        font-size: 1.25rem;
        padding-left: 20px;
    }

    .premium-stat-card .stat-value {
        font-size: 2.2rem;
    }
}

/* ========== 24. RESPONSIVE UTILITIES ========== */
@media (max-width: 768px) {
    :root {
        --header-height: 64px;
        --player-height: 72px;
    }

    .hero {
        height: 70vh;
        min-height: 500px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .about-dark-card {
        padding: 32px;
    }

    .about-stats {
        gap: 32px;
    }

    .footer {
        padding: 48px 0 calc(var(--player-height) + 24px);
    }

    .page-header-premium {
        padding: 140px 0 50px;
    }

    .page-header-premium h1 {
        font-size: clamp(1.4rem, 5vw, 2rem);
    }

    .page-header-premium h1::after {
        width: 30px;
        margin: 12px auto 10px;
    }

    .page-content-offset {
        margin-top: -15px;
    }

    .content-card {
        padding: 24px;
        border-radius: 16px;
    }
}

/* ========== EQUALIZER BARS ========== */
@keyframes equalize {
    0% {
        height: 20%;
    }

    50% {
        height: 100%;
    }

    100% {
        height: 20%;
    }
}

.bar {
    animation: equalize 1s ease-in-out infinite;
    background: linear-gradient(to top, var(--brand-blue), var(--brand-blue-light), #93c5fd);
    border-radius: 999px;
    width: 6px;
    margin: 0 3px;
    opacity: 0.8;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

.bar:nth-child(1) {
    animation-duration: 0.9s;
}

.bar:nth-child(2) {
    animation-duration: 1.2s;
}

.bar:nth-child(3) {
    animation-duration: 0.8s;
}

.bar:nth-child(4) {
    animation-duration: 1.5s;
}

.bar:nth-child(5) {
    animation-duration: 1.1s;
}

/* ========== STORE BADGE ========== */
.store-badge-luxury {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.store-badge-luxury:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    transform: translateY(-2px);
}