 :root {
            --primary: #27548A; /* Tertiary -> replacing Purple */
            --primary-light: #3A70B3;
            --primary-dark: #1D3D63;
            --secondary: #183B4E; /* Primary -> replacing Dark background */
            --accent: #DDA853; /* Secondary -> replacing Blue accent with Gold */
            --text-main: #F3F3E0; /* Quaternary -> text */
            --text-muted: #BDBDAF;
            --whatsapp: #25d366;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--secondary);
            color: var(--text-main);
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Outfit', sans-serif;
        }

        /* Navbar */
        .navbar {
            background: rgba(24, 59, 78, 0.8);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.3s ease;
        }
        .navbar a:hover {
            color: var(--accent);
        }

        /* Hero */
        .hero-section {
            position: relative;
            background-image: url('https://images.unsplash.com/photo-1590602847861-f357a9332bbc?q=80&w=2000&auto=format&fit=crop');
            background-size: cover;
            background-position: center;
            height: 100vh;
            min-height: 500px;
        }
        .hero-overlay {
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: linear-gradient(135deg, rgba(24,59,78,0.9) 0%, rgba(39, 84, 138,0.7) 100%);
        }

        /* Sticky Player */
        .sticky-player {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--primary-dark);
            border-top: 2px solid var(--primary);
            z-index: 50;
            padding: 10px 0;
            box-shadow: 0 -5px 25px rgba(0,0,0,0.5);
        }

        .play-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: white;
            color: var(--primary-dark);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            cursor: pointer;
            transition: transform 0.2s, background 0.2s;
        }
        .play-btn:hover {
            transform: scale(1.1);
            background: var(--accent);
        }

        /* WhatsApp Button */
        .whatsapp-btn {
            position: fixed;
            bottom: 90px;
            right: 30px;
            background: var(--whatsapp);
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
            z-index: 40;
            transition: transform 0.3s;
        }
        .whatsapp-btn:hover {
            transform: scale(1.1) rotate(10deg);
            color: white;
        }

        /* Animations */
        @keyframes pulse-live {
            0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7); }
            70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(220, 53, 69, 0); }
            100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(220, 53, 69, 0); }
        }
        .live-indicator {
            width: 10px;
            height: 10px;
            background: #dc3545;
            border-radius: 50%;
            display: inline-block;
            animation: pulse-live 2s infinite;
        }

        /* Cards */
        .glass-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            transition: transform 0.3s;
        }
        .glass-card:hover {
            transform: translateY(-5px);
            border-color: rgba(255, 255, 255, 0.2);
        }
