
    :root {
        --primary: #1c4b80;
        --secondary: #0e9de0;
        --dark: #040d0f;
        --light: #f4f4f4;
        --white: #ffffff;
        --accent: #088c43;
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; line-height: 1.6; color: #333; background: #e9ecef; }
    .container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
    
    header { background: var(--dark); color: var(--white); padding: 1rem 0; box-shadow: 0 2px 5px rgba(0,0,0,0.2); }
    .nav-content { display: flex; justify-content: space-between; align-items: center; }
    .logo h1 { font-size: 1.5rem; color: var(--white); }
    .logo span { color: var(--secondary); }
    .nav-links { display: flex; list-style: none; gap: 20px; }
    .nav-links a { color: var(--white); text-decoration: none; font-weight: bold; }
    
    .hero-banner { width: 100%; height: 300px; background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('/assets/15apocal.jpg'); background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; color: white; text-align: center; }

    .stream-section { padding: 40px 0; background: var(--white); }
    .stream-container { display: grid; grid-template-columns: 250px 1fr; gap: 20px; margin-top: 20px; }
    
    .channels-sidebar { background: #f8f9fa; padding: 15px; border-radius: 8px; max-height: 500px; overflow-y: auto; }
    .channel-item { display: flex; align-items: center; padding: 10px; cursor: pointer; border-bottom: 1px solid #ddd; }
    .channel-item:hover { background: #e2e6ea; }
    
    .player-wrapper { width: 100%; aspect-ratio: 16/9; background: #000; }
    iframe { width: 100%; height: 100%; }

    .about-section { padding: 40px 0; }
    .features { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-top: 20px; }
    .feature-item { background: var(--white); padding: 20px; border-radius: 8px; text-align: center; box-shadow: 0 2px 5px rgba(0,0,0,0.1); }
    
    .faq-item { background: var(--white); margin-bottom: 10px; padding: 15px; border-radius: 5px; }
    .faq-question { display: flex; justify-content: space-between; cursor: pointer; }
    
    footer { background: var(--dark); color: var(--white); padding: 40px 0; text-align: center; }
    
    @media (max-width: 768px) {
        .stream-container { grid-template-columns: 1fr; }
        .nav-links { display: none; }
    }
