/* Global reset to ensure no margins or borders */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



html, body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #000;
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
}

body {
    display: flex;
    justify-content: center;
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
}

video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: translate(-50%, -50%);
    background-color: #000;
    min-height: 100vh; /* Ensure video covers full viewport height */
}

/* Mobile video display */
@media (max-width: 768px) {
    video {
        width: 100vw;
        height: 100vh;
        object-position: center;
    }
}

.countdown_container {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.countdown_container::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0.8;
    border-radius: 50%;
}

.countdown_text {
    position: relative;
    color: white;
    font-size: 24px;
}

.points_message_container {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 8px 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.points_message_container::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0.8;
    border-radius: 20px;
}

.points_message_text {
    position: relative;
    color: white;
    font-size: 14px;
    white-space: nowrap;
} 
