/* Responsive Styles for responsive-style.php */

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    text-align: center;
    font-size: 1.2em;
    margin: 0;
    padding: 0;
    background-color: #E4ECFF;
}

img {
    max-width: 100%;
    height: auto;
}

.countdown {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #555;
}

.countdown-bar-container {
    width: 100%;
    height: 10px;
    background-color: #E4ECFF;
    margin: 0 auto 0 auto;
    overflow: hidden;
}

.countdown-bar {
    height: 10px;
    background-color: #2AE16D;
    animation: countdownAnim 60s linear forwards;
}

@keyframes countdownAnim {
    from { width: 100%; }
    to { width: 0%; }
}

@media (max-width: 768px) {
    body {
        margin: 0;
        font-size: 1.2em;
    }

    .countdown {
        font-size: 1.4em;
    }
}

@media (max-width: 480px) {
    body {
        margin: 0;
        font-size: 1.2em;
    }

    .countdown {
        font-size: 1.4em;
    }
}
