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

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: #ffffff;
    color: #000000;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Notification Bar */
.notification-bar {
    background-color: #000000;
    color: #ffffff;
    text-align: center;
    padding: 10px 0;
    font-size: 14px;
    overflow: hidden; /* Ensure animation doesn't overflow if sliding */
}

.notification-bar p {
    opacity: 0; /* Start invisible for animation */
    animation: slideDownFadeIn 0.8s ease-out forwards;
}

.notification-bar strong {
    font-weight: bold;
}

/* Animations */
@keyframes slideDownFadeIn {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Main Container */
.container {
    flex: 1;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Logo Section */
.logo-section {
    margin-top: 20px;
    margin-bottom: 30px;
}

.logo {
    font-size: 64px;
    font-weight: bold;
    letter-spacing: 5px;
    margin-bottom: 5px;
}

.subtitle {
    font-size: 24px;
    font-weight: normal;
}

/* How it Works Section */
.how-it-works {
    width: 100%;
    margin-bottom: 40px;
}

.how-it-works h2 {
    font-size: 14px;
    font-weight: normal;
    margin-bottom: 15px;
    text-transform: capitalize;
}

.steps-list {
    list-style: none;
    width: 100%;
    max-width: 300px; /* Constrain width to match image look */
    margin: 0 auto;
}

.steps-list li {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 16px;
}

.steps-list li:last-child {
    border-bottom: none;
}

.step-number {
    background-color: #000000;
    color: #ffffff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0; /* Prevent shrinking on small screens */
}

.step-text {
    text-align: left;
}

/* Reward Section */
.reward-section {
    margin-top: 10px;
}

.reward-amount {
    font-size: 64px;
    font-weight: 900;
    margin-bottom: 5px;
}

.reward-desc {
    font-size: 14px;
    margin-bottom: 20px;
}

.cta-link {
    text-decoration: none;
    display: inline-block;
    width: 100%;
    max-width: 300px;
}

.cta-button {
    background-color: #000000;
    color: #ffffff;
    border: none;
    padding: 15px 40px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
    /* max-width is handled by the parent link */
}

.cta-button:hover {
    background-color: #333333;
}

/* Responsive Design for Mobile */
@media (max-width: 480px) {
    .logo {
        font-size: 48px;
        letter-spacing: 3px;
    }

    .subtitle {
        font-size: 20px;
    }

    .container {
        padding: 15px;
    }

    .steps-list {
        max-width: 100%;
    }

    .reward-amount {
        font-size: 48px;
    }

    .cta-button {
        padding: 15px 20px;
        font-size: 18px;
    }
    
    .notification-bar {
        font-size: 12px;
    }
}
