:root {
    --primary-color: #ff00ff;
    /* Neon Pink */
    --secondary-color: #00ffff;
    /* Cyan */
    --accent-color: #bc13fe;
    /* Electric Purple */
    --bg-dark: #050510;
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glow-primary: 0 0 10px var(--primary-color), 0 0 20px var(--primary-color);
    --glow-secondary: 0 0 10px var(--secondary-color), 0 0 20px var(--secondary-color);
}

body {
    background: var(--bg-dark);
    /* Override style.css gradient */
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    /* Retro Grid Background REMOVED */
    /* background-image: 
        linear-gradient(rgba(188, 19, 254, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(188, 19, 254, 0.1) 1px, transparent 1px);
    background-size: 40px 40px; */
    background-position: center top;
}

/* --- NAVIGATION --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    position: absolute;
    width: 100%;
    z-index: 100;
    box-sizing: border-box;
    background: linear-gradient(to bottom, rgba(5, 5, 16, 0.9), transparent);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 50px;
    filter: drop-shadow(0 0 5px var(--secondary-color));
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    position: relative;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link:hover {
    color: var(--secondary-color);
    text-shadow: 0 0 8px var(--secondary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--secondary-color);
    transition: width 0.3s;
    box-shadow: 0 0 8px var(--secondary-color);
}

.nav-link:hover::after {
    width: 100%;
}

/* --- HERO SECTION --- */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding-top: 80px;
    /* For navbar */
    overflow: hidden;
}

/* Background Gradients/Effects */
.hero-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(188, 19, 254, 0.2) 0%, transparent 70%);
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    filter: blur(80px);
}

.hero-title {
    font-family: 'Righteous', cursive;
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    background: linear-gradient(to right, #ffffff 20%, #e0e0e0 50%, #ffffff 80%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    /* Fallback */
    color: white;
    /* Simpler for now, text-shadow does the heavy lifting */
    text-shadow:
        0 0 10px rgba(255, 0, 255, 0.7),
        0 0 20px rgba(255, 0, 255, 0.5),
        0 0 40px rgba(255, 0, 255, 0.3);
    animation: glowText 2s infinite alternate;
}

@keyframes glowText {
    from {
        text-shadow: 0 0 10px rgba(255, 0, 255, 0.7), 0 0 20px rgba(255, 0, 255, 0.5);
    }

    to {
        text-shadow: 0 0 20px rgba(255, 0, 255, 0.9), 0 0 30px rgba(255, 0, 255, 0.7), 0 0 50px rgba(255, 0, 255, 0.5);
    }
}

.hero-title span {
    color: var(--secondary-color);
    text-shadow: none;
    display: block;
    font-size: 2.5rem;
    letter-spacing: 5px;
    margin-top: 10px;
}

p.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 50px;
    line-height: 1.6;
    letter-spacing: 0.5px;
}

/* --- CARDS --- */
.cards-row {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    z-index: 2;
}

.choice-card {
    background: rgba(20, 20, 30, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.choice-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.5;
    pointer-events: none;
}

.choice-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 0 30px rgba(188, 19, 254, 0.3);
    border-color: var(--primary-color);
}

.choice-card.join:hover {
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
    border-color: var(--secondary-color);
}


.card-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

.card-title {
    font-family: 'Righteous', cursive;
    font-size: 1.8rem;
    color: white;
    margin: 10px 0;
    text-transform: uppercase;
}

.card-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 30px;
    line-height: 1.5;
}

.card-btn {
    margin-top: auto;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    background: transparent;
    border: 2px solid white;
    color: white;
}

.choice-card.host .card-btn {
    border-color: var(--primary-color);
    color: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-color) inset, 0 0 10px var(--primary-color);
}

.choice-card.host:hover .card-btn {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 0 20px var(--primary-color), 0 0 40px var(--primary-color);
}

.choice-card.join .card-btn {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    box-shadow: 0 0 10px var(--secondary-color) inset, 0 0 10px var(--secondary-color);
}

.choice-card.join:hover .card-btn {
    background: var(--secondary-color);
    color: #000;
    box-shadow: 0 0 20px var(--secondary-color), 0 0 40px var(--secondary-color);
}

/* --- HOW IT WORKS / PREMIUM (Keeping it simpler for brevity but styled) --- */
.section-title {
    font-family: 'Righteous', cursive;
    font-size: 3rem;
    text-align: center;
    margin: 80px 0 40px;
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.section-title span {
    color: var(--secondary-color);
    text-shadow: none;
}

/* --- HOW IT WORKS SECTION --- */
.how-it-works {
    position: relative;
    padding: 100px 20px;
    background: #080815;
    /* Slightly lighter than body */
    text-align: center;
    overflow: hidden;
}

.how-it-works-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.steps-container {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
    transition: transform 0.3s, background 0.3s;
    position: relative;
    overflow: hidden;
}

.step-card:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--secondary-color);
    box-shadow: -5px 0 15px rgba(0, 255, 255, 0.1);
}

