* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: linear-gradient(135deg, #6b21a8, #ec4899);
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Glassmorphism */
.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* Fade-in Animation */
.benefits, .how-it-works, .why-it-works, .final-cta {
    opacity: 0;
    animation: fadeIn 1s forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* Header */
header {
    position: fixed;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8em;
}

header .cta-button {
    font-size: 1em;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures video fills section without distortion */
    object-position: center;
    filter: blur(5px); /* Subtle blur for readability */
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(107, 33, 168, 0.5), rgba(236, 72, 153, 0.5)); /* Theme-colored overlay */
    z-index: -1;
}

.hero h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 3em;
    margin-bottom: 20px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
    color: #fff;
    z-index: 1;
}

.hero p {
    font-size: 1.2em;
    max-width: 600px;
    margin: 0 auto 30px;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.6);
    color: #f3f4f6;
    z-index: 1;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #6b21a8, #ec4899);
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
    z-index: 1;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Store Badges */
.store-badges {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    z-index: 1;
}

.store-badges a {
    transition: transform 0.3s;
}

.store-badges img {
    height: 40px;
    width: auto;
    transition: transform 0.3s;
}

.store-badges a:hover img {
    transform: scale(1.1);
}

/* Benefits Section */
.benefits {
    padding: 80px 20px;
    text-align: center;
    animation-delay: 0.2s;
}

.benefits h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5em;
    margin-bottom: 40px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.benefit-card {
    padding: 20px;
    text-align: center;
}

.benefit-card h4 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 1em;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 20px;
    background: rgba(0, 0, 0, 0.2);
    animation-delay: 0.4s;
}

.how-it-works h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5em;
    margin-bottom: 40px;
    text-align: center;
}

.steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.step {
    flex: 1;
    min-width: 200px;
    padding: 20px;
    text-align: center;
}

.step span {
    display: inline-block;
    background: #ec4899;
    color: #fff;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.step p {
    font-size: 1.1em;
}

/* Why It Works Section */
.why-it-works {
    padding: 60px 20px;
    text-align: center;
    animation-delay: 0.6s;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.why-card {
    padding: 20px;
    text-align: center;
}

.why-card i {
    font-size: 2.5em;
    color: #ec4899;
    margin-bottom: 15px;
}

.why-card h4 {
    font-size: 1.5em;
}

.why-card p {
    font-size: 1em;
}

/* Final CTA Section */
.final-cta {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(45deg, #6b21a8, #ec4899);
    animation-delay: 0.8s;
}

.final-cta h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5em;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.final-cta .cta-button {
    background: #fff;
    color: #6b21a8;
}

.final-cta .cta-button:hover {
    background: #f3f4f6;
}

/* Footer */
footer {
    padding: 20px 0;
    text-align: center;
}

footer a {
    color: #ec4899;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Warning Section */
.warning {
    display: none; /* Hidden by default, shown via JS on desktop */
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, #6b21a8, #ec4899); /* Matches body background */
    padding: 20px;
}

.warning h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5em;
    margin-bottom: 20px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
    color: #fff;
}

.warning p {
    font-size: 1.2em;
    max-width: 600px;
    margin: 0 auto 30px;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.6);
    color: #f3f4f6;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    header h1 {
        font-size: 1.5em;
    }

    .hero h2 {
        font-size: 2em;
    }

    .hero p {
        font-size: 1em;
    }

    .benefits h3,
    .how-it-works h3,
    .why-it-works h3,
    .final-cta h3 {
        font-size: 1.8em;
    }

    .steps {
        flex-direction: column;
    }

    .why-card i {
        font-size: 2em;
    }

    .store-badges {
        gap: 10px;
    }

    .store-badges img {
        height: 35px;
    }
}