body {
    font-family: Arial, sans-serif;
    background: #111;
    color: #eee;
    text-align: center;
    padding: 40px;
}

.header-text {
    margin-bottom: 10px;
    font-size: 30px;
}

.start-time {
    font-size: 22px;
    margin-bottom: 20px;
    color: #ccc;
}

.count-time {
    font-size: 60px;
    font-weight: bold;
    color: #fd2e2e;
    margin: 20px 0;
    text-shadow: 1px 1px 1px #fdd6d6;
}

#video {
    display: none;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

.hidden {
    display: none;
}

.video-container {
    position: relative;
    display: inline-block;
}

#video {
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

/* Overlay widget */
.viewer-count {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    pointer-events: none;
}

@media (max-width: 700px) {
    body {
        padding: 40px 10px;
    }

    .header-text h1 {
        font-size: 50px;
    }

    .start-time {
        font-size: 24px;
    }

    .count-time {
        font-size: 60px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 40px 10px;
    }

    .header-text h1 {
        font-size: 36px;
    }

    .start-time {
        font-size: 20px;
    }

    .count-time {
        font-size: 40px;
    }
}