/**
 * JEST FM Style Design System
 * Modern, Light, Glassmorphism Aesthetic
 * Version: 1.0
 */

/* ===========================================
   1. CSS VARIABLES
   =========================================== */
:root {
    /* Brand Colors */
    --brand-red: #E63946;
    --brand-red-dark: #C53030;
    --brand-purple: #6C63FF;
    --brand-gold: #D4AF37;

    /* Neutral Colors */
    --bg-primary: #F7F7F9;
    --bg-secondary: #EFEFF3;
    --bg-white: #FFFFFF;
    --bg-dark: #1A1A1D;

    /* Text Colors */
    --text-dark: #1A1A1D;
    --text-grey: #6B7280;
    --text-light: #9CA3AF;
    --text-white: #FFFFFF;

    /* Borders & Shadows */
    --border-light: rgba(0, 0, 0, 0.05);
    --border-medium: rgba(0, 0, 0, 0.1);
    --shadow-soft: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 20px 50px -15px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 20px rgba(230, 57, 70, 0.3);

    /* Typography */
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Poppins', sans-serif;
    --font-grotesk: 'Space Grotesk', sans-serif;

    /* Spacing */
    --container-max: 1280px;
    --header-height: 110px;
    --player-height: 80px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;
}

/* ===========================================
   2. BASE STYLES
   =========================================== */
*,
*::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-color: var(--bg-primary);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    padding-bottom: var(--player-height);
}

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

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

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-dark);
}

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(--text-dark) 0%, var(--brand-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

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

/* ===========================================
   4. LAYOUT & CONTAINERS
   =========================================== */
.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 System */
.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);
    }
}

@media (max-width: 768px) {

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

/* Flexbox Utilities */
.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 COMPONENTS
   =========================================== */
.glass-panel {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.glass-dark {
    background: rgba(26, 26, 29, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===========================================
   6. CARDS
   =========================================== */
.card {
    background: var(--bg-white);
    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);
}

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

.card-padding {
    padding: 24px;
}

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

/* Feature Card */
.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(230, 57, 70, 0.1);
    color: var(--brand-red);
}

.feature-card .icon-box.purple {
    background: rgba(108, 99, 255, 0.1);
    color: var(--brand-purple);
}

.feature-card .icon-box.gold {
    background: rgba(212, 175, 55, 0.1);
    color: var(--brand-gold);
}

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

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

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

.feature-card .link:hover {
    text-decoration: underline;
}

/* ===========================================
   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-red);
    color: var(--text-white);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    background: var(--brand-red-dark);
    transform: scale(1.05);
    color: var(--text-white);
}

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

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

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

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

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

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.2);
    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(212, 175, 55, 0.2);
    color: var(--brand-gold);
    border: 1px solid rgba(212, 175, 55, 0.4);
}

.badge-live::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--brand-gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.badge-red {
    background: rgba(230, 57, 70, 0.1);
    color: var(--brand-red);
}

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

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* ===========================================
   9. TOP INFO BAR
   =========================================== */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 42px;
    background: #fdfdfd;
    z-index: 1001;
    border-bottom: 1px solid rgba(0, 0, 0, 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: #374151;
    font-weight: 600;
    transition: color 0.2s ease;
}

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

.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: #374151;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.top-bar-right>a:hover {
    color: var(--brand-red);
    background: rgba(0, 0, 0, 0.03);
}

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

.top-bar-social a {
    color: #374151;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

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

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

/* ===========================================
   10. NAVIGATION (HEADER) - PROFESSIONAL
   =========================================== */
.navbar {
    position: fixed;
    top: 36px;
    left: 0;
    right: 0;
    height: var(--header-height);
    z-index: 1000;
    transition: all 0.35s ease;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

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

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

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

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

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

.navbar-brand:hover img {
    filter: drop-shadow(0 6px 20px rgba(230, 57, 70, 0.25));
}

.navbar-brand .logo-icon {
    width: 56px;
    height: 56px;
    background: #374151;
    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(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    transition: all 0.4s ease;
}

.navbar-brand:hover .logo-icon {
    transform: rotate(-5deg) scale(1.05);
    box-shadow: 0 12px 32px rgba(230, 57, 70, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.3) inset;
}

.navbar-brand .logo-text {
    font-family: var(--font-grotesk);
    font-weight: 700;
    font-size: 1.6rem;
    color: #374151;
    letter-spacing: -0.02em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.navbar-brand .logo-text span {
    background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Desktop Menu - Clean & Minimal */
.navbar-menu {
    display: none;
    align-items: center;
    gap: 0;
}

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

@media (min-width: 1024px) {
    .navbar-menu {
        gap: 0;
    }
}

.navbar-link {
    position: relative;
    font-family: 'Poppins', 'Inter', var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.01em;
    color: #374151;
    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-red);
    border-radius: 2px;
    transition: width 0.3s ease;
}

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

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

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

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

/* Navbar Actions - Premium Buttons */
.navbar-actions {
    display: none;
    align-items: center;
    gap: 10px;
}

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

.navbar-actions .btn {
    position: relative;
    overflow: hidden;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-actions .btn-secondary {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(255, 255, 255, 1) inset;
}

/* İstek Gönder Button - Professional Style */
.navbar-request-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--brand-red);
    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-red);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.3);
}

/* Live Button - Canlı Dinle */
.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 Menu Toggle - Clean */
.mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--text-dark);
    font-size: 1.25rem;
    border-radius: var(--radius-sm);
    background: transparent;
    border: none;
    transition: all 0.25s ease;
}

