<style>
        * { margin:0; padding:0; box-sizing:border-box; }
        body {
            font-family: Arial, Helvetica, sans-serif;
            background: url('redblue.jpg') repeat-x fixed center top #FF6666;
            color: white;
            line-height: 1.6;
        }
     header {
    background: #0044dd;           /* Bright royal blue – exact match to the top of your original gradient */
    padding: 25px 5%;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0,0,0,0.5);  /* Keeps the modern depth */
    border-bottom: 4px solid #FFFFFF;       /* Optional hot pink/red accent from the bottom fade */
}

/* Ensure text/logo pops on the solid blue */
.logo img {
    max-width: 350px;
    height: auto;
    filter: drop-shadow(0 3px 8px rgba(0,0,0,0.7));
}

.tagline {
    font-size: 1.6em;
    font-weight: bold;
    color: #ffffff;
    margin-top: 12px;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.9);
    letter-spacing: 1px;

        }
        .listen-bar {
            background: rgba(241,241,238,0.8);
            padding: 5px;
            text-align: center;
        }
        .main-wrapper {
            max-width: 1200px;
            margin: 30px auto;
            padding: 0 5%;
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
        }
        .sidebar {
            width: 280px;
            min-width: 250px;
            background: rgba(0,0,0,0.35);
            padding: 20px;
            border-radius: 10px;
        }
        .nav-title, .sponsors-title {
            text-align: center;
            color: #ffd700;
            margin-bottom: 20px;
        }
        .nav-links {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
	.nav-link {
    background: linear-gradient(to bottom, #c8102e, #a00d24);
    color: white;
    padding: 16px 12px;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    box-shadow: 0 3px 6px rgba(0,0,0,0.3);
    transition: all 0.3s;
}

.nav-link:hover {
    background: linear-gradient(to bottom, #e63946, #c8102e);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(200,16,46,0.4);
}
        
        .sponsors {
            display: flex;
            flex-direction: column;
            gap: 25px;
            align-items: center;
            margin-top: 30px;
        }
        .sponsors img {
            width: 100%;
            max-width: 260px;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 2px 6px rgba(0,0,0,0.3);
        }
        .content {
            flex: 1;
            min-width: 300px;
            background: rgba(0,0,0,0.25);
            padding: 25px;
            border-radius: 10px;
        }
        .marquee {
            background: white;
            color: #c8102e;
            overflow: hidden;
            white-space: nowrap;
            padding: 15px;
            font-size: 1.5em;
            font-weight: bold;
            border-radius: 8px;
            margin-bottom: 25px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.4);
        }
        .marquee span {
            display: inline-block;
            padding-left: 100%;
            animation: scroll 35s linear infinite;
        }
        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-100%); }
        }
        .center-img img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
        }
        audio {
            width: 90%;
            max-width: 500px;
            display: block;
            margin: 20px auto;
        }
        .rss-widget {
            text-align: center;
            margin: 30px 0;
        }
        .rss-widget div[style*="font-size: 10px"] {
            color: #cccccc;
        }
        footer {
            text-align: center;
            padding: 30px;
            background: rgba(0,0,0,0.6);
            margin-top: 40px;
        }
        @media (max-width: 768px) {
            .main-wrapper { flex-direction: column; }
            .sidebar, .content { width: 100%; }
        }
    }
    </style>
