:root {
    /* Premium Danube Sunset Color Palette */
    --primary: #f97316; /* Sunset Vibrant Orange */
    --primary-glow: rgba(249, 115, 22, 0.35);
    --bg-dark: #110722; /* Deep Sunset Plum/Violet */
    --glass: rgba(255, 255, 255, 0.025);
    --glass-border: rgba(255, 255, 255, 0.06);
    --text-main: #fcfcfd;
    --text-dim: #cbd5e1;
    
    /* Neon Glass Glowing Accents per Category */
    --player-glow: rgba(139, 92, 246, 0.08); /* Royal Violet */
    --player-border: rgba(139, 92, 246, 0.22);
    
    --bursa-glow: rgba(245, 158, 11, 0.08); /* Amber Gold */
    --bursa-border: rgba(245, 158, 11, 0.25);
    
    --news-glow: rgba(244, 63, 94, 0.08); /* Sunset Coral/Rose */
    --news-border: rgba(244, 63, 94, 0.22);
    
    --app-glow: rgba(16, 185, 129, 0.08); /* Sunset Mint/Emerald */
    --app-border: rgba(16, 185, 129, 0.22);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth !important;
}

html, body {
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
    overscroll-behavior-x: none;
    user-select: none;
    -webkit-user-select: none;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: #05010a;
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
}

/* Immersive Danube Sunset Background Image Parallax */
.bg-gradient {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: -2 !important;
    background: url('../assets/giurgiu_sunset.png') no-repeat center center fixed !important;
    background-size: cover !important;
    filter: brightness(0.28) saturate(1.45) !important;
}

/* Glassmorphic Layering & Radial Sun-Flare Overlay */
.bg-orb {
    position: fixed !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: radial-gradient(circle at 50% 30%, rgba(249, 115, 22, 0.12) 0%, rgba(139, 92, 246, 0.08) 50%, #0b0416 100%) !important;
    z-index: -1 !important;
    backdrop-filter: blur(12px) saturate(1.1) !important;
    -webkit-backdrop-filter: blur(12px) saturate(1.1) !important;
}

/* Main Container Stack */
.content-stack {
    width: 100%;
    max-width: 520px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 20px 0px 60px 0px;
    transition: max-width 0.4s ease;
}

/* Responsive Grid Snaps & Danube Grid Configuration */
.main-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    width: 100%;
}

