:root {
    --bg-dark: #0a0a0a;
    --bg-card: #141414;
    --bg-hover: #1e1e1e;
    --primary-orange: #ff6b00;
    --text-main: #f0f0f0;
    --text-muted: #aaaaaa;
    --neon-glow: 0 0 15px rgba(255, 107, 0, 0.4);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

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

.app-container { display: flex; min-height: 100vh; position: relative; }

/* Site Header - Sticky Glassmorphism */
.site-header {
    position: sticky; top: 0; left: 0; width: 100%; height: 70px;
    background: rgba(10, 10, 10, 0.8); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05); z-index: 999;
    display: flex; align-items: center; padding: 0 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.header-container { display: flex; align-items: center; justify-content: space-between; width: 100%; }

.header-brand { display: flex; align-items: center; gap: 1rem; }
.header-logo-img { width: 40px; height: 40px; filter: drop-shadow(0 0 5px var(--primary-orange)); }
.header-title { font-weight: 800; font-size: 1.2rem; letter-spacing: -0.5px; }

.menu-toggle {
    background: transparent; border: none; color: var(--text-main); font-size: 1.5rem;
    cursor: pointer; display: none; /* Only on mobile */
    padding: 0.5rem; transition: color 0.3s;
}
.menu-toggle:hover { color: var(--primary-orange); }

.header-meta { display: flex; align-items: center; gap: 1.5rem; }
.live-indicator { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); }
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--primary-orange); display: inline-block; animation: pulse 1.5s infinite; }

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.7); }
    70% { transform: scale(1.1); opacity: 0.8; box-shadow: 0 0 0 8px rgba(255, 107, 0, 0); }
    100% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(255, 107, 0, 0); }
}

/* Sidebar drawer logic */
.sidebar-overlay {
    position: fixed; inset: 0; background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px); z-index: 1000;
    opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.sidebar-overlay.active { opacity: 1; pointer-events: auto; }

.close-sidebar {
    position: absolute; top: 1.5rem; right: 1.5rem;
    background: transparent; border: none; color: var(--text-muted);
    font-size: 1.5rem; cursor: pointer; display: none; padding: 0.5rem;
}
.close-sidebar:hover { color: var(--text-main); }

