/* How to Play Section */
.how-to-play-section {
    background-color: var(--primary-yellow);
    padding: 60px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.how-to-play-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.how-to-play-title {
    font-family: var(--font-main);
    font-size: 6rem;
    text-align: center;
    color: #ffffff;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 3px 3px 0px #000;
    -webkit-text-stroke: 2px black;
}

/* Countdown Timer Styles */
.countdown-timer {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.timer-label {
    font-family: var(--font-main);
    font-size: 2rem;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.timer-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
    margin-top: 30px;
    margin-bottom: 30px;
}

.timer-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.timer-value {
    font-family: var(--font-main);
    font-size: 4rem;
    color: var(--btn-bg);
    line-height: 1;
    min-width: 100px;
    text-align: center;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.1);
}

.timer-text {
    font-family: var(--font-main);
    font-size: 0.9rem;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timer-separator {
    font-family: var(--font-main);
    font-size: 4rem;
    color: var(--btn-bg);
    line-height: 1;
    font-weight: bold;
}

.play-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}

.play-step {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.step-number {
    font-family: var(--font-main);
    font-size: 3rem;
    color: var(--btn-bg);
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.2);
    line-height: 1;
}

.play-step-title {
    font-family: var(--font-main);
    font-size: 2rem;
    color: var(--text-color);
    margin: 0;
    text-transform: capitalize;
}

.play-step-description {
    font-family: var(--font-main);
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .how-to-play-section {
        padding: 50px;
    }

    .how-to-play-title {
        font-size: 3rem;
        text-shadow: 2px 2px 0px #000;
        -webkit-text-stroke: 1.5px black;
        margin-bottom: 40px;
    }

    .card-background {
        padding: 20px 30px;
    }

    .step-number {
        font-size: 2.5rem;
    }

    .play-step-title {
        font-size: 1.5rem;
    }

    .play-step-description {
        font-size: 1rem;
    }

    .timer-label {
        font-size: 1.5rem;
    }

    .timer-value {
        font-size: 3rem;
        min-width: 80px;
    }

    .timer-text {
        font-size: 0.75rem;
    }

    .timer-separator {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .how-to-play-title {
        font-size: 2rem;
        -webkit-text-stroke: 1px black;
    }

    .card-background {
        padding: 15px 20px;
    }

    .step-number {
        font-size: 2rem;
    }

    .play-step-title {
        font-size: 1.3rem;
    }

    .play-step-description {
        font-size: 0.95rem;
    }

    .timer-label {
        font-size: 1.2rem;
    }

    .timer-value {
        font-size: 2.5rem;
        min-width: 70px;
    }

    .timer-text {
        font-size: 0.65rem;
    }

    .timer-separator {
        font-size: 2.5rem;
    }
}