body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #000;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

#bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* This makes it fill the screen, cropping appropriately */
    z-index: 1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none; /* Let clicks pass through to video if needed */
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Align bottom like TikTok overlays */
    align-items: center;
    padding-bottom: 50px;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent 20%);
}

.counter-container {
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    padding: 10px 20px;
    border-radius: 20px;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
    margin-bottom: 20px;
}