/* Sidebar */
.sidebar { width: 280px; background-color: var(--bg-dark); border-right: 1px solid #222; padding: 2.5rem 1.5rem; display: flex; flex-direction: column; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); z-index: 1001; }
.brand { display: flex; align-items: center; justify-content: center; margin-bottom: 3.5rem; gap: 1rem; }
.brand-logo { width: 140px; height: 140px; transition: transform 0.3s ease; filter: drop-shadow(0 0 10px rgba(255, 107, 0, 0.3)); }
.brand-logo:hover { transform: scale(1.05); }
.nav-links { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.nav-item {
    padding: 1rem; border-radius: 8px; cursor: pointer; transition: all 0.3s ease;
    display: flex; align-items: center; gap: 1rem; font-weight: 600; color: var(--text-muted);
}
.nav-item:hover { background-color: var(--bg-hover); color: var(--text-main); }
.nav-item.active {
    background-color: rgba(255, 107, 0, 0.1); color: var(--primary-orange);
    border-left: 3px solid var(--primary-orange);
}

/* Main Content */
.main-content {
    flex: 1; padding: 2.5rem 3rem; position: relative;
    max-height: calc(100vh - 70px); overflow-y: auto; padding-bottom: 150px;
}

.view { display: none; content-visibility: auto; contain-intrinsic-size: 1px 1000px; animation: fadeIn 0.4s ease forwards; }
.view.active { display: block; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.view-header { margin-bottom: 2rem; }
.view-header h2 { font-size: 2.5rem; font-weight: 800; }
.accent { color: var(--primary-orange); text-shadow: var(--neon-glow); }
.view-header p { color: var(--text-muted); margin-top: 0.5rem; }

/* Station Cards */
.stations-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem; margin-bottom: 6rem;
}

.station-card {
    background-color: var(--bg-card); border: 1px solid #333; border-radius: 12px;
    padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.station-card:hover { box-shadow: var(--neon-glow); border-color: var(--primary-orange); }

.station-cover {
    width: 100%; height: 180px; border-radius: 12px; overflow: hidden;
    position: relative; display: flex; justify-content: center; align-items: center;
    background-color: #000; box-shadow: inset 0 0 20px rgba(0,0,0,0.5);
}

.cover-bg-blur {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover; filter: blur(15px) brightness(0.4);
    transform: scale(1.1); /* Prevent white edges from blur */
    z-index: 1;
}

.cover-art-main {
    position: relative; z-index: 2;
    width: 120px; height: 120px;
    object-fit: cover; border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.8);
    border: 1px solid rgba(255,107,0,0.2);
}

.station-cover div[data-widget="mcp-now-playing-cover"] {
    display: none; /* We handle it manually now */
}

.station-info h3 { font-size: 1.35rem; margin-bottom: 0.8rem; font-weight: 700; }

.status-row {
    font-size: 0.9rem; 
    color: var(--text-muted); 
    margin-bottom: 0.75rem;
    display: flex; 
    align-items: center; 
    gap: 0.5rem;
}

.status-indicator {
    display: inline-block; width: 8px; height: 8px; border-radius: 50%;
    background-color: #00ff00; box-shadow: 0 0 5px #00ff00;
}

.now-playing {
    font-size: 0.95rem; font-weight: 600; color: var(--primary-orange);
    display: flex; gap: 0.6rem; align-items: center; margin-bottom: 1.5rem;
}

.card-actions { margin-top: auto; padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,0.05); }
.play-btn { 
    width: 100%; padding: 1rem; border-radius: 50px; background-color: var(--primary-orange); 
    color: #fff; font-weight: 700; border: none; cursor: pointer; 
    transition: all 0.3s ease; display: flex; align-items: center; justify-content: center; gap: 0.5rem;
}
.play-btn:hover { transform: translateY(-2px); box-shadow: 0 5px 15px rgba(255,107,0,0.4); }

/* Recently Played History */
.history-container {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.history-header {
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-orange);
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    opacity: 0.8;
}

.history-list {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.history-item {
    font-size: 0.75rem;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0.2rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.02);
    transition: color 0.2s ease;
}

.history-item:hover { color: var(--text-main); }
.history-item:last-child { border-bottom: none; }

/* Recently Played Details */
details.recent-tracks {
    background: #111; border: 1px solid #222; border-radius: 8px; padding: 0.5rem;
}
details.recent-tracks summary {
    font-size: 0.85rem; color: var(--text-muted); cursor: pointer;
    display: flex; align-items: center; gap: 0.5rem;
}
details.recent-tracks summary:focus {
    outline: 2px solid var(--primary-orange); outline-offset: 4px; border-radius: 4px;
}
details.recent-tracks summary::-webkit-details-marker { display: none; }
.recent-list { margin-top: 0.5rem; font-size: 0.8rem; color: #ccc; }
.recent-list ul { padding-left: 1rem; }
.recent-list li { margin-bottom: 0.3rem; }

/* Global Player updated with Cover art */
.global-player {
    position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-40%);
    width: 70%; max-width: 900px;
    background: rgba(15, 15, 15, 0.95); backdrop-filter: blur(15px);
    border: 1px solid #333; border-radius: 100px; padding: 0.8rem 2rem;
    display: flex; justify-content: space-between; align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8); z-index: 100; transition: all 0.4s ease;
}

.global-player.hidden { bottom: -120px; opacity: 0; pointer-events: none; }

.global-player-cover { width: 60px; height: 60px; border-radius: 50%; overflow: hidden; background-color: #1a1a1a; flex-shrink: 0; box-shadow: 0 4px 10px rgba(0,0,0,0.5); margin-right: 1.5rem; border: 2px solid var(--primary-orange); }
.global-player-cover img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }

.now-playing {
    display: flex; align-items: center; gap: 1rem; flex: 1; min-width: 0;
}

