* {
    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 */
.hero {
    opacity: 0;
    animation: fadeIn 1s forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.sweatcoin-logo {
    max-width: 250px;
    margin-bottom: 30px;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.sweatcoin-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(236, 72, 153, 0.5);
}

.hero h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5em;
    margin-bottom: 10px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
}

.hero h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8em;
    margin-bottom: 20px;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.6);
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 20px;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.6);
}

.eligibility {
    font-size: 1em;
    max-width: 600px;
    margin: 0 auto 30px;
}

.countdown {
    margin: 20px 0;
}

.countdown h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8em;
    margin-bottom: 10px;
}

.timer {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 10px;
    font-size: 1em;
    white-space: nowrap;
}

.timer div {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 12px;
    border-radius: 8px;
    min-width: 60px;
    text-align: center;
}

.timer span {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5em;
    display: block;
}

.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;
    margin-bottom: 40px;
}

.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); }
}

.instructions {
    max-width: 600px;
    margin: 0 auto 50px;
    padding: 20px;
    text-align: left;
}

.instructions h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5em;
    margin-bottom: 15px;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.6);
}

.instructions ol {
    list-style-position: inside;
    font-size: 1em;
}

.instructions li {
    margin-bottom: 10px;
}

/* 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) {
    .hero h2 {
        font-size: 2em;
    }

    .hero h3 {
        font-size: 1.5em;
    }

    .hero p {
        font-size: 1em;
    }

    .eligibility {
        font-size: 0.9em;
    }

    .countdown h3 {
        font-size: 1.5em;
    }

    .timer {
        gap: 8px;
        font-size: 0.9em;
    }

    .timer div {
        padding: 6px 10px;
        min-width: 50px;
    }

    .timer span {
        font-size: 1.2em;
    }

    .sweatcoin-logo {
        max-width: 200px;
    }

    .cta-button {
        margin-bottom: 30px;
    }

    .instructions {
        margin-bottom: 40px;
        padding: 15px;
    }

    .instructions h3 {
        font-size: 1.3em;
    }

    .instructions ol {
        font-size: 0.9em;
    }

    .warning h2 {
        font-size: 2em;
    }

    .warning p {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .timer {
        gap: 6px;
        font-size: 0.8em;
    }

    .timer div {
        padding: 5px 8px;
        min-width: 45px;
    }

    .timer span {
        font-size: 1em;
    }

    .sweatcoin-logo {
        max-width: 180px;
    }

    .cta-button {
        margin-bottom: 20px;
    }

    .instructions {
        margin-bottom: 30px;
        padding: 10px;
    }
}