/* style.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #f1c40f;
    --dark: #0f0f0f;
    --glass: rgba(255, 255, 255, 0.08);
}

body {
    font-family: 'Inter', system_ui, sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: #eee;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Glassmorphism */
.glass {
    background: var(--glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

/* HEADER */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 2px solid rgba(241, 196, 15, 0.3);
    animation: header-glow 4s infinite ease-in-out;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
}

.logo .ng {
    color: var(--gold);
}

.nav-link {
    color: #ccc;
    text-decoration: none;
    margin: 0 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.nav-link:hover {
    color: var(--gold);
}

/* HERO */
.hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    position: relative;
    background: url('https://picsum.photos/id/1015/2000/1200') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10,10,10,0.6), rgba(10,10,10,0.85));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(241, 196, 15, 0.15);
    color: var(--gold);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.live-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #ff3333;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-title {
    font-family: 'Playfair Display', sans-serif;
    font-size: clamp(2.8rem, 8vw, 5.5rem);
    line-height: 1.05;
    margin-bottom: 1.2rem;
}

.gold {
    color: var(--gold);
}

.hero-subtitle {
    font-size: 1.35rem;
    max-width: 580px;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.btn-primary {
    background: var(--gold);
    color: #111;
    border: none;
    padding: 16px 36px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 30px rgba(241, 196, 15, 0.4);
}

.btn-primary.large {
    padding: 22px 48px;
    font-size: 1.35rem;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.4);
    padding: 16px 36px;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.trust-badges {
    display: flex;
    gap: 30px;
    margin-top: 3rem;
    font-size: 1.1rem;
}

/* STATUS BANNER */
.status-banner {
    background: rgba(30, 30, 30, 0.95);
    padding: 14px 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(241, 196, 15, 0.3);
}

.refresh-btn {
    background: #222;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 6px 18px;
    border-radius: 30px;
    margin-left: 15px;
    cursor: pointer;
}

/* STREAMS GRID */
.streams-section {
    padding: 100px 0;
    background: #0a0a0a;
}

.section-title {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 3rem;
    position: relative;
}

.live-dot-small {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #ff3333;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.streams-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.stream-card {
    background: var(--glass);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
}

.stream-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 25px 50px -12px rgb(241 196 15 / 20%);
}

.stream-card::before {
    content: '';
    position: absolute;
    top: 16px;
    left: 16px;
    background: #ff3333;
    color: white;
    font-size: 0.75rem;
    padding: 2px 10px;
    border-radius: 20px;
    font-weight: 700;
    z-index: 2;
}

.live-label {
    content: 'LIVE';
}

.stream-icon {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4.5rem;
    background: linear-gradient(45deg, #1a1a1a, #2a2a2a);
    position: relative;
}

.stream-info {
    padding: 20px;
}

.stream-info h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.stream-info p {
    font-size: 0.95rem;
    opacity: 0.7;
}

/* CHAT SECTION */
.chat-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #0a0a0a, #111);
}

.chat-card {
    max-width: 520px;
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
}

.chat-header {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-messages {
    height: 320px;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    font-size: 0.95rem;
}

.chat-msg {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 18px;
    background: rgba(255,255,255,0.1);
}

.chat-msg.self {
    align-self: flex-end;
    background: var(--gold);
    color: #111;
}

.chat-input {
    padding: 16px;
    display: flex;
    gap: 10px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.chat-input input {
    flex: 1;
    background: rgba(0,0,0,0.3);
    border: none;
    border-radius: 30px;
    padding: 14px 24px;
    color: white;
    outline: none;
}

.chat-input button {
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: #111;
    border: none;
    border-radius: 50%;
    cursor: pointer;
}

/* CTA SECTION */
.cta-section {
    padding: 120px 0;
    text-align: center;
}

.cta-card {
    max-width: 620px;
    margin: 0 auto;
    padding: 60px 40px;
}

.cta-card h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.notification-form {
    display: flex;
    gap: 12px;
    max-width: 420px;
    margin: 30px auto;
}

.notification-form input {
    flex: 1;
    padding: 18px 24px;
    border-radius: 50px;
    border: none;
    background: rgba(255,255,255,0.1);
    color: white;
    font-size: 1.05rem;
}

.bookmark-large {
    margin-top: 20px;
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.bookmark-large:hover {
    background: var(--gold);
    color: #111;
}

/* MODAL */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.modal-content {
    width: 90%;
    max-width: 860px;
    border-radius: 24px;
    overflow: hidden;
}

.modal-header {
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.fake-player {
    height: 460px;
    background: #111;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    color: #aaa;
    position: relative;
}

.fake-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 6px;
    width: 65%;
    background: var(--gold);
}

/* ANIMATIONS */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

@keyframes header-glow {
    0%, 100% { border-bottom-color: rgba(241, 196, 15, 0.2); box-shadow: 0 4px 15px rgba(0,0,0,0.5); }
    50% { border-bottom-color: rgba(241, 196, 15, 0.7); box-shadow: 0 4px 25px rgba(241, 196, 15, 0.15); }
}

.pulse {
    animation: pulse 2s infinite;
}

.stream-card {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.logo i {
    animation: spin 20s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header {
        padding: 0.8rem 0;
    }
    
    .logo {
        font-size: 1.4rem;
    }
    
    .header nav {
        display: none;
    }
    
    .hero {
        min-height: 600px;
        padding: 120px 0 60px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        gap: 16px;
    }
    
    .btn-primary.large {
        padding: 18px 36px;
        font-size: 1.1rem;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 16px;
        font-size: 1rem;
    }
    
    .streams-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .stream-card {
        min-height: 200px;
    }
    
    .stream-icon {
        height: 120px;
        font-size: 3rem;
    }
    
    .stream-info {
        padding: 16px;
    }
    
    .stream-info h4 {
        font-size: 1rem;
    }
    
    .stream-info p {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .chat-card {
        max-width: 100%;
        margin: 0 15px;
    }
    
    .chat-messages {
        height: 280px;
        font-size: 0.9rem;
    }
    
    .cta-card {
        padding: 40px 20px;
    }
    
    .cta-card h2 {
        font-size: 2.2rem;
    }
    
    .notification-form {
        flex-direction: column;
        gap: 12px;
    }
    
    .notification-form input {
        padding: 16px 20px;
        font-size: 1rem;
    }
    
    .footer {
        padding: 40px 0;
        text-align: center;
    }
    
    .footer-links {
        margin-top: 20px;
    }
    
    .footer-links a {
        display: block;
        margin: 10px 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .streams-grid {
        grid-template-columns: 1fr;
    }
    
    .stream-card {
        max-width: 100%;
    }
}