.mobile-toggle:hover {
    color: var(--brand-red);
    background: rgba(230, 57, 70, 0.08);
}

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

/* Navbar Scroll State */
.navbar.scrolled {
    height: 85px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

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

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

/* ===========================================
   10. MOBILE MENU
   =========================================== */
.mobile-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-white);
    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-dark);
    transition: background var(--transition-fast);
}

.mobile-menu-link:hover,
.mobile-menu-link.active {
    background: var(--bg-secondary);
    color: var(--brand-red);
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    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-dark);
}

.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(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 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 {
    color: var(--brand-red);
}

.hero-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
    max-width: 480px;
}

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

/* Hero Indicators */
.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);
}

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

/* ===========================================
   12. TOP 20 CHART
   =========================================== */
.chart-section {
    background: var(--bg-white);
    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: 16px 20px;
    border-bottom: 1px solid var(--border-light);
    transition: background var(--transition-fast);
}

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

.chart-item:hover {
    background: var(--bg-primary);
}

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

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

.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.3);
    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;
}

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

.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.1);
    color: #22C55E;
}

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

.chart-change.same {
    background: var(--bg-secondary);
    color: var(--text-grey);
}

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

/* ===========================================
   13. SCHEDULE WIDGET
   =========================================== */
.schedule-widget {
    background: var(--bg-white);
    border-radius: var(--radius-2xl);
    padding: 24px;
    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(212, 175, 55, 0.1);
    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-red);
    margin-bottom: 8px;
}

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

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

.schedule-progress {
    height: 6px;
    background: var(--bg-secondary);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: 8px;
}

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

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

.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-dark);
    min-width: 56px;
}

.schedule-item-info {
    padding-left: 16px;
    border-left: 2px solid var(--bg-secondary);
}

.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-grey);
}

/* ===========================================
   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.2);
    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: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    box-shadow: var(--shadow-medium);
}

.podcast-cover .duration-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.6);
    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-red);
}

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

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

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

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

.about-dark-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    line-height: 1.7;
}

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

.about-stat {
    display: flex;
    flex-direction: column;
}

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

.about-stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
}

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

.map-card iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: var(--radius-lg);
    filter: grayscale(100%) contrast(1.2);
    opacity: 0.6;
    transition: opacity var(--transition-normal);
}

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

.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-grey);
}

/* Map Markers */
.map-marker {
    position: absolute;
    width: 16px;
    height: 16px;
    background: var(--brand-red);
    border-radius: 50%;
    border: 2px solid var(--bg-white);
    box-shadow: var(--shadow-soft);
}

