:root {
    --hero-gradient: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    --card-glass: rgba(255, 255, 255, 0.05);
    --card-border: rgba(255, 255, 255, 0.1);
}

body {
    /* Reset body flex from global style if needed, but we'll use block layout for sections */
    display: block;
    overflow-x: hidden;
    background: #0f0f13;
    font-family: 'Outfit', sans-serif;
}

/* --- NAVIGATION --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: white;
}

/* --- LANG SWITCHER --- */
.lang-switcher {
    display: flex;
    gap: 10px;
    margin-left: 20px;
}

.lang-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.2s;
    opacity: 0.7;
}

.lang-btn:hover {
    transform: scale(1.2);
    opacity: 1;
}

/* --- HERO SECTION --- */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 100px 20px 60px;
    background: radial-gradient(circle at 50% 30%, #2a1b3d 0%, #0f0f13 70%);
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, #b0bec5);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-title span {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 60px;
    line-height: 1.6;
}

/* --- ACTION CARDS --- */
.cards-row {
    display: flex;
    gap: 40px;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    /* perspective: 1000px; REMOVED to prevent rendering crash */
}

.choice-card {
    background: var(--card-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--card-border);
    border-radius: 30px;
    padding: 50px 40px;
    width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.choice-card:hover {
    transform: translateY(-15px) scale(1.03);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.choice-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transform: translateX(-100%);
    transition: 0.5s;
}

.choice-card:hover::before {
    transform: translateX(100%);
}

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

.card-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.card-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.card-btn {
    margin-top: auto;
    padding: 12px 30px;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.3s;
}

.choice-card.host .card-btn {
    background: linear-gradient(45deg, var(--secondary-color), #7c4dff);
    color: white;
    box-shadow: 0 5px 15px rgba(101, 31, 255, 0.3);
}

.choice-card.join .card-btn {
    background: linear-gradient(45deg, var(--primary-color), #00bfa5);
    color: #000;
    box-shadow: 0 5px 15px rgba(0, 230, 118, 0.3);
}

/* --- HOW IT WORKS SECTION --- */
.how-it-works {
    padding: 100px 20px;
    background: #121212;
    text-align: center;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 60px;
    color: white;
}

.section-title span {
    color: var(--primary-color);
}

.steps-container {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.step-item {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.step-number {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    z-index: 0;
    transform: translateY(-20px);
}

.step-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    z-index: 1;
    background: #1e1e1e;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
}

.step-title {
    font-size: 1.5rem;
    color: white;
    font-weight: 700;
    z-index: 1;
}

.step-desc {
    color: var(--text-secondary);
    line-height: 1.6;
    z-index: 1;
}

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

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

.pricing-card {
    background: var(--card-glass);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 40px;
    width: 300px;
    text-align: left;
    position: relative;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
}

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

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    background: rgba(30, 30, 30, 0.8);
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 230, 118, 0.15);
}

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

.badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--primary-color);
    color: black;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.price-title {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 10px;
}

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

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

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

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

.features-list li i {
    color: var(--primary-color);
}

/* --- FOOTER --- */
footer {
    padding: 40px 20px;
    text-align: center;
    color: var(--text-secondary);
    border-top: 1px solid var(--border-color);
    background: #0f0f13;
}

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

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

    .navbar {
        position: relative;
        flex-direction: column;
        gap: 20px;
    }

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

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
}