body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background-color: #f0f0f0;
    padding: 20px;
    box-sizing: border-box;
}

#funnyButton {
    padding: 20px 40px;
    font-size: clamp(18px, 5vw, 24px);
    cursor: pointer;
    margin-bottom: 20px;
    background-color: #ff6f61;
    color: white;
    border: none;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    width: fit-content;
    max-width: 90%;
    text-align: center;
}

#funnyButton:hover {
    background-color: #ff3b2f;
}
.video-player {
    display: none;
    width: 100%;
    max-width: 800px;
    aspect-ratio: 16/9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 768px) {
    body {
        padding: 10px;
    }

    #funnyButton {
        padding: 15px 30px;
        width: 90%;
        max-width: none;
    }

    .video-player {
        width: 95vw;
        height: auto;
        min-height: 300px;
        margin: 0 auto;
    }

    .video-player iframe {
        width: 100%;
        height: 100%;
        min-height: 300px;
    }
}

@media screen and (max-width: 480px) {
    .video-player {
        width: 100vw;
        min-height: 250px;
    }

    .video-player iframe {
        min-height: 250px;
    }
}.video-player iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}

@media screen and (max-width: 480px) {
    #funnyButton {
        padding: 12px 24px;
    }
}
#countdown {
    font-family: Arial, sans-serif;
    color: #333;
    font-weight: bold;
}