.grid-player-card,
.grid-sidebar,
.grid-wide-radar,
.grid-bottom-panel {
    width: 100%;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ================================================================
   DESKTOP TOPBAR + ADS (hidden on mobile — zero impact on mobile)
   ================================================================ */
.desktop-topbar        { display: none; }
.desktop-section-label { display: none; }
.desktop-ad-leaderboard{ display: none; }
.news-category-tabs    { display: none; }
.news-section-separator{ display: none; }
.news-category-badge   { display: none; }

/* Badge colors (needed on all breakpoints for JS injection) */
.cat-trafic     { background: rgba(16,185,129,0.15);  color: #10b981; }
.cat-meteo      { background: rgba(59,130,246,0.15);  color: #60a5fa; }
.cat-evenimente { background: rgba(168,85,247,0.15);  color: #c084fc; }
.cat-administratie { background: rgba(245,158,11,0.15); color: #fbbf24; }
.cat-vama       { background: rgba(244,63,94,0.15);   color: #f87171; }
.cat-sanatate   { background: rgba(20,184,166,0.15);  color: #2dd4bf; }
.cat-cultura    { background: rgba(251,113,133,0.15); color: #fb7185; }
.cat-diverse    { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.4); }

/* ================================================================
   DESKTOP — RADICAL REDESIGN (≥ 1024px)
   Mobil: NEATINS sub 1024px.
   Desktop: Panou fix stânga (player) + Panou fix dreapta (știri)
            + Centru scrollabil independent (bursa + content)
   ================================================================ */
@media (min-width: 1024px) {

    /* ── RESET BODY ── */
    body {
        padding: 0 !important;
        align-items: stretch !important;
        overflow-x: hidden;
    }

    /* ── TOPBAR FIX (64px) ── */
    .desktop-topbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: fixed;
        top: 0; left: 0; right: 0;
        height: 64px;
        padding: 0 32px;
        background: rgba(7, 2, 16, 0.96);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        border-bottom: 1px solid rgba(249,115,22,0.12);
        z-index: 10000;
        gap: 16px;
    }

    .topbar-brand {
        display: flex;
        align-items: center;
        gap: 10px;
        color: white;
        font-weight: 800;
        font-size: 1rem;
        text-decoration: none;
        flex-shrink: 0;
        letter-spacing: -0.3px;
    }

    .topbar-brand img {
        width: 32px; height: 32px;
        border-radius: 50%;
        border: 2px solid var(--primary);
        box-shadow: 0 0 12px rgba(249,115,22,0.4);
    }

    .topbar-brand strong { color: var(--primary); }

    .topbar-nav {
        display: flex;
        gap: 24px;
        flex: 1;
        justify-content: center;
    }

    .topbar-nav a {
        color: rgba(255,255,255,0.45);
        text-decoration: none;
        font-size: 0.82rem;
        font-weight: 500;
        transition: color 0.2s;
        white-space: nowrap;
        letter-spacing: 0.2px;
    }
    .topbar-nav a:hover { color: white; }

    .topbar-live {
        display: flex;
        align-items: center;
        gap: 7px;
        background: rgba(255,71,87,0.1);
        border: 1px solid rgba(255,71,87,0.35);
        color: #ff4757;
        padding: 5px 16px;
        border-radius: 100px;
        font-size: 0.72rem;
        font-weight: 800;
        letter-spacing: 2px;
        flex-shrink: 0;
    }

    .topbar-live-dot {
        width: 6px; height: 6px;
        background: #ff4757;
        border-radius: 50%;
        box-shadow: 0 0 8px #ff4757;
        animation: pulse 1.5s infinite;
    }

    /* ── LEADERBOARD AD (96px, relative flow below topbar) ── */
    .desktop-ad-leaderboard {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        position: relative !important;
        margin-top: 64px !important; /* Clears fixed topbar */
        width: 100% !important;
        height: 96px !important;
        background: rgba(8, 3, 18, 0.45) !important;
        backdrop-filter: blur(12px) !important;
        border-bottom: 1px solid rgba(255,255,255,0.04) !important;
        z-index: 100 !important;
    }

    /* ── HIDE MOBILE-ONLY ELEMENTS ── */
    .breadcrumbs,
    .station-header,
    .grid-app-banner,
    .ad-unit-player {
        display: none !important;
    }

    /* ── CONTENT-STACK: centered widescreen 3-column container ── */
    .content-stack {
        max-width: 1400px !important;
        width: 100% !important;
        margin: 0 auto !important;
        padding: 24px 24px 60px 24px !important; /* Spaced naturally below relative ad */
        display: block !important;
        box-sizing: border-box !important;
    }

    /* ── MAIN GRID: Widescreen 3-Column Sticky Grid ── */
    .main-grid {
        display: grid !important;
        grid-template-columns: 290px 1fr 310px !important;
        column-gap: 30px !important;
        row-gap: 0 !important;
        align-items: start !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        min-height: auto !important;
    }

    /* COL 1: Player Card Sidebar — sticky, scrolls inside container limit */
    .grid-player-card {
        position: sticky !important;
        top: 176px !important;
        z-index: 500 !important;
        width: 100% !important;
        height: auto !important;
        background: rgba(26, 12, 47, 0.4) !important;
        border: 1px solid var(--player-border) !important;
        border-radius: 28px !important;
        padding: 0 !important;
        overflow: hidden !important;
        box-shadow: 0 25px 60px rgba(139, 92, 246, 0.08) !important;
        /* Reset absolute fixed overrides */
        left: unset !important;
        grid-column: 1 !important;
        grid-row: 1 !important;
        display: flex !important;
        flex-direction: column !important;
    }

    /* Player card content styling */
    .grid-player-card .player-card {
        flex: 1 !important;
        border-radius: 28px !important;
        padding: 24px 20px !important;
        background: transparent !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        border: none !important;
        box-shadow: none !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        height: 100% !important;
    }

    /* Large artwork on desktop */
    .grid-player-card .art-container {
        width: 210px !important;
        height: 210px !important;
        margin-bottom: 24px !important;
        position: relative !important;
        box-shadow: 0 15px 35px rgba(0,0,0,0.5) !important;
    }

    .grid-player-card .art-img-wrapper {
        width: 165px !important;
        height: 165px !important;
        border-radius: 50% !important;
        border: 2px solid rgba(255,255,255,0.08) !important;
    }

    .grid-player-card .meta-container {
        text-align: center !important;
        margin-bottom: 24px !important;
        width: 100% !important;
    }

    .grid-player-card .meta-container h2 {
        font-size: 1.25rem !important;
        font-weight: 800 !important;
        color: white !important;
        line-height: 1.3 !important;
        white-space: nowrap !important;
        text-overflow: ellipsis !important;
        overflow: hidden !important;
    }

    .grid-player-card .controls {
        margin-bottom: 24px !important;
    }

    .grid-player-card .play-btn {
        width: 76px !important; height: 76px !important;
        box-shadow: 0 8px 22px var(--primary-glow) !important;
    }

    .grid-player-card .volume-container {
        width: 100% !important;
        padding: 10px 16px !important;
    }

    /* DJ personas mini grid in left panel */
    .grid-player-card .persona-grid {
        display: none !important;
    }

    /* Android Download Strip in desktop Player Card */
    .grid-player-card .download-strip {
        display: block;
        width: 100%;
        padding: 14px 20px;
        background: linear-gradient(135deg, rgba(249,115,22,0.18), rgba(139,92,246,0.1));
        border-top: 1px solid rgba(249,115,22,0.2);
        color: var(--primary) !important;
        font-size: 0.8rem;
        font-weight: 700;
        text-align: center;
        letter-spacing: 0.5px;
        cursor: pointer;
        text-decoration: none;
        transition: background 0.3s;
    }
    
    .grid-player-card .download-strip:hover {
        background: linear-gradient(135deg, rgba(249,115,22,0.28), rgba(139,92,246,0.18));
        text-decoration: none;
    }

    /* COL 2 (Centru): Widescreen Bursa Price Comparison */
    .grid-wide-radar {
        grid-column: 2 !important;
        grid-row: 1 !important;
        width: 100% !important;
        margin: 0 !important;
    }

    .grid-wide-radar #price-radar-section {
        border-radius: 28px !important;
        padding: 32px !important;
        background: rgba(35, 18, 10, 0.4) !important;
        border: 1px solid var(--bursa-border) !important;
        box-shadow: 0 25px 55px rgba(245, 158, 11, 0.06) !important;
    }

    /* COL 3 (Dreapta): Știri + DJ Sidebar — sticky */
    .grid-sidebar {
        position: sticky !important;
        top: 176px !important;
        width: 100% !important;
        height: calc(100vh - 200px) !important;
        z-index: 500 !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
        background: rgba(30, 15, 55, 0.35) !important;
        border: 1px solid var(--news-border) !important;
        border-radius: 28px !important;
        scrollbar-width: thin !important;
        scrollbar-color: rgba(249,115,22,0.2) transparent !important;
        padding: 20px !important;
        /* Reset absolute fixed overrides */
        right: unset !important;
        grid-column: 3 !important;
        grid-row: 1 !important;
    }

    .grid-sidebar::-webkit-scrollbar { width: 3px; }
    .grid-sidebar::-webkit-scrollbar-track { background: transparent; }
    .grid-sidebar::-webkit-scrollbar-thumb { background: rgba(249,115,22,0.25); border-radius: 3px; }

    /* Section labels visible in panels */
    .desktop-section-label {
        display: block;
        font-size: 0.6rem;
        font-weight: 800;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: rgba(255,255,255,0.3);
        padding: 0 16px 8px;
        border-bottom: 1px solid rgba(255,255,255,0.04);
        margin-bottom: 8px;
        width: 100%;
        box-sizing: border-box;
    }

    /* Persona grid in right panel: compact row */
    .grid-sidebar .persona-grid {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 6px !important;
        padding: 0 10px 12px !important;
        margin-bottom: 0 !important;
    }

    .grid-sidebar .persona-item {
        padding: 8px 6px !important;
        border-radius: 10px !important;
        text-align: center !important;
        transition: all 0.2s ease !important;
    }

    .grid-sidebar .persona-item:hover {
        background: rgba(249,115,22,0.1) !important;
        border-color: rgba(249,115,22,0.3) !important;
    }

    .grid-sidebar .persona-avatar { width: 24px !important; height: 24px !important; }
    .grid-sidebar .persona-name {
        font-size: 0.65rem !important;
        flex-direction: column !important;
        gap: 2px !important;
        justify-content: center !important;
    }
    .grid-sidebar .persona-time { font-size: 0.55rem !important; display: block; }

    /* News section separator */
    .news-section-separator {
        display: block;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(249,115,22,0.2), transparent);
        margin: 4px 0 10px;
    }

    /* Category tabs */
    .news-category-tabs {
        display: flex;
        gap: 4px;
        flex-wrap: wrap;
        padding: 0 10px 10px;
    }

    .news-tab {
        background: rgba(255,255,255,0.03);
        border: 1px solid rgba(255,255,255,0.07);
        color: rgba(255,255,255,0.4);
        padding: 4px 9px;
        border-radius: 7px;
        font-size: 0.62rem;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.2s ease;
        font-family: 'Outfit', sans-serif;
    }

    .news-tab:hover { color: var(--primary); border-color: rgba(249,115,22,0.3); }
    .news-tab.active {
        background: rgba(249,115,22,0.12);
        color: var(--primary);
        border-color: rgba(249,115,22,0.4);
    }

    /* News portal fills rest of right panel */
    .grid-sidebar .news-portal {
        flex: 1 !important;
        border-radius: 0 !important;
        border: none !important;
        background: transparent !important;
        margin-top: 0 !important;
    }

    .grid-sidebar .news-header {
        padding: 8px 16px !important;
        border-bottom: 1px solid rgba(255,255,255,0.05) !important;
    }

    .grid-sidebar .news-header h3 { font-size: 0.78rem !important; }

    .news-item.hidden-by-tab { display: none; }

    /* News items in right panel */
    .grid-sidebar .news-item {
        padding: 10px 16px !important;
        border-bottom: 1px solid rgba(255,255,255,0.04) !important;
        border-left: 3px solid transparent !important;
        transition: all 0.2s ease !important;
        cursor: default;
    }

    .grid-sidebar .news-item:hover {
        background: rgba(255,255,255,0.03) !important;
        border-left-color: var(--primary) !important;
    }

    .grid-sidebar .news-title h3 { font-size: 0.78rem !important; line-height: 1.4 !important; }
    .grid-sidebar .news-summary { font-size: 0.7rem !important; }

    /* Category badges on news items */
    .news-category-badge {
        display: inline-block;
        font-size: 0.55rem;
        font-weight: 800;
        padding: 2px 6px;
        border-radius: 4px;
        margin-bottom: 4px;
        letter-spacing: 0.5px;
        text-transform: uppercase;
    }

    /* ════════════════════════════════════════════════════════
       CENTER: BURSA + CONTENT — scrolls independently
       ════════════════════════════════════════════════════════ */
    .grid-wide-radar {
        display: block !important;
        width: 100% !important;
        grid-column: unset !important;
        grid-row: unset !important;
        padding: 0 24px 24px !important;
    }

    /* Section label gold for Bursa */
    .grid-wide-radar .desktop-section-label {
        color: #f59e0b;
        border-bottom-color: rgba(245,158,11,0.15);
        padding-left: 0;
        margin-bottom: 16px;
    }

    /* Bursa card: premium financial look */
    .grid-wide-radar #price-radar-section {
        border-radius: 16px !important;
        padding: 24px !important;
        background: rgba(12, 6, 26, 0.8) !important;
        border: 1px solid rgba(245,158,11,0.15) !important;
        box-shadow: 0 0 60px rgba(245,158,11,0.04), 0 20px 40px rgba(0,0,0,0.4) !important;
    }

    /* Bottom panel */
    .grid-bottom-panel {
        display: block !important;
        width: 100% !important;
        grid-column: unset !important;
        grid-row: unset !important;
        padding: 0 24px 40px !important;
        border-top: 1px solid rgba(255,255,255,0.05) !important;
        margin-top: 8px !important;
    }

    .grid-bottom-panel .seo-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }

    .grid-bottom-panel h2 { font-size: 1rem !important; }
    .grid-bottom-panel p  { font-size: 0.82rem !important; line-height: 1.7 !important; }

    /* ── Entry animations ── */
    .grid-player-card { animation: slideInLeft 0.4s ease both; }
    .grid-sidebar      { animation: slideInRight 0.4s ease both; }
    .grid-wide-radar   { animation: fadeInUp 0.5s 0.1s ease both; }

    @keyframes slideInLeft {
        from { opacity: 0; transform: translateX(-20px); }
        to   { opacity: 1; transform: translateX(0); }
    }
    @keyframes slideInRight {
        from { opacity: 0; transform: translateX(20px); }
        to   { opacity: 1; transform: translateX(0); }
    }
    @keyframes fadeInUp {
        from { opacity: 0; transform: translateY(16px); }
        to   { opacity: 1; transform: translateY(0); }
    }
}






    .topbar-brand {
        display: flex;
        align-items: center;
        gap: 10px;
        color: white;
        font-weight: 700;
        font-size: 1.05rem;
        text-decoration: none;
        flex-shrink: 0;
    }

    .topbar-brand img {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        border: 1px solid var(--primary);
    }

    .topbar-brand strong { color: var(--primary); }

    .topbar-nav {
        display: flex;
        gap: 28px;
        flex: 1;
        justify-content: center;
    }

    .topbar-nav a {
        color: rgba(255,255,255,0.55);
        text-decoration: none;
        font-size: 0.85rem;
        font-weight: 500;
        transition: color 0.2s ease;
        white-space: nowrap;
    }

    .topbar-nav a:hover { color: white; }

    .topbar-live {
        display: flex;
        align-items: center;
        gap: 8px;
        background: rgba(255,71,87,0.1);
        border: 1px solid rgba(255,71,87,0.3);
        color: #ff4757;
        padding: 6px 18px;
        border-radius: 100px;
        font-size: 0.75rem;
        font-weight: 800;
        letter-spacing: 1.5px;
        flex-shrink: 0;
    }

    .topbar-live-dot {
        width: 7px;
        height: 7px;
        background: #ff4757;
        border-radius: 50%;
        box-shadow: 0 0 8px #ff4757;
        animation: pulse 1.5s infinite;
    }

    /* --- CATEGORY LABELS (desktop only) --- */
    .desktop-section-label {
        display: inline-block;
        font-size: 0.65rem;
        font-weight: 800;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: var(--primary);
        background: rgba(249,115,22,0.08);
        border: 1px solid rgba(249,115,22,0.2);
        border-radius: 8px;
        padding: 5px 12px;
        margin-bottom: 10px;
        width: 100%;
        box-sizing: border-box;
        text-transform: uppercase;
    }

    /* --- BODY & CONTAINER --- */
    body {
        padding: 0;
        align-items: stretch;
    }

    .content-stack {
        max-width: 1440px;
        width: 100%;
        padding: 80px 28px 40px;
        gap: 0;
    }

    /* Hide mobile-only elements */
    .breadcrumbs,
    .station-header {
        display: none;
    }

    /* --- 3-COLUMN GRID --- */
    .main-grid {
        display: grid;
        grid-template-columns: 290px 1fr 280px;
        grid-template-rows: auto;
        column-gap: 20px;
        row-gap: 0;
        align-items: start;
    }

    /* COL 1 (stânga): Player — sticky, nu scrollează */
    .grid-player-card {
        grid-column: 1;
        grid-row: 1;
        position: sticky;
        top: 80px;
        z-index: 5;
    }

    /* COL 1: Banner download — sub player */
    .grid-app-banner {
        grid-column: 1;
        grid-row: 2;
        padding-top: 16px;
    }

    /* COL 2 (centru): Bursa de Giurgiu */
    .grid-wide-radar {
        grid-column: 2;
        grid-row: 1 / span 2;
        padding-top: 0;
    }

    /* COL 3 (dreapta): Știri + DJ — sticky */
    .grid-sidebar {
        grid-column: 3;
        grid-row: 1 / span 2;
        display: flex;
        flex-direction: column;
        gap: 0;
        position: sticky;
        top: 80px;
        max-height: calc(100vh - 100px);
        overflow-y: auto;
        scrollbar-width: none;
        padding-right: 2px;
    }
    .grid-sidebar::-webkit-scrollbar { display: none; }

    /* SEO Footer — sub toate coloanele */
    .grid-bottom-panel {
        grid-column: 1 / span 3;
        grid-row: 3;
        display: block;
        margin-top: 24px;
        padding-top: 24px;
        border-top: 1px solid var(--glass-border);
    }

    /* --- AJUSTĂRI VIZUALE DESKTOP --- */

    /* Player mai compact pe desktop */
    .player-card {
        border-radius: 24px !important;
        padding: 20px !important;
    }

    .art-container {
        width: 200px !important;
        height: 200px !important;
        margin-bottom: 16px !important;
    }

    .art-img-wrapper {
        width: 155px !important;
        height: 155px !important;
    }

    .meta-container { margin-bottom: 16px !important; }
    .meta-container h2 { font-size: 1.1rem !important; }

    .controls { margin-bottom: 16px !important; }
    .play-btn { width: 64px !important; height: 64px !important; }
    .play-btn svg { width: 32px !important; height: 32px !important; }

    .volume-container { padding: 10px 16px !important; }

    /* Sidebar dreapta: persona grid mai compact */
    .persona-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        margin-bottom: 8px !important;
    }

    .persona-item { padding: 8px !important; border-radius: 12px; }
    .persona-name { font-size: 0.8rem !important; gap: 6px !important; }
    .persona-avatar { width: 26px !important; height: 26px !important; }
    .persona-time { font-size: 0.62rem !important; }

    /* News portal în sidebar */
    .news-portal { border-radius: 14px; margin-top: 0 !important; }
    .news-header { padding: 10px 15px; }
    .news-item { padding: 10px 15px; }
    .news-title h3 { font-size: 0.82rem !important; }
    .news-summary { font-size: 0.76rem !important; }

    /* Bursa centru: mai mult spațiu */
    .grid-wide-radar #price-radar-section {
        border-radius: 20px !important;
        padding: 28px !important;
    }

    /* Ad unit ascuns pe desktop (poate ocupa spațiu inutil) */
    .ad-unit-player { display: none; }

    /* SEO bottom panel: 2 coloane */
    .grid-bottom-panel .seo-grid {
        grid-template-columns: repeat(4, 1fr) !important;
    }
    /* --- DESKTOP ENHANCED NEWS CARDS --- */
    .news-item {
        position: relative;
        border-left: 3px solid transparent;
        transition: all 0.25s ease;
    }
    .news-item:hover {
        background: rgba(255,255,255,0.04) !important;
        border-left-color: var(--primary);
        transform: translateX(3px);
    }

    /* Smooth entry animation for grid sections */
    .grid-player-card { animation: fadeInUp 0.45s ease both; }
    .grid-wide-radar { animation: fadeInUp 0.55s ease both; }
    .grid-sidebar { animation: fadeInUp 0.6s ease both; }

    @keyframes fadeInUp {
        from { opacity: 0; transform: translateY(18px); }
        to { opacity: 1; transform: translateY(0); }
    }
}

