:root {
    --bg-color: #0b0914;
    --text-color: #f0f0f0;
    --accent-primary: #ff2a5f;
    --accent-secondary: #9d00ff;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    width: 100%;
}

/* Background elements for depth */
body::before,
body::after {
    content: '';
    position: absolute;
    width: 40vw;
    height: 40vw;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.3;
}

body::before {
    top: -10%;
    left: -10%;
    background: var(--accent-secondary);
}

body::after {
    bottom: 10%;
    right: -10%;
    background: var(--accent-primary);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

/* Language Switcher */
.lang-switcher {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 100;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lang-btn.active {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-color: transparent;
    box-shadow: 0 0 15px rgba(255, 42, 95, 0.4);
}

/* Hero Section */
.hero {
    width: 100%;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px 40px;
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 20px;
    display: inline-block;
    box-shadow: 0 0 20px rgba(255, 42, 95, 0.5);
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, #b3b3b3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
}

.hero-desc {
    font-size: 1.2rem;
    color: #a0a0a0;
    margin-bottom: 30px;
    max-width: 600px;
}

/* Video Component */
.video-container {
    width: 100%;
    max-width: 320px;
    margin: 0 auto 40px;
    border-radius: 20px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 42, 95, 0.2);
    border: 1px solid var(--glass-border);
    position: relative;
}

.video-container video {
    width: 100%;
    max-height: 500px;
    display: block;
    object-fit: contain;
}

.video-caption {
    background: rgba(11, 9, 20, 0.9);
    color: #fff;
    padding: 12px 15px;
    font-size: 1.05rem;
    font-weight: 600;
    text-align: center;
    border-top: 1px solid rgba(255, 42, 95, 0.3);
}

/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: white;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(255, 42, 95, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 42, 95, 0.5);
}

.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 42, 95, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 42, 95, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 42, 95, 0);
    }
}

/* Section Titles */
h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 800;
    background: linear-gradient(to right, #fff, #b3b3b3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Features Grid */
.features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.feature-card {
    flex: 1 1 200px;
    max-width: 280px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

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

.feature-card .icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #eaeaea;
}

/* How It Works */
.glass-section {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(0, 0, 0, 0) 100%);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.steps-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 180px;
}

.step-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 2px solid var(--accent-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-secondary);
    margin-bottom: 15px;
    box-shadow: 0 0 20px rgba(157, 0, 255, 0.2);
    position: relative;
    z-index: 2;
}

.step p {
    font-size: 1.1rem;
    color: #ccc;
    font-weight: 600;
}

.step-connector {
    flex: 1;
    height: 2px;
    background: var(--glass-border);
    margin-top: 30px;
    min-width: 50px;
    max-width: 100px;
}

/* Engagement Section */
.engagement-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    padding: 60px 40px;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
    box-shadow: inset 0 0 50px rgba(255, 42, 95, 0.1);
}

.engagement-content p {
    font-size: 1.2rem;
    color: #a0a0a0;
    margin-top: 20px;
}

/* Trust Section */
.trust-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.trust-item {
    display: flex;
    flex: 1 1 250px;
    max-width: 320px;
    align-items: center;
    gap: 15px;
    background: var(--glass-bg);
    backdrop-filter: blur(5px);
    padding: 20px 30px;
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.trust-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: scale(1.02);
}

.check-icon {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: white;
    min-width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

/* Final CTA */
.final-cta {
    text-align: center;
}

/* Footer */
footer {
    text-align: center;
    padding: 30px 0;
    color: #666;
    border-top: 1px solid var(--glass-border);
    font-size: 0.9rem;
}

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

    .step-connector {
        display: none;
    }

    .steps-container {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    h2 {
        font-size: 2rem;
    }

    body::before,
    body::after {
        width: 80vw;
        height: 80vw;
    }
}