/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Loader */
#loader {
    position: fixed;
    inset: 0;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.spinner {
    width: 70px;
    height: 70px;
    border: 6px solid rgba(255,255,255,0.2);
    border-top: 6px solid #ff4fd8;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Video pozadí (optimalizace pro mobil) */
#bg-video {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    pointer-events: none;
}

/* Obrázek uprostřed – responsivní */
.center-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.center-image img {
    width: clamp(50%); /* responzivní velikost */
    height: auto;
    display: block;
}

/* Mobilní optimalizace */
@media (max-width: 768px) {

    .spinner {
        width: 55px;
        height: 55px;
    }

    #bg-video {
        /* lepší výkon na mobilech */
        object-fit: cover;
    }
}