/* ================================================
   GOOGLE ADS LEADERBOARD — desktop only
   ================================================ */
.desktop-ad-leaderboard { display: none; }
.news-category-tabs { display: none; }
.news-section-separator { display: none; }
.news-category-badge { display: none; }

@media (min-width: 1024px) {
    /* 728x90 Leaderboard slot pinned under topbar */
    .desktop-ad-leaderboard {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        position: relative !important;
        margin-top: 64px !important;
        width: 100% !important;
        min-height: 96px !important;
        background: rgba(8, 3, 18, 0.45) !important;
        backdrop-filter: blur(12px) !important;
        border-bottom: 1px solid rgba(255,255,255,0.04) !important;
        z-index: 100 !important;
    }

    /* Adjust content start to clear relative ad */
    .content-stack { padding-top: 24px !important; }

    /* ---- CATEGORY TABS ---- */
    .news-category-tabs {
        display: flex;
        gap: 6px;
        flex-wrap: wrap;
        margin-bottom: 10px;
    }

    .news-tab {
        background: rgba(255,255,255,0.04);
        border: 1px solid rgba(255,255,255,0.08);
        color: rgba(255,255,255,0.5);
        padding: 5px 11px;
        border-radius: 8px;
        font-size: 0.68rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.2s ease;
        font-family: 'Outfit', sans-serif;
        white-space: nowrap;
    }

    .news-tab:hover {
        background: rgba(249,115,22,0.1);
        color: var(--primary);
        border-color: rgba(249,115,22,0.3);
    }

    .news-tab.active {
        background: rgba(249,115,22,0.15);
        color: var(--primary);
        border-color: rgba(249,115,22,0.45);
        box-shadow: 0 0 12px rgba(249,115,22,0.15);
    }

    .news-item.hidden-by-tab { display: none; }

    /* ---- NEWS CATEGORY BADGES ---- */
    .news-category-badge {
        display: inline-block;
        font-size: 0.58rem;
        font-weight: 800;
        padding: 2px 7px;
        border-radius: 5px;
        margin-bottom: 4px;
        letter-spacing: 0.5px;
        text-transform: uppercase;
    }

    .cat-trafic    { background: rgba(16,185,129,0.15);  color: #10b981; }
    .cat-meteo     { background: rgba(59,130,246,0.15);  color: #60a5fa; }
    .cat-evenimente{ background: rgba(168,85,247,0.15);  color: #c084fc; }
    .cat-administratie { background: rgba(245,158,11,0.15); color: #fbbf24; }
    .cat-vama      { background: rgba(244,63,94,0.15);   color: #f87171; }
    .cat-sanatate  { background: rgba(20,184,166,0.15);  color: #2dd4bf; }
    .cat-cultura   { background: rgba(251,113,133,0.15); color: #fb7185; }
    .cat-diverse   { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.4); }

    /* Section visual separator in sidebar */
    .news-section-separator {
        display: block;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(249,115,22,0.25), transparent);
        margin: 14px 0 6px;
    }

    /* Hover on persona items */
    .persona-item {
        transition: all 0.2s ease !important;
    }
    .persona-item:hover {
        background: rgba(249,115,22,0.08) !important;
        border-color: rgba(249,115,22,0.3) !important;
        transform: translateY(-1px);
    }

    /* Bursa section label gold */
    .grid-wide-radar .desktop-section-label {
        background: linear-gradient(135deg, rgba(245,158,11,0.1), rgba(249,115,22,0.06));
        border-color: rgba(245,158,11,0.3);
        color: #f59e0b;
    }

    /* Bottom panel on desktop - clean text */
    .grid-bottom-panel h2 { font-size: 1.1rem !important; }
    .grid-bottom-panel p  { font-size: 0.85rem !important; line-height: 1.7 !important; }
}


.grid-app-banner {
    width: 100%;
}

.app-banner-link {
    display: flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, rgba(249,115,22,0.15) 0%, rgba(139,92,246,0.12) 100%);
    border: 1px solid rgba(249,115,22,0.4);
    border-radius: 20px;
    padding: 16px 20px;
    text-decoration: none;
    color: white;
    box-shadow: 0 8px 30px rgba(249,115,22,0.15), inset 0 1px 0 rgba(255,255,255,0.06);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.app-banner-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(249,115,22,0.25);
    border-color: rgba(249,115,22,0.7);
}

.app-banner-icon {
    font-size: 2.2rem;
    flex-shrink: 0;
    line-height: 1;
}

.app-banner-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.app-banner-text strong {
    font-size: 0.95rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
}

.app-banner-text span {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.app-banner-btn {
    background: var(--primary);
    color: white;
    font-weight: 700;
    font-size: 0.82rem;
    padding: 10px 18px;
    border-radius: 12px;
    white-space: nowrap;
    box-shadow: 0 4px 15px var(--primary-glow);
    flex-shrink: 0;
}

/* Highlighting Accents per Category Card */
.grid-player-card .player-card {
    background: rgba(26, 12, 47, 0.4) !important;
    border: 1px solid var(--player-border) !important;
    box-shadow: 0 25px 60px rgba(139, 92, 246, 0.08), inset 0 1px 1px rgba(255, 255, 255, 0.04) !important;
}

.grid-sidebar .persona-grid {
    background: rgba(30, 15, 55, 0.3) !important;
    border: 1px solid var(--news-border) !important;
    border-radius: 24px;
    padding: 20px;
    box-shadow: 0 15px 35px rgba(244, 63, 94, 0.04) !important;
}

.grid-sidebar .news-portal {
    background: rgba(30, 15, 55, 0.35) !important;
    border: 1px solid var(--news-border) !important;
    box-shadow: 0 20px 45px rgba(244, 63, 94, 0.06) !important;
}

.grid-wide-radar #price-radar-section {
    background: rgba(35, 18, 10, 0.4) !important;
    border: 1px solid var(--bursa-border) !important;
    box-shadow: 0 25px 55px rgba(245, 158, 11, 0.06), inset 0 1px 2px rgba(245, 158, 11, 0.04) !important;
}

.grid-wide-radar .shopping-seo-section {
    background: rgba(30, 15, 5, 0.25) !important;
    border: 1px solid rgba(245, 158, 11, 0.15) !important;
    box-shadow: 0 15px 35px rgba(245, 158, 11, 0.02) !important;
}

.grid-bottom-panel .app-download-card {
    background: rgba(10, 35, 25, 0.4) !important;
    border: 1px solid var(--app-border) !important;
    box-shadow: 0 25px 55px rgba(16, 185, 129, 0.06) !important;
}

/* Dashboard Elements */
.persona-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
}

.persona-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    padding: 12px;
    border-radius: 16px;
    text-align: center;
    transition: background 0.3s ease;
    cursor: pointer;
}

.persona-item:hover { background: rgba(255,255,255,0.06); }
.persona-item.active { border-color: var(--primary); box-shadow: 0 0 15px var(--primary-glow); }

.persona-name {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    color: white;
    margin-bottom: 6px;
}

.persona-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--primary);
    box-shadow: 0 0 10px var(--primary-glow);
}

