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

:root {
    --primary: #00ff88;
    --secondary: #ff0055;
    --accent: #0099ff;
    --dark-bg: #0a0e27;
    --darker-bg: #050812;
    --text-light: #e0e0ff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Rajdhani', 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, var(--darker-bg) 0%, #1a0a2e 50%, var(--dark-bg) 100%);
    background-attachment: fixed;
    color: var(--text-light);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, rgba(0, 255, 136, 0.02) 0px, transparent 2px, transparent 4px, rgba(0, 255, 136, 0.02) 6px),
        repeating-linear-gradient(90deg, rgba(0, 255, 136, 0.02) 0px, transparent 2px, transparent 4px, rgba(0, 255, 136, 0.02) 6px);
    pointer-events: none;
    z-index: 1;
}

*:not(script) {
    position: relative;
    z-index: 2;
}

/* Navigation */
.navbar {
    display: none;
}

.nav-container {
    display: none;
}

.logo {
    display: none;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 2rem;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.15), transparent 70%);
    transform: translate(-50%, -50%);
    filter: blur(40px);
    z-index: 0;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.8; }
}

.hero-content {
    text-align: center;
    max-width: 600px;
    position: relative;
    z-index: 3;
}

.hero h1 {
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    font-family: 'Orbitron', sans-serif;
    color: var(--primary);
    letter-spacing: 3px;
    text-shadow: 0 0 30px rgba(0, 255, 136, 0.5), 0 0 60px rgba(0, 153, 255, 0.3);
    animation: glow 3s ease-in-out infinite;
}

.hero-copy {
    max-width: 520px;
    margin: 0 auto 1.75rem;
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(224, 224, 255, 0.82);
    letter-spacing: 0.4px;
}

@keyframes glow {
    0%, 100% { text-shadow: 0 0 30px rgba(0, 255, 136, 0.5), 0 0 60px rgba(0, 153, 255, 0.3); }
    50% { text-shadow: 0 0 40px rgba(0, 255, 136, 0.8), 0 0 80px rgba(0, 153, 255, 0.5); }
}

.tagline {
    display: none;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--darker-bg);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
    cursor: pointer;
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3), inset 0 0 20px rgba(0, 255, 136, 0.1);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.6), inset 0 0 20px rgba(0, 255, 136, 0.2);
    background: linear-gradient(90deg, var(--accent), var(--primary));
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
    width: 100%;
    max-width: 800px;
}

.feed-status {
    grid-column: 1 / -1;
    text-align: center;
    color: rgba(224, 224, 255, 0.8);
    font-size: 1rem;
    letter-spacing: 0.3px;
    padding: 1rem 0;
}

.video-card {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    border: 2px solid var(--primary);
    background: rgba(0, 255, 136, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: inset 0 0 10px rgba(0, 255, 136, 0.1);
}

.video-card:hover {
    border-color: var(--accent);
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.15), rgba(0, 153, 255, 0.15));
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(0, 255, 136, 0.4), inset 0 0 10px rgba(0, 255, 136, 0.2);
}

.video-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    display: block;
}

.video-card-title {
    padding: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-light);
    text-decoration: none;
    display: block;
    line-height: 1.3;
    font-weight: 500;
}

.video-card-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 255, 136, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.video-card:hover .video-card-overlay {
    opacity: 1;
}

.video-card-overlay i {
    color: var(--darker-bg);
    font-size: 1.2rem;
    margin-left: 4px;
}

.social-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
}

.social-links a {
    width: 70px;
    height: 70px;
    border-radius: 4px;
    background: rgba(0, 255, 136, 0.05);
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: inset 0 0 10px rgba(0, 255, 136, 0.1);
}

.social-links a:hover {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(0, 153, 255, 0.2));
    color: var(--accent);
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.4), inset 0 0 10px rgba(0, 255, 136, 0.2);
}

.channel-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1.5rem;
    padding: 0.9rem 1.5rem;
    border: 1px solid rgba(0, 255, 136, 0.35);
    border-radius: 4px;
    color: var(--text-light);
    text-decoration: none;
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: 1px;
    background: rgba(0, 255, 136, 0.04);
    transition: all 0.25s ease;
}

.channel-link:hover {
    border-color: var(--accent);
    color: white;
    background: rgba(0, 153, 255, 0.14);
    box-shadow: 0 0 22px rgba(0, 153, 255, 0.2);
}


/* Footer */
footer {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .hero-copy {
        font-size: 1rem;
    }

    .videos-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        margin-top: 0;
        padding: 1rem;
    }

    .hero h1 {
        font-size: 2.2rem;
        letter-spacing: 1px;
    }

    .hero-copy {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }

    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        margin: 2rem 0;
    }

    .social-links {
        gap: 1rem;
    }

    .social-links a {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }

    .channel-link {
        width: 100%;
        max-width: 240px;
    }
}
