/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@200;300;400;500;700&display=swap');

:root {
    --primary-glow: #00d2ff;
    --secondary-glow: #e2b342;
    --bg-dark: #0a0a12;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-main: #ffffff;
    --text-muted: #a0a0b0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    font-family: 'Outfit', sans-serif;
    scroll-behavior: smooth;
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn-main {
    background: linear-gradient(135deg, var(--primary-glow), var(--secondary-glow));
    color: #000;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.4);
    display: inline-block;
}

.btn-main:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(0, 210, 255, 0.6);
}

/* Sections */
section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Clean background without text */
    background: radial-gradient(circle at top right, #1a2040 0%, #0a0a12 60%);
    position: relative;
    text-align: left;
    /* Changed to left for side-by-side */
}

.hero::after {
    /* Removed image overlay to ensure no text visibility */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Optional: keeping a subtle noise texture if available, otherwise just transparent */
    background: transparent;
    pointer-events: none;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    gap: 50px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, var(--primary-glow));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.hero p {
    font-size: 1.4rem;
    color: #ddd;
    margin-bottom: 40px;
    font-weight: 300;
}

/* Video Placeholder */
.hero-video-placeholder {
    flex: 1;
    aspect-ratio: 16/9;
    height: auto;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
    box-shadow: 0 0 30px rgba(0, 210, 255, 0.2);
}




.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-icon {
    width: 60px;
    height: 60px;
    border: 2px solid var(--primary-glow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.play-icon::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid var(--primary-glow);
    margin-left: 5px;
}

.hero-video-placeholder:hover .play-icon {
    transform: scale(1.1);
    background: rgba(0, 210, 255, 0.1);
}


/* The Problem */
.problem {
    background: url('../images/hp2_chaos.png') no-repeat center center/cover;
    position: relative;
}

.problem::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 18, 0.85);
}

.problem-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.problem h2 {
    font-size: 3rem;
    margin-bottom: 40px;
    color: var(--secondary-glow);
}

.pain-points {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.point {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 0;
    /* Remove padding to let image flush */
    border-radius: 20px;
    backdrop-filter: blur(10px);
    width: 320px;
    text-align: left;
    transition: transform 0.3s;
    overflow: hidden;
    /* For image */
    display: flex;
    flex-direction: column;
}

.point:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-glow);
}

.pain-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 1px solid var(--glass-border);
}

.point h3 {
    color: var(--secondary-glow);
    margin: 20px 25px 10px 25px;
    font-size: 1.4rem;
}