.playing-info {
    display: flex; flex-direction: column; white-space: nowrap;
    overflow: hidden; text-overflow: ellipsis; max-width: 300px;
}
.station-name-badge { font-size: 0.75rem; color: #ffd1b3; text-transform: uppercase; letter-spacing: 1px; }
.song-title { font-weight: 800; font-size: 1.1rem; color: #fff; 
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.playing-animation { display: flex; align-items: flex-end; gap: 2px; height: 15px; margin-left:1rem; }
.bar { width: 3px; background-color: var(--primary-orange); animation: bounce 1.2s infinite ease-in-out; }
.bar:nth-child(1) { height: 100%; animation-delay: 0s; }
.bar:nth-child(2) { height: 60%; animation-delay: 0.2s; }
.bar:nth-child(3) { height: 80%; animation-delay: 0.4s; }

@keyframes bounce { 0%, 100% { height: 20%; } 50% { height: 100%; } }

.player-controls { display: flex; align-items: center; gap: 1rem; }

.ctrl-btn {
    background: var(--primary-orange); border: none; color: #000;
    width: 45px; height: 45px; border-radius: 50%; font-size: 1.2rem; cursor: pointer; transition: all 0.2s;
}

.ctrl-btn:hover { background-color: #ff8533; transform: scale(1.1); box-shadow: var(--neon-glow); }

input[type=range] { -webkit-appearance: none; appearance: none; width: 100px; background: #333; height: 5px; border-radius: 5px; }
input[type=range]:focus { outline: 2px solid var(--primary-orange); outline-offset: 8px; }
input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 15px; height: 15px; border-radius: 50%; background: var(--primary-orange); cursor: pointer; }

/* Social Wall */
.socials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Removed redundant .station-card definition */

.flagship-card {
    border: 1px solid rgba(255,107,0,0.3);
    box-shadow: 0 0 30px rgba(255,107,0,0.1);
    background: linear-gradient(145deg, #1c1c1c, #141414);
}

.flagship-card::after {
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255,107,0,0.05) 0%, transparent 70%);
    pointer-events: none; z-index: 0;
}

.flagship-badge {
    position: absolute; top: 12px; left: 12px; z-index: 10;
    background: var(--primary-orange); color: #fff;
    padding: 4px 10px; border-radius: 20px;
    font-size: 0.65rem; font-weight: 900; text-transform: uppercase;
    letter-spacing: 1px; box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.2);
}

.social-card {
    border-radius: 20px;
    background: linear-gradient(145deg, #181818, #0f0f0f);
    height: 650px; /* Adjusting for a more compact, premium look */
    display: flex;
    flex-direction: column;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.05); /* Subtle dark border */
    position: relative;
    overflow: hidden;
}

.social-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 0, 0.4);
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

.social-card .station-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1.5rem;
    flex: 1;
}

.social-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #fff;
    letter-spacing: -0.5px;
}

.social-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;
    color: #fff;
    padding: 6px 14px;
    border-radius: 50px; /* Pill shape */
    font-size: 0.7rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(5px);
}