.persona-time {
    font-size: 0.7rem;
    color: var(--primary);
    font-weight: 600;
}

.live-badge {
    background: #ff4757;
    color: white;
    font-size: 0.6rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 4px;
    display: inline-block;
    margin-top: 5px;
    animation: pulse 1s infinite;
}

.keywords {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.keywords span {
    font-size: 0.7rem;
    color: var(--text-dim);
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 10px;
    border-radius: 8px;
}

/* Player Card */
.player-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 32px;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    margin-right: 8px;
    box-shadow: 0 0 10px var(--primary);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.4; }
    100% { opacity: 1; }
}

.art-container {
    position: relative;
    width: 320px;
    height: 320px;
    margin: 0 auto 40px auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    flex-shrink: 0;
}

.art-img-wrapper {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    z-index: 2;
    border: 2px solid rgba(255, 255, 255, 0.1);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.art-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 45%;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Rotating Text Aura */
.rotating-aura {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    animation: rotateAura 20s linear infinite;
    z-index: 1;
    pointer-events: none;
    transform-origin: center center;
}

@keyframes rotateAura {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

.aura-text {
    fill: var(--text-main);
    font-size: 8.5px;
    font-weight: 600;
    letter-spacing: 3.5px;
    opacity: 0.8;
    text-shadow: 0 0 10px var(--primary-glow);
}

.meta-container { margin-bottom: 32px; }
.meta-container h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 8px; line-height: 1.2; }
.meta-container p { color: var(--primary); font-weight: 600; letter-spacing: 1px; font-size: 0.8rem; }

.controls { margin-bottom: 32px; display: flex; justify-content: center; align-items: center; }
.play-btn {
    width: 80px !important; height: 80px !important; border-radius: 50% !important; background: var(--primary) !important; color: white !important;
    border: none; cursor: pointer; display: flex !important; align-items: center; justify-content: center;
    box-shadow: 0 10px 25px var(--primary-glow); transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.play-btn:hover { transform: scale(1.1); box-shadow: 0 15px 35px var(--primary-glow); }
.play-btn svg { width: 40px; height: 40px; fill: currentColor; }

.volume-container { display: flex; align-items: center; gap: 15px; background: rgba(255,255,255,0.03); padding: 12px 20px; border-radius: 100px; border: 1px solid var(--glass-border); }
.volume-slider { flex: 1; -webkit-appearance: none; height: 4px; border-radius: 2px; }
.volume-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 14px; height: 14px; border-radius: 50%; background: white; cursor: pointer; border: 2px solid var(--primary); transition: transform 0.2s; }

.visualizer { display: flex; align-items: center; justify-content: center; gap: 4px; height: 40px; opacity: 0.3; margin-top: 24px; transition: opacity 0.5s; }
.vis-bar { width: 4px; height: 10px; background: var(--primary); border-radius: 2px; animation: wave 1s infinite ease-in-out; }
@keyframes wave { 0%, 100% { height: 10px; } 50% { height: 35px; } }

.info-card { background: rgba(255, 255, 255, 0.02); backdrop-filter: blur(20px); border: 1px solid var(--glass-border); border-radius: 32px; padding: 40px; text-align: center; }
.info-card h2 { font-size: 1.6rem; font-weight: 700; margin-bottom: 20px; }
.info-card p { color: var(--text-dim); line-height: 1.6; margin-bottom: 32px; }

.seo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 32px; }
.seo-box { background: rgba(255, 255, 255, 0.03); padding: 20px; border-radius: 20px; border: 1px solid var(--glass-border); text-align: left; }
.seo-box h3 { font-size: 0.85rem; margin-bottom: 10px; color: white; display: flex; align-items: center; gap: 8px; }
.seo-box p { font-size: 0.75rem; margin-bottom: 0; }