.map-marker.pulse {
    animation: map-pulse 2s infinite;
}

@keyframes map-pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.4);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 0 0 10px rgba(230, 57, 70, 0);
    }
}

/* ===========================================
   16. FOOTER
   =========================================== */
.footer {
    background: var(--bg-white);
    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-red);
    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;
}

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

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

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

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

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

.footer-nav h4 {
    font-size: 1rem;
    margin-bottom: 16px;
}

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

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

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

.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-grey);
}

/* ===========================================
/* ===========================================
   17. PROFESSIONAL DOCKED PLAYER
   =========================================== */
.luxury-player {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 85px;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.05);
    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;
}

/* Left: Program Info */
.player-program-side {
    flex: 1;
    justify-content: flex-start;
    min-width: 0;
}

.program-card-v2 {
    display: flex;
    flex-direction: column;
    min-width: 0;
    max-width: 280px;
}

.live-indicator {
    display: none;
    /* Replaced by badge-live-v2 */
}

.pulse-dot {
    width: 7px;
    height: 7px;
    background: var(--brand-red);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--brand-red);
    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;
    }
}

.live-text {
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--brand-red);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

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

.badge-live-v2 {
    display: inline-flex;
    align-items: center;
    background: #FFF0F0;
    color: #E63946;
    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: #E63946;
    font-size: 0.9rem;
    animation: towerPulse 2s infinite;
}

.program-title-row-v2 .icon-mic {
    color: #1a1a1a;
    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-progress-wrapper-v2 {
    width: 100%;
    margin-top: 4px;
}

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

.program-progress-fill {
    height: 100%;
    background: var(--brand-red);
    box-shadow: 0 0 8px rgba(230, 57, 70, 0.3);
    border-radius: 10px;
    transition: width 1s linear;
}

.program-times-v2 {
    display: flex;
    justify-content: space-between;
    font-size: 0.65rem;
    color: #94a3b8;
    font-weight: 600;
    margin-top: 3px;
    font-family: var(--font-mono);
}

.program-title-v2 {
    font-size: 1.15rem;
    font-weight: 800;
    color: #0f172a;
    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: #64748b;
    margin: 0;
    font-weight: 500;
}


/* Center: Controls */
.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-red);
    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(230, 57, 70, 0.4);
    border: none;
    cursor: pointer;
}

.player-play-v2:hover {
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 12px 30px rgba(230, 57, 70, 0.6);
    background: var(--brand-red-dark);
}

.player-share-v2 {
    color: #9ca3af;
    font-size: 1.25rem;
    transition: all 0.3s;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
}

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

.player-volume-v2 {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #9ca3af;
    transition: color 0.3s;
}

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

.volume-slider-v2 {
    width: 70px;
    height: 4px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(0, 0, 0, 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-red);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.2s;
}

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

/* Right: Song Info */
.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-dark);
    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: #4b5563;
    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: #000;
    padding: 3px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
    position: relative;
    animation: rotateVinyl 12s linear infinite;
    animation-play-state: paused;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

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

.vinyl-disc::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: #111;
    border-radius: 50%;
    border: 2px solid #222;
    z-index: 2;
    box-shadow: inset 0 0 4px #000;
}

.vinyl-disc img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    opacity: 0.9;
    filter: brightness(0.9);
}

@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;
    }
}

/* Redundant player styles removed */

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

.player-skip-btn {
    color: var(--text-light);
    font-size: 1.25rem;
    display: none;
}

@media (min-width: 640px) {
    .player-skip-btn {
        display: block;
    }
}

.player-skip-btn:hover {
    color: var(--text-dark);
}