.point p {
    margin: 0 25px 25px 25px;
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* The Solution (Guide) */
.solution {
    background: radial-gradient(circle at center, #1a1a2e 0%, #000 100%);
    text-align: center;
    padding: 80px 0;
}

.solution-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
    /* Stronger Blue Gradient */
    background: linear-gradient(to right, #00d2ff, #0078ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 40px rgba(0, 210, 255, 0.4);
    font-weight: 700;
}

.solution p {
    font-size: 1.3rem !important;
    /* Override inline styles if any, or better yet update inline in HTML too, but this ensures pop */
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #e0e0e0 !important;
    line-height: 1.8;
    font-weight: 300;
}

.solution-visual {
    margin: 50px auto;
    width: 90%;
    max-width: 800px;
    height: 400px;
    /* Placeholder for missing image or gradient */
    background: linear-gradient(135deg, rgba(0, 210, 255, 0.2), rgba(226, 179, 66, 0.2));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* .solution-visual::after removed to clean up video display */

/* The Plan */
.plan {
    background: #0a0a12;
}

.steps {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 50px;
}

.step {
    text-align: center;
    flex: 1;
    min-width: 250px;
    padding: 20px;
}

.step-num {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.1);
    font-weight: 700;
    margin-bottom: -20px;
    display: block;
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary-glow);
}

/* Transformation (Success) */
.transform {
    /* Cosmic Aurora Gradient Background */
    background: radial-gradient(circle at top left, #1a0b2e 0%, #000 40%),
        radial-gradient(circle at bottom right, #001a2c 0%, #000 40%),
        linear-gradient(135deg, #050505 0%, #0a0a12 100%);
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.transform::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background: var(--primary-glow);
    filter: blur(200px);
    opacity: 0.15;
    pointer-events: none;
    animation: pulseGlow 8s infinite alternate;
}

@keyframes pulseGlow {
    0% {
        opacity: 0.1;
        transform: translate(-50%, -50%) scale(1);
    }

    100% {
        opacity: 0.2;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

.transform-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap-reverse;
    /* Video on top on mobile if needed, or side by side */
    gap: 50px;
    position: relative;
    z-index: 2;
}

.transform-video {
    flex: 1;
    min-width: 300px;
    height: 350px;
    /* Portrait video height */
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: rotate(-2deg);
    /* Stylish tilt */
    transition: transform 0.3s;
}

.transform-video:hover {
    transform: rotate(0deg) scale(1.02);
}

.transform-content {
    flex: 1;
    min-width: 300px;
    background: rgba(10, 10, 18, 0.6);
    /* Slightly darker card */
    padding: 50px;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.transform-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, var(--primary-glow));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.check-list li {
    list-style: none;
    margin: 20px 0;
    display: flex;
    align-items: center;
    font-size: 1.3rem;
    color: #e0e0e0;
}

.check-list li::before {
    content: '✦';
    /* Star/Sparkle icon */
    color: var(--secondary-glow);
    margin-right: 20px;
    font-size: 1.5rem;
    text-shadow: 0 0 10px var(--secondary-glow);
}

/* Footer */
footer {
    background: #000;
    padding: 50px 0;
    text-align: center;
    border-top: 1px solid var(--glass-border);
}

/* Animations */
@keyframes glow {
    0% {
        text-shadow: 0 0 10px var(--primary-glow);
    }

    50% {
        text-shadow: 0 0 20px var(--primary-glow), 0 0 30px var(--primary-glow);
    }

    100% {
        text-shadow: 0 0 10px var(--primary-glow);
    }
}

.glowing-text {
    animation: glow 3s infinite;
}

/* Media Queries */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .transform {
        justify-content: center;
    }

    .transform-content {
        margin-right: 0;
        margin: 20px;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-video-placeholder {
        width: 100%;
        height: 250px;
    }
}

/* About Me Section */
.about-me {
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0f1016 100%);
    padding: 100px 0;
    position: relative;
}

.about-me::before {
    /* Subtle background accent */
    content: '';
    position: absolute;
    top: 20%;
    right: 0;
    width: 300px;
    height: 300px;
    background: var(--primary-glow);
    filter: blur(150px);
    opacity: 0.1;
    pointer-events: none;
}

.about-container {
    display: flex;
    flex-direction: column;
    /* Stack vertically */
    align-items: center;
    gap: 40px;
    max-width: 1000px;
    /* Constrain width for a focused reading line */
    margin: 0 auto;
    padding: 0 20px;
}

.about-video {
    width: 100%;
    max-width: 900px;
    /* Cinematic width */
    height: 500px;
    /* Taller, more cinematic */
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    /* Softer rounded corners */
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 210, 255, 0.1);
    /* Deep elegant shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-video:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(0, 210, 255, 0.2);
}

.about-content {
    width: 100%;
    max-width: 800px;
}

.about-header {
    text-align: center;
    width: 100%;
    margin-bottom: 50px;
}

.about-header h2 {
    font-size: 3rem;
    line-height: 1.2;
    background: linear-gradient(to bottom right, #fff 40%, var(--secondary-glow));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

.profile-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 24px;
    backdrop-filter: blur(20px);
    display: flex;
    align-items: flex-start;
    /* Align to top */
    gap: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: border-color 0.3s;
}

.profile-card:hover {
    border-color: rgba(255, 255, 255, 0.3);
}

.profile-img-real {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-glow);
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.3);
}

.profile-text h3 {
    color: var(--primary-glow);
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.profile-text p {
    color: #d0d0e0;
    line-height: 1.8;
    font-size: 1.1rem;
    font-weight: 300;
}

/* Testimonials Section */
.testimonials {
    background: #050505;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(0, 210, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.testimonials-header h2 {
    font-size: 3rem;
    background: linear-gradient(to right, #fff, var(--primary-glow));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    padding: 0 20px;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 20px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    backdrop-filter: blur(10px);
}

.testimonial-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 210, 255, 0.2);
    border-color: var(--primary-glow);
}

.testimonial-video-wrapper {
    width: 100%;
    aspect-ratio: 9/16;
    /* Vertical videos usually */
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
}

.testimonial-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.testimonial-info p {
    color: var(--secondary-glow);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Floating Menu */
.floating-menu {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(10, 10, 18, 0.7);
    backdrop-filter: blur(20px);
    padding: 15px 40px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: flex;
    gap: 30px;
    transition: all 0.3s ease;
}

.floating-menu:hover {
    background: rgba(10, 10, 18, 0.9);
    box-shadow: 0 10px 40px rgba(0, 210, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
}

.menu-item {
    color: #bbb;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    transition: color 0.3s;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.menu-item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-glow);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--primary-glow);
}

.menu-item:hover,
.menu-item.active {
    color: #fff;
    text-shadow: 0 0 10px var(--primary-glow);
}

.menu-item:hover::after,
.menu-item.active::after {
    width: 100%;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(180deg, #000 0%, #050510 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 210, 255, 0.05) 0%, transparent 70%);
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 50px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    text-align: center;

    position: relative;
    z-index: 2;
}

.contact-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    background: linear-gradient(to right, #fff, var(--secondary-glow));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-header p {
    color: #888;
    margin-bottom: 40px;
}

.premium-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group label {
    position: absolute;
    left: 20px;
    top: 15px;
    color: #666;
    pointer-events: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group input:not(:placeholder-shown),
.form-group textarea:not(:placeholder-shown) {
    border-color: var(--primary-glow);
    background: rgba(0, 210, 255, 0.05);
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.1);
}

.form-group input:focus~label,
.form-group textarea:focus~label,
.form-group input:not(:placeholder-shown)~label,
.form-group textarea:not(:placeholder-shown)~label {
    top: -25px;
    left: 10px;
    font-size: 0.85rem;
    color: var(--primary-glow);
}

.btn-submit {
    background: linear-gradient(135deg, var(--primary-glow), var(--secondary-glow));
    border: none;
    padding: 15px;
    border-radius: 12px;
    color: #000;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    margin-top: 10px;
    transition: transform 0.2s;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 210, 255, 0.4);
}

.group-meditation {
    background: url('../images/hp2_aligned.png') no-repeat center center/cover;
    position: relative;
    padding: 100px 0;
}

.group-meditation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 18, 0.9);
}

.meditation-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.meditation-content h2 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: #fff;
}

