body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-image: url('');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.container {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 80%;
    max-width: 600px;
}

.status-indicator {
    background: rgba(7, 119, 39, 0.15);
    padding: 12px 30px;
    margin: 15px auto;
    color: #077727;
    border-radius: 40px;
    font-size: 18px;
    display: inline-block;
    border: 1px dashed #077727;
    font-weight: 500;
    letter-spacing: 1px;
    backdrop-filter: blur(3px);
}

#countdown {
    font-size: 22px;
    color: #077727;
    font-weight: bold;
    margin: 25px 0 15px;
    min-height: 32px;
    text-shadow: 0 2px 6px rgba(255, 255, 255, 0.5);
}

#message {
    font-size: 34px;
    font-weight: 800;
    color: #077727;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.6);
    animation: pulse 1.8s infinite ease-in-out;
    display: inline-block;
}

@keyframes pulse {
    0% {
        opacity: 0.9;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.02);
        text-shadow: 0 0 12px #b8e0b0;
    }
    100% {
        opacity: 0.9;
        transform: scale(1);
    }
}

.tip {
    font-size: 15px;
    color: #2d5a2d;
    margin-top: 20px;
    background: rgba(255, 255, 240, 0.4);
    padding: 6px 15px;
    border-radius: 40px;
    display: inline-block;
    backdrop-filter: blur(2px);
}

@media (max-width: 768px) {
    .container {
        width: 90%;
        padding: 15px;
    }

    .status-indicator {
        font-size: 16px;
        padding: 10px 25px;
    }

    #countdown {
        font-size: 20px;
    }

    #message {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .container {
        width: 95%;
        padding: 12px;
    }

    .status-indicator {
        font-size: 15px;
        padding: 8px 18px;
    }

    #countdown {
        font-size: 18px;
    }

    #message {
        font-size: 24px;
    }
}

.btn {
    display: none;
}

.logo-container {
    text-align: center;
    margin-bottom: 15px;
}

.logo-container img {
    display: inline-block;
    max-width: 90px;
    height: auto;
    border-radius: 25%;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.logo-container img:hover {
    transform: scale(1.02);
}