:root {
    --bg-dark: #0b0c15;
    --bg-darker: #050508;
    --neon-pink: #ff00ff;
    --neon-cyan: #00ffff;
    --neon-purple: #bc13fe;
    --sun-gradient-top: #ffcc00;
    --sun-gradient-bottom: #ff0055;
    --grid-color: rgba(0, 255, 255, 0.3);
    --text-main: #ffffff;
    --font-display: 'Press Start 2P', cursive;
    --font-body: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    min-height: 100vh;
}

/* --- Video Background --- */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    background-color: var(--bg-dark);
}

#bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 0.8;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(11, 12, 21, 0.3) 0%, rgba(48, 43, 99, 0.5) 50%, rgba(11, 12, 21, 0.95) 100%);
    z-index: 1;
}

/* --- Navbar --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: rgba(11, 12, 21, 0.6);
    backdrop-filter: blur(15px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-logo {
    font-family: var(--font-display);
    color: var(--neon-cyan);
    font-size: 1.2rem;
    text-shadow: 0 0 5px var(--neon-cyan);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--neon-pink);
    text-shadow: 0 0 8px var(--neon-pink);
}

.btn-nav {
    border: 2px solid var(--neon-pink);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    color: var(--neon-pink) !important;
    transition: all 0.3s ease;
}

.btn-nav:hover {
    background: var(--neon-pink);
    color: white !important;
    box-shadow: 0 0 15px var(--neon-pink);
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
    padding-top: 80px;
    padding-bottom: 2rem;
}

.logo-container {
    position: relative;
    margin-bottom: 2rem;
    animation: float 5s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.main-logo {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--neon-cyan);
    box-shadow: 0 0 40px var(--neon-purple), inset 0 0 20px var(--neon-purple);
    position: relative;
    z-index: 2;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: var(--neon-cyan);
    filter: blur(40px);
    opacity: 0.5;
    z-index: 1;
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.1);
    }

    100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
}

h1.glitch {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: white;
    text-transform: uppercase;
    position: relative;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 0px var(--neon-purple);
    line-height: 1.4;
}

.subtitle {
    font-size: 1.2rem;
    margin: 0 auto 3rem auto;
    color: #ccc;
    letter-spacing: 1px;
    max-width: 600px;
    text-align: center;
}

.cta-button {
    text-decoration: none;
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-purple));
    color: white;
    padding: 1rem 3rem;
    font-size: 1.2rem;
    font-weight: 900;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(255, 0, 255, 0.8);
}

/* --- Episodes Section --- */
.episodes-section {
    position: relative;
    z-index: 2;
    background: rgba(11, 12, 21, 0.75);
    backdrop-filter: blur(20px);
    padding: 6rem 5%;
    border-top: 2px solid rgba(0, 255, 255, 0.3);
    box-shadow: 0 -10px 50px rgba(0, 255, 255, 0.05);
}

.section-title {
    text-align: center;
    font-family: var(--font-display);
    color: var(--neon-cyan);
    font-size: 2rem;
    margin-bottom: 4rem;
    text-shadow: 0 0 10px var(--neon-cyan);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.video-card {
    background: rgba(26, 26, 46, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    text-decoration: none;
    display: block;
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    border-color: var(--neon-cyan);
}

.thumbnail-container {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    /* 16:9 */
    position: relative;
    overflow: hidden;
    background: #000;
}

.thumbnail-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.video-card:hover .thumbnail-container img {
    transform: scale(1.1);
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.video-card:hover .play-overlay {
    opacity: 1;
}

.play-icon {
    font-size: 3rem;
    color: white;
    text-shadow: 0 0 10px black;
}

.card-info {
    padding: 1.5rem;
}

.card-info h3 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.card-info p {
    color: #aaa;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* --- About Us (Team) Section --- */
.about-section {
    background: rgba(11, 12, 21, 0.6);
    backdrop-filter: blur(10px);
    border-top: none;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-card {
    background: rgba(26, 26, 46, 0.4);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    width: 200px;
    text-align: center;
    padding: 2rem 1rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 25px rgba(188, 19, 254, 0.4);
    border-color: var(--neon-purple);
}

.profile-img-container {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1rem;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.team-card:hover .profile-img-container {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px var(--neon-cyan);
}

.profile-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.team-card:hover .profile-img-container img {
    transform: scale(1.1);
}

.team-info h3 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--neon-cyan);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

/* --- Lives Section --- */
.lives-section {
    background: linear-gradient(to bottom, rgba(11, 12, 21, 0.85), rgba(26, 11, 46, 0.85));
    border-top: none;
}

.live-thumb {
    background: linear-gradient(45deg, #55102b, #9e2828);
}

.live-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--neon-pink);
    color: white;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: 0 0 10px var(--neon-pink);
    z-index: 10;
}

/* --- Social Sidebar --- */
.social-sidebar {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.social-icon:hover {
    transform: scale(1.1) translateY(-3px);
}

.x-icon:hover {
    background: #000;
    color: #fff;
    border-color: #fff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

.tiktok-icon:hover {
    background: #000;
    color: #ff0050;
    border-color: #00f2fe;
    box-shadow: -3px 3px 15px rgba(0, 242, 254, 0.8), 3px -3px 15px rgba(255, 0, 80, 0.8);
}

.social-links a:hover {
    color: var(--neon-cyan);
}

/* --- Responsive --- */
@media (max-width: 900px) {
    .social-sidebar {
        right: 10px;
        gap: 10px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .nav-logo {
        font-size: 0.9rem;
    }

    .hero h1.glitch {
        font-size: 1.8rem;
    }

    h1.glitch {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .main-logo {
        width: 200px;
        height: 200px;
    }

    .logo-glow {
        width: 200px;
        height: 200px;
    }

    .nav-links {
        display: none;
    }

    .navbar {
        justify-content: center;
    }

    .social-sidebar {
        top: auto;
        bottom: 20px;
        right: 50%;
        transform: translateX(50%);
        flex-direction: row;
        background: rgba(0, 0, 0, 0.5);
        padding: 10px 20px;
        border-radius: 30px;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
}

@media (max-width: 480px) {
    .episodes-section {
        padding: 4rem 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .team-grid {
        gap: 1.5rem;
    }

    .team-card {
        width: 150px;
        padding: 1.5rem 0.5rem;
    }

    .profile-img-container {
        width: 90px;
        height: 90px;
    }
}