.dramatic-subhead {
    font-size: 1.2rem;
    color: var(--secondary-glow);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 40px;
    display: block;
}

.calendar-visual {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(0, 210, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.calendar-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-glow), var(--secondary-glow));
}

.date-badge {
    display: inline-block;
    background: var(--primary-glow);
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.calendar-visual h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 300;
}

.event-details {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    color: #bbb;
}

.event-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon {
    color: var(--secondary-glow);
}

/* --- UNIFIED NAVIGATION & MOBILE MENU (Ported from home.css) --- */
:root {
    --neon-cyan: #00f3ff;
    /* Defining for Nav compatibility */
}

.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--neon-cyan);
    opacity: 0;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-link:hover {
    color: #000;
    text-shadow: none;
}

.nav-link:hover::before {
    transform: scaleX(1);
    transform-origin: left;
    opacity: 1;
}

.nav-link.active {
    color: var(--neon-cyan);
    border: 1px solid var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.3);
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--neon-cyan);
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.nav-links {
    display: flex;
    gap: 30px;
}

@media (max-width: 768px) {
    .site-nav {
        padding: 15px 20px;
        justify-content: space-between;
        /* Align logo/toggle correctly if logo existed, or just keep spacing */
    }

    .mobile-menu-toggle {
        display: block;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        justify-content: center;
        align-items: center;
        gap: 40px;
        z-index: 1000;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .nav-links.mobile-active {
        display: flex;
        opacity: 1;
    }

    .nav-link {
        font-size: 1.5rem;
    }
}

/* --- SCROLL TO TOP BUTTON --- */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid var(--neon-cyan);
    border-radius: 50%;
    color: var(--neon-cyan);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.3);
}