.facebook-card .social-badge { background: #1877f2; }
.youtube-card .social-badge { background: #ff0000; }
.tiktok-card .social-badge { background: #000; border: 1px solid rgba(255,255,255,0.2); }
.instagram-card .social-badge { background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); }

.social-icon-overlay {
    position: relative;
    z-index: 2;
    font-size: 5rem; /* Larger icon */
    color: #fff;
    opacity: 0.95;
    filter: drop-shadow(0 0 20px rgba(255,255,255,0.2));
    margin: 1.5rem 0;
}

.social-embed-container {
    width: 100%;
    margin-bottom: 1.5rem;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.social-embed-container p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.5;
    max-width: 90%;
    margin: 0 auto;
}

.youtube-mini-placeholder, .instagram-mini-placeholder, .tiktok-mini-placeholder, .facebook-mini-placeholder {
    font-size: 4rem;
    opacity: 0.2;
    margin: 2rem 0;
    filter: grayscale(1);
    transition: all 0.3s ease;
}

.social-card:hover .youtube-mini-placeholder,
.social-card:hover .instagram-mini-placeholder,
.social-card:hover .tiktok-mini-placeholder,
.social-card:hover .facebook-mini-placeholder {
    opacity: 0.5;
    filter: grayscale(0);
}

.youtube-mini-placeholder { color: #ff0000; }
.instagram-mini-placeholder { color: #e1306c; }
.tiktok-mini-placeholder { color: #fff; }
.facebook-mini-placeholder { color: #1877f2; }

/* Premium CTA Button */
.social-cta {
    background: linear-gradient(90deg, #ff6b00, #ff8c00);
    color: #fff !important;
    width: auto;
    min-width: 220px;
    padding: 1.2rem 2.5rem !important;
    border-radius: 100px;
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: none;
    letter-spacing: -0.2px;
    text-decoration: underline; /* Matching the user image's button text style */
    text-underline-offset: 4px;
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.4);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 107, 0, 0.6);
    background: linear-gradient(90deg, #ff7a1a, #ff9d26);
}

.social-cta i {
    font-size: 1.3rem;
}

.offline-msg a { color: var(--primary-orange); text-decoration: none; font-weight: 600; }
.offline-msg a:hover { text-decoration: underline; }

@media (max-width: 1024px) {
    .socials-grid {
        grid-template-columns: 1fr;
    }
}

.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 2rem; }
.blog-card { background-color: var(--bg-card); border-radius: 16px; overflow: hidden; border: 1px solid #333; transition: transform 0.3s; }
.blog-card:hover { transform: translateY(-5px); border-color: var(--primary-orange); }
.blog-image { height: 200px; background-size: cover; background-position: center; }
.blog-image.placeholder-1 { background: linear-gradient(45deg, #111, #ff6b00); }
.blog-image.placeholder-2 { background: linear-gradient(45deg, #222, #555); }
.blog-content { padding: 1.5rem; }
.tag { display: inline-block; padding: 0.3rem 0.8rem; background: #222; color: var(--primary-orange); border-radius: 4px; font-size: 0.8rem; font-weight: 600; margin-bottom: 1rem; }
.blog-content h3 { margin-bottom: 0.5rem; font-size: 1.3rem; }
.blog-content p { color: var(--text-muted); line-height: 1.6; margin-bottom: 1.5rem; font-size: 0.95rem; }
.read-more { color: var(--text-main); text-decoration: none; font-weight: 600; display: flex; align-items: center; gap: 0.5rem; transition: color 0.2s; }
.read-more:hover { color: var(--primary-orange); }

/* RSS Feeds */
.rss-feeds-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.rss-box {
    background-color: var(--bg-card);
    border: 1px solid #333;
    border-radius: 12px;
    padding: 1.5rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.rss-box:hover {
    border-color: var(--primary-orange);
    transform: translateY(-5px);
    box-shadow: var(--neon-glow);
}

.rss-box h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-main);
    border-bottom: 2px solid var(--primary-orange);
    padding-bottom: 0.5rem;
    display: inline-block;
    align-self: flex-start;
}

.rss-placeholder {
    flex-grow: 1;
    min-height: 250px;
    background-color: #111;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    border: 1px dashed #444;
}

@media (max-width: 768px) {
    .app-container { flex-direction: column; overflow-x: hidden; }
    
    .menu-toggle { display: block; }
    .header-title { font-size: 1rem; }
    
    .sidebar { 
        position: fixed; left: -280px; top: 0; bottom: 0; width: 280px; 
        border-right: 1px solid #222; box-shadow: 20px 0 50px rgba(0,0,0,0.5);
        padding: 1.5rem;
    }
    .sidebar.open { transform: translateX(280px); }
    .close-sidebar { display: block; }

    .brand { margin-bottom: 1.5rem; justify-content: center; }
    .brand-logo { width: 100px; height: 100px; }
    
    .nav-links { flex-direction: column; justify-content: flex-start; gap: 0.5rem; width: 100%; }
    .nav-item { width: 100%; padding: 1rem; border-radius: 8px; justify-content: flex-start; margin: 0; }
    
    .main-content { padding: 1.5rem 1rem; padding-bottom: 130px; overflow-x: hidden; width: 100%; max-height: none; }
    .view-header h2 { font-size: 1.8rem; }
    .view-header { margin-bottom: 1.5rem; }
    
    .stations-grid { grid-template-columns: 1fr; gap: 1.5rem; width: 100%; max-width: 100%; }
    .station-cover { height: 140px; }
    
    .blog-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .rss-feeds-container { grid-template-columns: 1fr; gap: 1rem; margin-bottom: 2rem; }
    
    .social-panel { padding: 1.5rem 1rem; }
    .embed-wrapper iframe, .facebook-container iframe { max-width: 100% !important; }
    
    .global-player { width: 95%; transform: translateX(-50%); padding: 0.5rem 1rem; border-radius: 30px; gap: 0.5rem; bottom: 1rem; }
    .global-player-cover { width: 40px; height: 40px; margin-right: 0.5rem; }
    .playing-info { max-width: 140px; }
    .song-title { font-size: 0.85rem; }
    .station-name-badge { display:none;}
    .player-controls { gap: 0.5rem; }
    .ctrl-btn { width: 40px; height: 40px; font-size: 1rem; }
    input[type=range] { width: 60px; }
    
    .lang-switcher { padding: 1rem 0; }
}

/* Language Switcher */
.lang-switcher {
    display: flex; gap: 0.8rem; justify-content: center; margin-top: auto; padding: 2rem 0;
}
.lang-btn {
    background: #111; border: 1px solid #333; border-radius: 8px; font-size: 1.1rem; cursor: pointer; transition: all 0.2s; opacity: 0.5; padding: 0.5rem 0.8rem; color: var(--text-main); font-weight: 600;
}
.lang-btn:hover { opacity: 0.8; transform: scale(1.1); }
.lang-btn.active { opacity: 1; border-color: var(--primary-orange); box-shadow: var(--neon-glow); background: #222;}
/* --- Homepage Specific Styles --- */
.hero-section {
    padding: 6rem 2rem;
    text-align: center;
    background: radial-gradient(circle at center, rgba(255, 107, 0, 0.1) 0%, transparent 70%);
    border-radius: 20px;
    margin-bottom: 4rem;
    border: 1px solid rgba(255, 107, 0, 0.1);
}

.hero-section h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -2px;
}

.hero-section p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--primary-orange);
    color: #fff;
    padding: 1.2rem 3rem;
    border-radius: 100px;
    font-size: 1.2rem;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.3);
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 107, 0, 0.5);
}

.homepage-section {
    margin-bottom: 6rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.section-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--primary-orange), transparent);
}

.intro-content {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-muted);
    max-width: 800px;
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.channel-mini-card {
    background: var(--bg-card);
    border: 1px solid #333;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.channel-mini-card:hover {
    border-color: var(--primary-orange);
    transform: translateY(-5px);
    box-shadow: var(--neon-glow);
}

.channel-mini-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.channel-mini-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
}

.social-preview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.social-mini-card {
    background: #111;
    border: 1px solid #222;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.social-mini-card:hover {
    color: #fff;
    border-color: var(--primary-orange);
}

.news-preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.news-mini-item {
    background: var(--bg-card);
    border: 1px solid #333;
    padding: 1.5rem;
    border-radius: 15px;
}

.footer-homepage {
    padding: 4rem 0 2rem;
    border-top: 1px solid #222;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .hero-section h1 { font-size: 2.5rem; }
    .hero-section p { font-size: 1.1rem; }
    .social-preview-grid { grid-template-columns: repeat(2, 1fr); }
    .news-preview-grid { grid-template-columns: 1fr; }
}

/* --- Born in Manchester Page Styles --- */
.memory-box {
    background: linear-gradient(145deg, #1e1e1e, #141414);
    border: 1px solid rgba(255, 107, 0, 0.2);
    border-radius: 20px;
    padding: 3rem;
    margin-top: 2rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.memory-form-placeholder {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.memory-form-placeholder label {
    font-weight: 600;
    color: var(--text-main);
    font-size: 1rem;
}

.memory-form-placeholder input, 
.memory-form-placeholder textarea {
    background: #0a0a0a;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 1rem;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
}

.memory-form-placeholder textarea {
    min-height: 150px;
    resize: vertical;
}

.memory-form-placeholder input:focus, 
.memory-form-placeholder textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 10px rgba(255, 107, 0, 0.2);
}

.culture-highlight {
    background: rgba(255, 107, 0, 0.05);
    border-left: 4px solid var(--primary-orange);
    padding: 2rem;
    border-radius: 0 15px 15px 0;
    margin: 2rem 0;
}

.on-air-badge {
    display: inline-block;
    background: #ff0000;
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(255, 0, 0, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 0, 0, 0); }
}