.loading-overlay { position: absolute; inset: 0; background: rgba(15, 23, 42, 0.4); border-radius: 50%; z-index: 10; display: none; align-items: center; justify-content: center; backdrop-filter: blur(4px); }
.spinner { width: 40px; height: 40px; border: 3px solid rgba(99, 102, 241, 0.1); border-top-color: var(--primary); border-radius: 50%; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 480px) {
    .art-container { width: 250px; height: 250px; margin-bottom: 24px; }
    .art-img-wrapper { width: 200px; height: 200px; }
    .aura-text { font-size: 7px; letter-spacing: 2px; }
    .player-card, .info-card { padding: 20px; min-width: 100%; }
}

.share-container {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.share-btn {
    flex: 1;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.share-btn.whatsapp:hover {
    background: rgba(37, 211, 102, 0.2);
    border-color: #25D366;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.3);
    transform: translateY(-2px);
}

.share-btn.facebook:hover {
    background: rgba(24, 119, 242, 0.2);
    border-color: #1877F2;
    box-shadow: 0 0 15px rgba(24, 119, 242, 0.3);
    transform: translateY(-2px);
}

.share-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.news-portal {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    margin-top: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    text-align: left;
}
.news-header {
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.news-pill { background: #ff4757; color: white; padding: 2px 8px; border-radius: 10px; font-size: 0.7rem; font-weight: bold; }
.news-item { padding: 15px 20px; border-bottom: 1px solid rgba(255, 255, 255, 0.03); }
.news-title { color: #f1f2f6; text-decoration: none; display: block; }
.news-title h3 { font-size: 0.95rem; font-weight: 500; margin: 0; }
.news-meta { font-size: 0.75rem; color: rgba(255, 255, 255, 0.4); display: flex; gap: 10px; margin-top: 5px; }
.news-summary { font-size: 0.85rem; color: rgba(255, 255, 255, 0.65); line-height: 1.5; margin-top: 8px; }

.mini-player {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-top: 1px solid var(--glass-border);
    padding: 12px 20px;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mini-player.show { transform: translateY(0); }
.mini-info { display: flex; align-items: center; gap: 12px; }
.mini-art { width: 44px; height: 44px; border-radius: 8px; object-fit: cover; }
.mini-meta { display: flex; flex-direction: column; }
.mini-title { font-weight: 700; font-size: 0.9rem; color: white; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }
.mini-artist { font-size: 0.75rem; color: var(--primary); font-weight: 600; }
.mini-play-btn { background: var(--primary); border: none; width: 40px; height: 40px; border-radius: 50%; color: white; display: flex; align-items: center; justify-content: center; cursor: pointer; }
.mini-play-btn svg { width: 22px; height: 22px; fill: currentColor; }

.messenger-fab {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #1877F2;
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: 0 10px 25px rgba(24, 119, 242, 0.3);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.messenger-fab:hover { transform: scale(1.05); }
.messenger-fab svg { width: 20px; height: 20px; fill: currentColor; }

.live-toast {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 15px 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 999;
    transform: translateX(120%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.live-toast.show { transform: translateX(0); }
.live-toast-img { width: 45px; height: 45px; border-radius: 50%; border: 2px solid var(--primary); }
.live-toast-text b { font-size: 0.75rem; color: #ff4757; text-transform: uppercase; }
.live-toast-text p { font-size: 0.85rem; color: white; margin-top: 2px; }

.dj-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 10002;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.dj-modal.show { opacity: 1; }
.dj-modal-card {
    background: var(--bg-dark);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 32px;
    max-width: 450px;
    width: 100%;
    position: relative;
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.dj-modal.show .dj-modal-card { transform: translateY(0); }
.close-dj { position: absolute; top: 20px; right: 20px; background: none; border: none; color: white; font-size: 1.5rem; cursor: pointer; }
.dj-modal-img { width: 120px; height: 120px; border-radius: 50%; border: 3px solid var(--primary); margin-bottom: 20px; }
.dj-modal-title { font-size: 1.8rem; margin-bottom: 5px; }
.dj-modal-time { color: var(--primary); font-weight: 600; font-size: 0.9rem; display: block; margin-bottom: 15px; }
.dj-modal-bio { color: var(--text-dim); line-height: 1.6; font-size: 0.95rem; }

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    padding: 20px 30px;
    border-radius: 20px;
    z-index: 11000;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    transform: translateY(150%);
    transition: transform 0.5s ease;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

@media (max-width: 480px) {
    .cookie-banner {
        top: 20px;
        bottom: unset;
        transform: translateY(-150%);
    }
    .cookie-banner.show { transform: translateY(0); }
}

.cookie-banner.show { transform: translateY(0); }
.cookie-text { font-size: 0.85rem; color: white; flex: 1; }
.cookie-btn { background: var(--primary); color: white; border: none; padding: 10px 25px; border-radius: 10px; font-weight: 700; cursor: pointer; }

/* Footer & Compliance Section - Modernized */
.footer-compliance {
    margin-top: 60px;
    padding: 30px 20px;
    border-top: 1px solid var(--glass-border);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.footer-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.footer-links a:hover {
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary-glow);
}

.footer-copy {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
    letter-spacing: 0.5px;
}

/* Info Modal (SPA Navigation) */
.info-modal {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 10006;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.info-modal.show { display: flex; opacity: 1; }

.info-modal-card {
    background: #1e293b;
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 28px;
    max-width: 700px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
}

.info-modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.info-modal-close:hover { opacity: 1; }
/* --- RESPONSIVE POLISH (v11.0) --- */
@media (max-width: 380px) {
    .player-card { padding: 20px 15px; }
    .station-header h1 { font-size: 1.8rem !important; }
    .art-container { width: 220px; height: 220px; }
    .art-img-wrapper { width: 170px; height: 170px; }
    .meta-container h2 { font-size: 1.2rem; }
    .share-container { gap: 8px; margin-top: 16px; }
    .share-btn { padding: 10px 5px; font-size: 0.75rem; }
    .play-btn { width: 65px !important; height: 65px !important; }
    .play-btn svg { width: 30px; height: 30px; }
}

/* Z-Index Hierarchy Layering */
.cookie-banner { z-index: 10005; }
.mini-player { z-index: 10006; }
.live-toast { z-index: 10007; }
.messenger-fab { z-index: 10008; }
.dj-modal, .info-modal { z-index: 10009; }
.close-dj, .info-modal-close { z-index: 10010; }

.info-modal-body {
    text-align: left;
    color: var(--text-dim);
    line-height: 1.8;
}

.info-modal-body h1, .info-modal-body h2 { color: white; margin-top: 30px; margin-bottom: 15px; }
.info-modal-body b { color: var(--primary); }

/* =============================================
   RECONNECT TOAST (Tap to Resume - v1.0)
   ============================================= */
.reconnect-toast {
    position: fixed;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%) translateY(250px);
    opacity: 0;
    pointer-events: none;
    background: rgba(15, 23, 42, 0.92);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(99, 102, 241, 0.4);
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.2), 0 20px 40px rgba(0,0,0,0.5);
    padding: 14px 22px;
    border-radius: 100px;
    z-index: 10010;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.3s ease;
    white-space: nowrap;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

.reconnect-toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.reconnect-toast:active {
    transform: translateX(-50%) scale(0.95);
}

.reconnect-toast-icon {
    width: 32px;
    height: 32px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    animation: reconnect-pulse 1.5s infinite;
}

.reconnect-toast-icon svg {
    width: 16px;
    height: 16px;
    fill: white;
}

@keyframes reconnect-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.7); }
    70%  { box-shadow: 0 0 0 10px rgba(99, 102, 241, 0); }
    100% { box-shadow: 0 0 0 0 rgba(99, 102, 241, 0); }
}

.reconnect-toast-text {
    display: flex;
    flex-direction: column;
}

.reconnect-toast-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0.3px;
}

.reconnect-toast-sub {
    font-size: 0.7rem;
    color: var(--primary);
    font-weight: 600;
}

/* ==========================================================================
   🏛️ RADIO GIURGIU AI - MASTER WIDESCREEN DESKTOP OVERRIDES (RADIO 2026)
   ========================================================================== */
@media (min-width: 1024px) {
    
    body {
        position: relative !important;
        padding: 0 !important;
        align-items: stretch !important;
        background-color: #0b0416 !important;
    }

    

    /* Widescreen 2-Column main container stack */
    .content-stack {
        max-width: 1400px !important;
        width: 100% !important;
        margin: 0 auto !important;
        padding: 24px 24px 60px 24px !important;
        display: block !important;
        box-sizing: border-box !important;
    }

    /* Widescreen Main Grid - 2 Column Premium Dashboard */
    .main-grid {
        display: grid !important;
        grid-template-columns: 320px 1fr !important;
        column-gap: 32px !important;
        row-gap: 0 !important;
        align-items: start !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    /* ── STICKY LEFT COLUMN: UNIFIED TELEMETRY & PLAYER CARD ── */
    .grid-player-card {
        grid-column: 1 !important;
        grid-row: 1 !important;
        position: sticky !important;
        top: 88px !important;
        height: calc(100vh - 120px) !important;
        max-height: calc(100vh - 120px) !important;
        z-index: 50 !important;
        background: rgba(26, 12, 47, 0.4) !important;
        border: 1px solid var(--player-border) !important;
        border-radius: 28px !important;
        padding: 24px 20px !important;
        box-shadow: 0 25px 60px rgba(139, 92, 246, 0.08) !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
        scrollbar-width: thin !important;
        scrollbar-color: rgba(249, 115, 22, 0.25) transparent !important;
    }

    .grid-player-card::-webkit-scrollbar {
        width: 4px !important;
    }

    .grid-player-card::-webkit-scrollbar-track {
        background: transparent !important;
    }

    .grid-player-card::-webkit-scrollbar-thumb {
        background: rgba(249, 115, 22, 0.25) !important;
        border-radius: 4px !important;
    }

    .grid-player-card .player-card {
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
        padding: 0 !important;
        width: 100% !important;
    }

    /* Vinyl spinning visualizer art */
    .grid-player-card .art-container {
        width: 210px !important;
        height: 210px !important;
        margin: 0 auto 20px auto !important;
        box-shadow: 0 15px 35px rgba(0,0,0,0.5) !important;
    }

    .grid-player-card .art-img-wrapper {
        width: 165px !important;
        height: 165px !important;
        border-radius: 50% !important;
        border: 2px solid rgba(255,255,255,0.08) !important;
    }

    @keyframes spinVinyl {
        from { transform: rotate(0deg); }
        to { transform: rotate(360deg); }
    }

    /* Spinning vinyl animation when .playing class is applied */
    .player-card.playing .art-img {
        animation: spinVinyl 12s linear infinite !important;
    }

    .grid-player-card .meta-container {
        text-align: center !important;
        margin-bottom: 20px !important;
    }

    .grid-player-card .meta-container h2 {
        font-size: 1.25rem !important;
        font-weight: 800 !important;
        color: white !important;
        white-space: nowrap !important;
        text-overflow: ellipsis !important;
        overflow: hidden !important;
    }

    .grid-player-card .play-btn {
        width: 76px !important;
        height: 76px !important;
        box-shadow: 0 8px 22px var(--primary-glow) !important;
    }

    .grid-player-card .download-strip {
        display: block !important;
        width: 100% !important;
        padding: 14px 20px !important;
        margin-top: 15px !important;
        background: linear-gradient(135deg, rgba(249,115,22,0.15), rgba(139,92,246,0.1)) !important;
        border: 1px solid rgba(249,115,22,0.25) !important;
        border-radius: 16px !important;
        color: var(--primary) !important;
        font-size: 0.8rem !important;
        font-weight: 700 !important;
        text-align: center !important;
        letter-spacing: 0.5px !important;
        cursor: pointer !important;
        text-decoration: none !important;
        transition: all 0.3s ease !important;
    }

    .grid-player-card .download-strip:hover {
        background: linear-gradient(135deg, rgba(249,115,22,0.25), rgba(139,92,246,0.18)) !important;
        border-color: var(--primary) !important;
        transform: translateY(-2px) !important;
    }

    .desktop-section-label {
        display: block !important;
        font-size: 0.65rem !important;
        font-weight: 800 !important;
        letter-spacing: 2px !important;
        text-transform: uppercase !important;
        color: rgba(255,255,255,0.3) !important;
        padding: 0 4px 6px !important;
        border-bottom: 1px solid rgba(255,255,255,0.06) !important;
        margin-bottom: 12px !important;
        width: 100% !important;
    }

    /* Border Vama times styling */
    .grid-player-card .border-card {
        background: rgba(26, 12, 47, 0.4) !important;
        border: 1px solid var(--player-border) !important;
        border-radius: 20px !important;
        padding: 16px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Presenter timeline grid styling */
    .grid-player-card .persona-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 8px !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        width: 100% !important;
    }

    .grid-player-card .persona-item {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        background: rgba(255, 255, 255, 0.02) !important;
        border: 1px solid rgba(255, 255, 255, 0.05) !important;
        padding: 12px 14px !important;
        border-radius: 16px !important;
        transition: all 0.25s ease !important;
        width: 100% !important;
        text-align: left !important;
        box-sizing: border-box !important;
    }

    .grid-player-card .persona-item:hover {
        background: rgba(249, 115, 22, 0.08) !important;
        border-color: rgba(249, 115, 22, 0.3) !important;
        transform: translateX(4px) !important;
    }

    .grid-player-card .persona-item.active {
        background: linear-gradient(135deg, rgba(249, 115, 22, 0.15) 0%, rgba(139, 92, 246, 0.06) 100%) !important;
        border-color: var(--primary) !important;
        box-shadow: 0 0 15px rgba(249, 115, 22, 0.15) !important;
    }

    .grid-player-card .persona-avatar {
        width: 30px !important;
        height: 30px !important;
        border-radius: 50% !important;
        border: 1.5px solid var(--primary) !important;
    }

    .grid-player-card .persona-name {
        font-size: 0.82rem !important;
        font-weight: 700 !important;
        color: white !important;
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
    }

    .grid-player-card .persona-time {
        font-size: 0.68rem !important;
        color: var(--primary) !important;
        font-weight: 600 !important;
    }

    .grid-player-card .live-badge {
        background: #ff4757 !important;
        color: white !important;
        font-size: 0.58rem !important;
        font-weight: 800 !important;
        padding: 2px 6px !important;
        border-radius: 5px !important;
        letter-spacing: 0.5px !important;
        margin-top: 0 !important;
    }

    /* ── SCROLLABLE CENTER MAIN COLUMN: HUB ── */
    .grid-wide-radar {
        grid-column: 2 !important;
        grid-row: 1 !important;
        display: block !important;
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    /* Widescreen Danube Dusk Hero Banner */
    .danube-sunset-hero {
        background: linear-gradient(135deg, rgba(26, 12, 47, 0.8) 0%, rgba(249, 115, 22, 0.15) 100%) !important;
        border: 1px solid rgba(249, 115, 22, 0.2) !important;
        border-radius: 28px !important;
        padding: 40px !important;
        margin-bottom: 32px !important;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4) !important;
        position: relative !important;
        overflow: hidden !important;
    }

    .danube-sunset-hero::before {
        content: "" !important;
        position: absolute !important;
        inset: 0 !important;
        background: radial-gradient(circle at 80% 20%, rgba(249, 115, 22, 0.12) 0%, transparent 50%) !important;
        pointer-events: none !important;
    }

    .danube-sunset-hero h1 {
        font-size: 2.8rem !important;
        font-weight: 800 !important;
        letter-spacing: -1.5px !important;
        color: white !important;
        margin-bottom: 12px !important;
        text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4) !important;
    }

    .danube-sunset-hero p {
        font-size: 0.95rem !important;
        color: var(--text-dim) !important;
        line-height: 1.6 !important;
        max-width: 600px !important;
        margin-bottom: 24px !important;
    }

    .hero-badge {
        background: rgba(249, 115, 22, 0.12) !important;
        color: var(--primary) !important;
        border: 1px solid rgba(249, 115, 22, 0.25) !important;
        font-size: 0.68rem !important;
        font-weight: 800 !important;
        padding: 6px 14px !important;
        border-radius: 100px !important;
        letter-spacing: 1.5px !important;
        display: inline-block !important;
        margin-bottom: 16px !important;
        text-transform: uppercase !important;
    }

    .hero-badges-row {
        display: flex !important;
        gap: 12px !important;
        flex-wrap: wrap !important;
    }

    .h-badge {
        font-size: 0.65rem !important;
        font-weight: 700 !important;
        color: rgba(255, 255, 255, 0.6) !important;
        background: rgba(255, 255, 255, 0.03) !important;
        border: 1px solid rgba(255, 255, 255, 0.06) !important;
        padding: 6px 12px !important;
        border-radius: 8px !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
    }

    /* Widescreen Bursa Price Dashboard - Expanded, Permanent, No Tabs */
    .grid-wide-radar #price-radar-section {
        background: rgba(35, 18, 10, 0.3) !important;
        border: 1px solid var(--bursa-border) !important;
        border-radius: 28px !important;
        padding: 32px !important;
        box-shadow: 0 25px 55px rgba(245, 158, 11, 0.05) !important;
    }

    .deals-grid-widescreen {
        display: grid !important;
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)) !important;
        gap: 20px !important;
        padding: 16px 0 !important;
    }

    .deal-item {
        display: flex !important;
        flex-direction: column !important;
        background: rgba(255, 255, 255, 0.02) !important;
        border: 1px solid rgba(245, 158, 11, 0.12) !important;
        border-radius: 20px !important;
        padding: 20px !important;
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
        box-sizing: border-box !important;
    }

    .deal-item:hover {
        transform: translateY(-5px) !important;
        box-shadow: 0 15px 35px rgba(245, 158, 11, 0.08) !important;
        border-color: rgba(245, 158, 11, 0.3) !important;
        background: rgba(255, 255, 255, 0.04) !important;
    }

    .deal-title {
        font-size: 0.95rem !important;
        font-weight: 700 !important;
        color: white !important;
        margin: 8px 0 !important;
        line-height: 1.4 !important;
    }

    .deal-price {
        font-size: 1.3rem !important;
        font-weight: 800 !important;
        color: #ffc107 !important;
    }

    .deal-desc {
        font-size: 0.78rem !important;
        color: rgba(255,255,255,0.6) !important;
        line-height: 1.5 !important;
        margin-top: 8px !important;
    }

    /* Widescreen News masonry grid - Permanent, No categories tabs */
    .news-category-tabs {
        display: none !important; /* Eliminate tabs on desktop */
    }

    .grid-wide-radar .news-portal {
        background: rgba(30, 15, 55, 0.35) !important;
        border: 1px solid var(--news-border) !important;
        border-radius: 28px !important;
        padding: 24px !important;
        box-shadow: 0 25px 55px rgba(244, 63, 94, 0.04) !important;
    }

    .news-grid-widescreen {
        display: grid !important;
        grid-template-columns: repeat(auto-fill, minmax(265px, 1fr)) !important;
        gap: 24px !important;
        padding: 16px 0 !important;
    }

    .news-item {
        display: block !important;
        background: rgba(255, 255, 255, 0.02) !important;
        border: 1px solid rgba(244, 63, 94, 0.12) !important;
        border-radius: 20px !important;
        padding: 20px !important;
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
        cursor: pointer !important;
        box-sizing: border-box !important;
        transform: none !important;
    }

    .news-item:hover {
        transform: translateY(-5px) !important;
        box-shadow: 0 15px 35px rgba(244, 63, 94, 0.08) !important;
        border-color: rgba(244, 63, 94, 0.3) !important;
        background: rgba(255, 255, 255, 0.04) !important;
    }

    .news-title h3 {
        font-size: 0.95rem !important;
        font-weight: 700 !important;
        color: white !important;
        line-height: 1.4 !important;
    }

    .news-summary {
        font-size: 0.8rem !important;
        color: rgba(255,255,255,0.6) !important;
        line-height: 1.5 !important;
        margin-top: 8px !important;
    }

    /* ── COL 1-2 FULL-SPAN FOOTER ── */
    .grid-bottom-panel {
        grid-column: 1 / span 2 !important;
        grid-row: unset !important;
        display: block !important;
        margin-top: 48px !important;
        padding-top: 32px !important;
        border-top: 1px solid var(--glass-border) !important;
    }

    /* ── DJ SPOTLIGHT Hub (Radio 2026) ── */
    .dj-spotlight-grid {
        display: grid !important;
        grid-template-columns: repeat(5, 1fr) !important;
        gap: 16px !important;
        margin: 20px 0 40px 0 !important;
        width: 100% !important;
    }

    .dj-spotlight-card {
        position: relative !important;
        background: rgba(255, 255, 255, 0.02) !important;
        border: 1px solid rgba(255, 255, 255, 0.05) !important;
        border-radius: 20px !important;
        overflow: hidden !important;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        padding: 20px 16px !important;
        cursor: pointer !important;
        box-sizing: border-box !important;
    }

    @keyframes spotlightPulse {
        0%, 100% { transform: scale(1); opacity: 0.85; box-shadow: 0 0 10px rgba(255,255,255,0.05); }
        50% { transform: scale(1.06); opacity: 1; box-shadow: 0 0 25px currentColor; }
    }

    .dj-spotlight-card.active .dj-spotlight-img-wrapper {
        border-color: currentColor !important;
        animation: spotlightPulse 3s infinite ease-in-out !important;
        box-shadow: 0 0 25px currentColor !important;
    }

    /* Ambient Spotlight card glows by voice personality color mapping */
    #spotlight-Vibe:hover, #spotlight-Vibe.active {
        border-color: #f59e0b !important;
        color: #f59e0b !important;
        box-shadow: 0 20px 50px rgba(245, 158, 11, 0.15) !important;
        background: linear-gradient(135deg, rgba(245, 158, 11, 0.12) 0%, rgba(15, 23, 42, 0.65) 100%) !important;
    }
    #spotlight-Giurgia:hover, #spotlight-Giurgia.active {
        border-color: #10b981 !important;
        color: #10b981 !important;
        box-shadow: 0 20px 50px rgba(16, 185, 129, 0.15) !important;
        background: linear-gradient(135deg, rgba(16, 185, 129, 0.12) 0%, rgba(15, 23, 42, 0.65) 100%) !important;
    }
    #spotlight-Valahia:hover, #spotlight-Valahia.active {
        border-color: #6366f1 !important;
        color: #6366f1 !important;
        box-shadow: 0 20px 50px rgba(99, 102, 241, 0.15) !important;
        background: linear-gradient(135deg, rgba(99, 102, 241, 0.12) 0%, rgba(15, 23, 42, 0.65) 100%) !important;
    }
    #spotlight-Giurgiana:hover, #spotlight-Giurgiana.active {
        border-color: #ec4899 !important;
        color: #ec4899 !important;
        box-shadow: 0 20px 50px rgba(236, 72, 153, 0.15) !important;
        background: linear-gradient(135deg, rgba(236, 72, 153, 0.12) 0%, rgba(15, 23, 42, 0.65) 100%) !important;
    }
    #spotlight-Lili:hover, #spotlight-Lili.active {
        border-color: #a855f7 !important;
        color: #a855f7 !important;
        box-shadow: 0 20px 50px rgba(168, 85, 247, 0.15) !important;
        background: linear-gradient(135deg, rgba(168, 85, 247, 0.12) 0%, rgba(15, 23, 42, 0.65) 100%) !important;
    }

    .dj-spotlight-card {
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    }
    
    .dj-spotlight-card:hover {
        transform: translateY(-8px) scale(1.03) !important;
    }

    .dj-spotlight-img-wrapper {
        position: relative !important;
        width: 96px !important;
        height: 96px !important;
        border-radius: 50% !important;
        margin-bottom: 14px !important;
        border: 2px solid rgba(255, 255, 255, 0.08) !important;
        overflow: hidden !important;
        transition: all 0.4s ease !important;
        flex-shrink: 0 !important;
    }

    .dj-spotlight-card:hover .dj-spotlight-img-wrapper {
        transform: scale(1.08) !important;
        border-color: var(--primary) !important;
        box-shadow: 0 0 15px var(--primary-glow) !important;
    }

    .dj-spotlight-img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    .dj-spotlight-name {
        font-size: 1rem !important;
        font-weight: 800 !important;
        color: white !important;
        margin-bottom: 4px !important;
    }

    .dj-spotlight-time {
        font-size: 0.7rem !important;
        color: var(--primary) !important;
        font-weight: 700 !important;
        margin-bottom: 10px !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
    }

    .dj-spotlight-bio {
        font-size: 0.74rem !important;
        color: var(--text-dim) !important;
        line-height: 1.45 !important;
        margin-top: auto !important;
    }

    .dj-spotlight-badge {
        position: absolute !important;
        top: 12px !important;
        right: 12px !important;
        background: #ff4757 !important;
        color: white !important;
        font-size: 0.55rem !important;
        font-weight: 800 !important;
        padding: 2px 7px !important;
        border-radius: 6px !important;
        letter-spacing: 0.5px !important;
        display: none !important;
        animation: pulse 1.5s infinite !important;
    }

    .dj-spotlight-card.active .dj-spotlight-badge {
        display: block !important;
    }

    /* ── WIDESCREEN COMMAND CENTER GRID (Section-based linear stack) ── */
    .command-center-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 56px !important;
        align-items: start !important;
        width: 100% !important;
        margin-top: 48px !important;
    }

    .command-col-bursa, .command-col-news {
        display: flex !important;
        flex-direction: column !important;
        gap: 16px !important;
        width: 100% !important;
        min-width: 0 !important;
    }

    /* Adjust nested grids to stretch beautifully inside command columns */
    .command-col-bursa .deals-grid-widescreen {
        display: grid !important;
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)) !important;
        gap: 24px !important;
    }
    .command-col-news .news-grid-widescreen {
        display: grid !important;
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)) !important;
        gap: 24px !important;
    }

    /* ── RESTORED PREMIUM GLASS CARD CONTAINERS & TACTILE HOVERS ── */

    /* 4. Elegant Hover & Border Transitions for Bursa and News Strips */
    .bursa-ticker-row:hover,
    .news-item-strip:hover {
        background: rgba(255,255,255,0.02) !important;
        padding-left: 12px !important;
    }
    .news-title-link:hover h3 {
        color: var(--primary) !important;
    }

    /* 5. Flat Widescreen View Segment Controls styling */
    .view-segment-control {
        margin: 20px 0 !important;
        border: 1px solid rgba(255,255,255,0.08) !important;
        background: rgba(255,255,255,0.02) !important;
        backdrop-filter: blur(20px) !important;
    }
}