.scroll-top-btn:hover {
    background: var(--neon-cyan);
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(0, 243, 255, 0.6);
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

/* =========================================
   PREMIUM MOBILE MENU STYLES (Appended for Stream Page)
   ========================================= */

/* Default: Hidden on Desktop */
.mobile-menu-toggle {
    display: none;
}

@media (max-width: 900px) {

    /* Hide the Nav Bar Background */
    .site-nav {
        background: transparent !important;
        border-bottom: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        pointer-events: none;
        /* Let clicks pass through empty space */
        padding: 5px 0 !important;
        /* Move button up slightly */
    }

    .nav-container {
        pointer-events: auto;
        /* Re-enable clicks on the button itself */
    }

    /* Hide desktop nav links */
    .nav-links {
        display: none;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        flex-direction: column;
        background: rgba(10, 10, 15, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 30px 20px;
        border-bottom: 1px solid var(--neon-cyan);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
        text-align: center;
        gap: 20px;
    }

    /* Show when active */
    .nav-links.mobile-active {
        display: flex;
        animation: fadeInDown 0.3s ease forwards;
    }

    @keyframes fadeInDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* --- THE TOGGLE BUTTON --- */
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        gap: 12px;
        background: rgba(0, 0, 0, 0.6);
        border: 1px solid rgba(0, 243, 255, 0.3);
        padding: 8px 16px;
        /* Breathing room */
        border-radius: 30px;
        /* Pill shape */
        cursor: pointer;
        transition: all 0.3s ease;
        margin-left: auto;
        /* Push to right */
        box-shadow: 0 0 15px rgba(0, 243, 255, 0.1);
        width: fit-content;
        /* Ensure button hugs content */
    }

    /* Hover State */
    .mobile-menu-toggle:hover {
        background: rgba(0, 243, 255, 0.1);
        border-color: var(--neon-cyan);
        box-shadow: 0 0 20px rgba(0, 243, 255, 0.3);
        transform: scale(1.05);
        /* Tactile feedback */
    }

    /* MENU Label */
    .menu-label {
        font-family: 'Outfit', sans-serif;
        font-size: 0.9rem;
        font-weight: 700;
        letter-spacing: 2px;
        color: #fff;
        text-shadow: 0 0 5px rgba(0, 243, 255, 0.5);
        /* Glowing text */
    }

    /* Icon Box */
    .toggle-icon-box {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        /* Circle backing */
        transition: all 0.3s ease;
    }

    .mobile-menu-toggle:hover .toggle-icon-box {
        background: var(--neon-cyan);
        box-shadow: 0 0 10px var(--neon-cyan);
    }

    .mobile-menu-toggle i {
        font-size: 1.2rem;
        color: var(--neon-cyan);
        transition: all 0.3s ease;
    }

    .mobile-menu-toggle:hover i {
        color: #000;
        /* Contrast on hover */
    }
}

/* =========================================
   PREMIUM MOBILE MENU STYLES
   ========================================= */

/* Default: Hidden on Desktop */
.mobile-menu-toggle {
    display: none;
}

@media (max-width: 900px) {

    /* Hide the Nav Bar Background */
    .site-nav {
        background: transparent !important;
        border-bottom: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        pointer-events: none;
        /* Let clicks pass through empty space */
        padding: 35px 0 !important;
        /* Ensure button is not cut off */
    }

    .nav-container {
        pointer-events: auto;
        /* Re-enable clicks on the button itself */
    }

    /* Hide desktop nav links */
    .nav-links {
        display: none;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        flex-direction: column;
        background: rgba(10, 10, 15, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 30px 20px;
        border-bottom: 1px solid var(--neon-cyan);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
        text-align: center;
        gap: 20px;
    }

    /* Show when active */
    .nav-links.mobile-active {
        display: flex;
        animation: fadeInDown 0.3s ease forwards;
    }

    @keyframes fadeInDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* --- THE TOGGLE BUTTON --- */
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        gap: 12px;
        background: rgba(0, 0, 0, 0.6);
        border: 1px solid rgba(0, 243, 255, 0.3);
        padding: 8px 16px;
        /* Breathing room */
        border-radius: 30px;
        /* Pill shape */
        cursor: pointer;
        transition: all 0.3s ease;
        margin-left: auto;
        /* Push to right */
        box-shadow: 0 0 15px rgba(0, 243, 255, 0.1);
        width: fit-content;
        /* Ensure button hugs content */
    }

    /* Hover State */
    .mobile-menu-toggle:hover {
        background: rgba(0, 243, 255, 0.1);
        border-color: var(--neon-cyan);
        box-shadow: 0 0 20px rgba(0, 243, 255, 0.3);
        transform: scale(1.05);
        /* Tactile feedback */
    }

    /* MENU Label */
    .menu-label {
        font-family: 'Outfit', sans-serif;
        font-size: 0.9rem;
        font-weight: 700;
        letter-spacing: 2px;
        color: #fff;
        text-shadow: 0 0 5px rgba(0, 243, 255, 0.5);
        /* Glowing text */
    }

    /* Icon Box */
    .toggle-icon-box {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        /* Circle backing */
        transition: all 0.3s ease;
    }

    .mobile-menu-toggle:hover .toggle-icon-box {
        background: var(--neon-cyan);
        box-shadow: 0 0 10px var(--neon-cyan);
    }

    .mobile-menu-toggle i {
        font-size: 1.2rem;
        color: var(--neon-cyan);
        transition: all 0.3s ease;
    }

    .mobile-menu-toggle:hover i {
        color: #000;
        /* Contrast on hover */
    }
}