.player-play-btn {
    width: 48px;
    height: 48px;
    background: var(--brand-red);
    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-red-dark);
    transform: scale(1.1);
}

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

.player-quality-badge {
    padding: 4px 12px;
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-grey);
    display: none;
}

@media (min-width: 640px) {
    .player-quality-badge {
        display: block;
    }
}

.player-quality-badge:hover {
    color: var(--brand-red);
    border-color: var(--brand-red);
}

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

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

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

.player-volume-slider {
    width: 80px;
    height: 4px;
    background: var(--bg-secondary);
    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-dark);
    border-radius: 50%;
    cursor: pointer;
}

/* Player Progress Line */
.player-progress {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: transparent;
}

.player-progress-bar {
    height: 100%;
    background: var(--brand-red);
    opacity: 0.5;
    animation: pulse 2s infinite;
}

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

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

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

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--brand-red);
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
}

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

/* ===========================================
   19. NEWS CARDS
   =========================================== */
.news-card {
    display: block;
    background: var(--bg-white);
    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);
}

.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-light);
    margin-bottom: 8px;
}

.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;
}

.news-card-excerpt {
    font-size: 0.875rem;
    color: var(--text-grey);
    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 */
.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

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

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

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

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

/* ===========================================
   22. RESPONSIVE ADJUSTMENTS
   =========================================== */
@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);
    }
}

/* ===========================================
   19. HOMEPAGE SPECIFIC REFINEMENTS
   =========================================== */
@media (max-width: 1024px) {
    .grid-header {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
}

.chart-item {
    padding: 24px 32px;
    /* Increased padding for premium feel */
}

.schedule-widget {
    padding: 40px !important;
    /* More breathable spacing */
}

.schedule-current .label {
    background: rgba(230, 57, 70, 0.05);
    padding: 4px 12px;
    border-radius: var(--radius-full);
}

.chart-item:hover {
    background: rgba(230, 57, 70, 0.02);
}

/* ===========================================
   15. GLOBAL PAGE HEADERS
   =========================================== */
.page-header-premium {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 160px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.4;
}

.page-header-premium .badge {
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.2), rgba(230, 57, 70, 0.1));
    border: 1px solid rgba(230, 57, 70, 0.4);
    color: var(--brand-red);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.page-header-premium h1 {
    color: var(--text-white);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 12px;
    font-family: var(--font-grotesk);
    position: relative;
    z-index: 2;
}

.page-header-premium p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.page-content-offset {
    margin-top: -40px;
    position: relative;
    z-index: 10;
    padding-bottom: 60px;
}

/* Standard Content Card */
.content-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

@media (max-width: 768px) {
    .page-header-premium {
        padding: 140px 0 80px;
    }

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

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

/* ===========================================
   18. LUXURY SCHEDULE LIST
   =========================================== */
.schedule-container {
    background: #ffffff;
    border-radius: 35px;
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.05);
}

.chart-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.chart-item {
    display: flex;
    align-items: center;
    padding: 20px 30px;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
}

.chart-item:hover {
    transform: translateX(10px) translateY(-2px);
    box-shadow: 15px 15px 40px rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.08);
}

.chart-item.active {
    background: rgba(230, 57, 70, 0.04);
    border-left: 4px solid var(--brand-red);
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.08);
}

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

.chart-time-box {
    min-width: 100px;
    text-align: center;
    padding-right: 25px;
    border-right: 2px solid #f1f5f9;
}

.chart-time-start {
    font-size: 1.25rem;
    font-weight: 800;
    color: #1e293b;
    font-family: var(--font-mono);
    margin-bottom: 2px;
}

.chart-time-end {
    font-size: 0.8rem;
    color: #94a3b8;
    font-weight: 600;
    letter-spacing: 0.5px;
}

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

.chart-info h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    letter-spacing: -0.3px;
}

.chart-info .host {
    font-size: 0.9rem;
    color: #64748b;
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

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

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

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