 
        :root {
            --primary: #c74a4a;
            --secondary: #0a0114;
            --accent: #25d366;
            --light: #f8f9fa;
            --dark: #1a1a1a;
            --gray: #6c757d;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            background-color: #f5f5f5;
            color: #333;
            overflow-x: hidden;
            background: linear-gradient(to bottom, #0a0114, #1a1a2e);
            background-attachment: fixed;
        }
        
        /* Header Styles */
        .header {
            background: linear-gradient(135deg, var(--secondary) 0%, #2a0a4a 100%);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }
        
        .navbar-brand h1 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            font-size: 1.8rem;
            margin-bottom: 0;
        }
        
        .text-red {
            color: var(--primary) !important;
        }
        
        .text-gray {
            color: var(--gray) !important;
        }
        
        .navbar .nav-link {
            color: white;
            font-weight: 500;
            padding: 10px 15px;
            margin: 0 5px;
            border-radius: 5px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar .nav-link:hover {
            color: var(--primary);
            background: rgba(255, 255, 255, 0.1);
        }
        
        .navbar .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 5px;
            left: 15px;
            background-color: var(--primary);
            transition: width 0.3s ease;
        }
        
        .navbar .nav-link:hover:after {
            width: calc(100% - 30px);
        }
        
        /* Hero Wave Section */
        .wave-section {
            position: relative;
            padding: 80px 0 120px;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            overflow: hidden;
        }
        
        .radio-waves {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 0;
        }
        
        .wave {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 200%;
            height: 100px;
            background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg" fill="rgba(199,74,74,0.2)"><path d="M0 0v46.29c47.79 22.2 103.59 32.17 158 28 70.36-5.37 136.33-33.31 206.8-37.5 73.84-4.36 147.54 16.88 218.2 35.26 69.27 18 138.3 24.88 209.4 13.08 36.15-6 69.85-17.84 104.45-29.34C989.49 25 1113-14.29 1200 52.47V0z" /></svg>');
            background-size: 50% 100px;
            animation: wave 10s linear infinite;
        }
        
        .wave:nth-child(1) {
            animation-delay: 0s;
            opacity: 0.7;
        }
        
        .wave:nth-child(2) {
            animation-delay: -5s;
            opacity: 0.5;
            height: 120px;
            background-size: 50% 120px;
        }
        
        .wave:nth-child(3) {
            animation-delay: -2s;
            opacity: 0.3;
            height: 140px;
            background-size: 50% 140px;
        }
        
        @keyframes wave {
            0% { transform: translateX(0); }
            50% { transform: translateX(-25%); }
            100% { transform: translateX(-50%); }
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
            color: white;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .hero-content h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.5rem;
            margin-bottom: 20px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }
        
        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        /* Radio Player */
        .radio-player-container {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 25px;
            backdrop-filter: blur(10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            margin: 30px auto;
            max-width: 600px;
        }
        
        .player-title {
            font-size: 1.5rem;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        
        .player-title i {
            color: var(--primary);
        }
        
        /* Marquee */
        .marquee {
            background: linear-gradient(to right, var(--secondary), var(--primary));
            color: white;
            padding: 15px 0;
            font-size: 1.2rem;
            font-weight: 600;
            margin: 30px 0;
            overflow: hidden;
        }
        
        .marquee-content {
            display: inline-block;
            padding-left: 100%;
            white-space: nowrap;
            animation: marquee 20s linear infinite;
        }
        
        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-100%); }
        }
        
        /* News Section */
        .news-section {
            padding: 60px 0;
            background: white;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            color: var(--secondary);
            position: relative;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            width: 100px;
            height: 4px;
            background: var(--primary);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        
        .news-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            height: 100%;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            margin-bottom: 30px;
            border: none;
        }
        
        .news-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }
        
        .card-img-top {
            height: 200px;
            object-fit: cover;
            width: 100%;
        }
        
        .card-body {
            padding: 25px;
        }
        
        .card-title {
            color: var(--primary);
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        /* Footer */
        .footer {
            background: var(--secondary);
            color: white;
            padding: 60px 0 20px;
        }
        
        .footer h5 {
            color: var(--primary);
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer h5:after {
            content: '';
            position: absolute;
            width: 50px;
            height: 3px;
            background: var(--primary);
            bottom: 0;
            left: 0;
        }
        
        .footer ul {
            list-style: none;
            padding: 0;
        }
        
        .footer ul li {
            margin-bottom: 10px;
        }
        
        .footer ul li a {
            color: #ccc;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer ul li a:hover {
            color: white;
            padding-left: 5px;
        }
        
        .social-links a {
            display: inline-block;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            text-align: center;
            line-height: 40px;
            margin-right: 10px;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background: var(--primary);
            transform: translateY(-5px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .hero-content h2 {
                font-size: 2.2rem;
            }
        }
        
        @media (max-width: 768px) {
            .hero-content h2 {
                font-size: 1.8rem;
            }
            
            .hero-content p {
                font-size: 1rem;
            }
            
            .navbar-brand h1 {
                font-size: 1.5rem;
            }
        }
        
        @media (max-width: 576px) {
            .hero-content h2 {
                font-size: 1.5rem;
            }
            
            .player-title {
                font-size: 1.2rem;
            }
        }
    