:root {
    --black: #000000;
    --purple: #1d003d;
    --white: #ffffff;
    --text-gray: #dddddd;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, var(--black) 0%, var(--purple) 100%);
    color: var(--white);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    max-width: 600px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Header */
header {
    margin-bottom: 10px;
}

.main-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    line-height: 1;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.subtitle-box {
    display: inline-block;
    border: 2px solid #5d2a8b; /* Lighter purple for visibility */
    background-color: rgba(29, 0, 61, 0.5);
    padding: 5px 15px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

/* Hero */
.hero h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.hero p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-gray);
    font-weight: 400;
}

/* Steps */
.steps-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px 0;
}

.step-card {
    border: 2px solid var(--white);
    border-radius: 10px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
    background-color: rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
}

.step-card:hover {
    transform: translateY(-2px);
    background-color: rgba(255, 255, 255, 0.05);
}

.step-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    line-height: 1;
    min-width: 40px;
}

.step-icon {
    font-size: 2.5rem;
    min-width: 40px;
    text-align: center;
}

.step-content h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 3px;
}

.step-content p {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--text-gray);
    line-height: 1.3;
}

/* CTA Section */
.cta-section {
    margin: 10px 0;
}

/* Specific anchor styling to override defaults */
a.cta-button,
a.cta-button:link,
a.cta-button:visited,
a.cta-button:hover,
a.cta-button:active {
    text-decoration: none !important;
    display: inline-block;
}

.cta-button {
    display: inline-block;
    text-decoration: none !important;
    text-align: center;
    background-color: var(--white);
    color: var(--black);
    border: none;
    padding: 15px 30px;
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 10px;
    cursor: pointer;
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
    text-decoration: none !important;
}

.member-count {
    margin-top: 40px;
    font-style: italic;
    font-weight: 400;
    font-size: 1rem;
    display: block; /* Ensure it respects margin */
}

/* Footer Stats */
.footer-stats {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.stats-row {
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.stats-row strong {
    font-weight: 800;
}

.divider {
    margin: 0 10px;
    opacity: 0.7;
}

/* App Buttons */
.app-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: transparent; /* Or black as per standard, but design looks transparent/dark */
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 8px 15px;
    text-decoration: none;
    color: var(--white);
    transition: background-color 0.2s;
    min-width: 160px;
    background-color: #000; /* Usually these are black */
}

.store-btn:hover {
    background-color: #1a1a1a;
}

.store-btn i {
    font-size: 1.8rem;
}

.store-btn .btn-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.store-btn .small-text {
    font-size: 0.6rem;
    text-transform: uppercase;
}

.store-btn .big-text {
    font-size: 1rem;
    font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .main-title {
        font-size: 4rem;
    }
    
    .hero h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    body {
        padding: 15px;
    }

    .main-title {
        font-size: 3rem;
    }
    
    .subtitle-box {
        font-size: 1rem;
        padding: 4px 12px;
    }

    .hero h2 {
        font-size: 1.4rem;
    }

    .hero p {
        font-size: 1rem;
    }
    
    .step-card {
        padding: 12px 15px;
        gap: 12px;
    }
    
    .step-number {
        font-size: 2rem;
        min-width: 30px;
    }

    .step-icon {
        font-size: 1.8rem;
        min-width: 30px;
    }
    
    .step-content h3 {
        font-size: 1.1rem;
    }

    .step-content p {
        font-size: 0.85rem;
    }
    
    .cta-button {
        font-size: 1.1rem;
        padding: 12px 20px;
    }

    .footer-stats .stats-row {
        font-size: 0.95rem;
    }

    .app-buttons {
        gap: 10px;
        flex-direction: column;
        align-items: center;
    }

    .store-btn {
        width: 100%;
        max-width: 280px; /* Limit width so they don't look too stretched */
        justify-content: center;
    }
}