.step-number-container {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.1);
    min-width: 60px;
}

.step-card:hover .step-number-container {
    color: var(--secondary-color);
    text-shadow: 0 0 10px var(--secondary-color);
}

.step-content {
    z-index: 1;
}

.step-title {
    font-family: 'Righteous', cursive;
    color: white;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.step-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.4;
}

.step-icon-bg {
    font-size: 3rem;
    position: absolute;
    right: 20px;
    bottom: -10px;
    opacity: 0.1;
    transform: rotate(-20deg);
}

/* Phone Mockup Area */
.phone-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.phone-mockup {
    width: 280px;
    height: 560px;
    background: black;
    border-radius: 40px;
    border: 8px solid #222;
    box-shadow: 0 0 0 4px var(--secondary-color), 0 0 20px rgba(0, 255, 255, 0.3);
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 25px;
    background: #222;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    z-index: 3;
}

.slideshow-container {
    width: 100%;
    height: 100%;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- PREMIUM SECTION --- */
.premium-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, #050510 0%, #1a0b2e 100%);
    text-align: center;
    position: relative;
}

.pricing-table {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    width: 300px;
    text-align: left;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.06);
}

.pricing-card .price-title {
    font-family: 'Righteous', cursive;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.pricing-card .price {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 30px;
}

.pricing-card .price span {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: normal;
}

.features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.features-list li {
    color: var(--text-secondary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

/* Featured Card (Neon Style) */
.pricing-card.featured {
    border: 2px solid var(--primary-color);
    background: rgba(20, 0, 20, 0.6);
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.2);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
    box-shadow: 0 0 50px rgba(255, 0, 255, 0.4);
}

.badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    font-weight: bold;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    box-shadow: 0 0 10px var(--primary-color);
}

.btn-secondary {
    padding: 12px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-secondary:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
}

.btn-primary {
    padding: 12px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 0 0 15px var(--primary-color);
    transition: 0.3s;
}

.btn-primary:hover {
    box-shadow: 0 0 25px var(--primary-color);
    transform: scale(1.02);
}

/* --- FOOTER FULL --- */
footer {
    padding: 80px 20px 40px;
    background: #020205;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.footer-contact {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 1.2rem;
    padding: 10px 25px;
    border: 1px solid var(--secondary-color);
    border-radius: 30px;
    transition: all 0.3s;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.2) inset;
}

.footer-contact:hover {
    background: var(--secondary-color);
    color: #000;
    box-shadow: 0 0 20px var(--secondary-color);
}

.footer-info {
    text-align: center;
    color: var(--text-secondary);
}

.company-name {
    font-family: 'Orbitron', sans-serif;
    color: white;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
}

/* Auth Modal Styles (Minimal updates to match theme) */
.glass-panel {
    background: rgba(10, 10, 20, 0.9) !important;
    border: 1px solid var(--primary-color) !important;
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.2) !important;
}

/* Mobile Responsiveness - Layout Adjustments */
@media (max-width: 768px) {
    .how-it-works-content {
        flex-direction: column-reverse;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .hero-title {
        font-size: 3rem;
        text-shadow: none;
        animation: none;
        background: transparent;
        -webkit-background-clip: unset;
        background-clip: unset;
        color: white;
    }

    .hero-title span {
        font-size: 1.5rem;
        text-shadow: none;
    }

    .section-title {
        text-shadow: none;
    }

    .section-title span {
        text-shadow: none;
    }

    .cards-row {
        flex-direction: column;
        align-items: center;
    }
}

/* --- HAMBURGER MENU --- */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    z-index: 200;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    box-shadow: 0 0 5px var(--primary-color);
    transition: all 0.3s;
    border-radius: 2px;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .navbar {
        position: relative;
        flex-direction: row;
        padding: 20px;
        justify-content: space-between;
        align-items: center;
        background: rgba(5, 5, 16, 0.95);
    }

    .logo-container {
        margin-bottom: 0;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(5, 5, 16, 0.98);
        flex-direction: column;
        gap: 0;
        align-items: center;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-in-out;
        border-bottom: 1px solid var(--primary-color);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    }

    .nav-links.active {
        max-height: 300px;
        padding: 20px 0;
    }

    .nav-link {
        font-size: 1.2rem;
        padding: 15px;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        display: block;
    }

    .logo-img {
        height: 50px;
    }

    /* Burger Animation */
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}