:root {
    --primary-color: #FFD100; /* 99 Yellow */
    --text-dark: #1A1A1A;
    --text-light: #FFFFFF;
    --bg-dark: #111111;
    --bg-card: #222222;
    --accent-green: #25D366; /* WhatsApp Green */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: var(--primary-color);
}

.logo-container {
    background: var(--text-dark);
    padding: 5px 15px;
    border-radius: 8px;
}

.logo {
    color: var(--primary-color);
    font-weight: 800;
    font-size: 1.5rem;
}

.location-badge {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
    background: rgba(0,0,0,0.1);
    padding: 5px 10px;
    border-radius: 20px;
}

/* Hero Section */
.hero {
    padding: 60px 20px;
    text-align: center;
    background: linear-gradient(180deg, #1a1a1a 0%, #111111 100%);
}

.hero-content {
    max-width: 600px;
    margin: 0 auto;
}

.hero h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight {
    color: var(--primary-color);
    display: block;
    font-size: 2.8rem;
    margin-top: 10px;
}

.subtitle {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 40px;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--text-dark);
    font-size: 1.2rem;
    font-weight: 800;
    text-decoration: none;
    padding: 18px 30px;
    border-radius: 30px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(255, 209, 0, 0.3);
    transition: transform 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
}

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

@keyframes pulse-animation {
    0% { box-shadow: 0 0 0 0 rgba(255, 209, 0, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(255, 209, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 209, 0, 0); }
}

.whatsapp-button {
    display: inline-block;
    background-color: var(--accent-green);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    padding: 15px 25px;
    border-radius: 8px;
    margin-top: 15px;
    transition: background-color 0.3s;
}

.whatsapp-button:hover {
    background-color: #1ebe5d;
}

/* Steps Section */
.how-it-works {
    padding: 50px 20px;
    text-align: center;
    background-color: #1a1a1a;
}

.how-it-works h3 {
    font-size: 1.8rem;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.step {
    background-color: var(--bg-card);
    padding: 25px;
    border-radius: 12px;
    position: relative;
    text-align: left;
    border: 1px solid #333;
}

.step-number {
    position: absolute;
    top: -15px;
    left: -15px;
    background-color: var(--primary-color);
    color: var(--text-dark);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 800;
}

.step h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #fff;
}

.step p {
    color: #aaa;
    font-size: 0.95rem;
}

/* Terms Section */
.terms {
    padding: 40px 20px;
    display: flex;
    justify-content: center;
}

.terms-card {
    background-color: rgba(255, 0, 0, 0.1);
    border-left: 4px solid #ff4444;
    padding: 20px;
    border-radius: 4px;
    max-width: 600px;
}

.terms-card h3 {
    color: #ff4444;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.terms-card ul {
    margin-left: 20px;
}

.terms-card li {
    color: #ddd;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

/* Support */
.support {
    text-align: center;
    padding: 40px 20px;
    background-color: #1a1a1a;
}

.support h3 {
    margin-bottom: 10px;
}

.support p {
    color: #aaa;
    margin-bottom: 20px;
}

/* Footer */
footer {
    text-align: center;
    padding: 30px 20px;
    font-size: 0.8rem;
    color: #666;
    background-color: var(--bg-dark);
}

@media (min-width: 768px) {
    .hero h2 { font-size: 3rem; }
    .highlight { font-size: 4rem; }
    .steps-container {
        flex-direction: row;
        max-width: 900px;
    }
}
