* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #eeeeee;
    font-size: 13px;
    background: #ffffff;
}

/*[ sld ]*/
.background-slider {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: 0;
}

.background-slide {
    flex: 0 0 100vw;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.background-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    user-select: none;
    pointer-events: none;
}

.background-track {
    display: flex;
    height: 100vh;
    width: max-content;
    animation: slide 25s linear infinite;
    will-change: transform;
}

@keyframes slide {
    0%,
    18.9474% {
        transform: translate3d(0, 0, 0);
    }
    
    20% {
        transform: translate3d(-100vw, 0, 0);
    }
    
    38.9474% {
        transform: translate3d(-100vw, 0, 0);
    }
    
    40% {
        transform: translate3d(-200vw, 0, 0);
    }
    
    58.9474% {
        transform: translate3d(-200vw, 0, 0);
    }
    
    60% {
        transform: translate3d(-300vw, 0, 0);
    }
    
    78.9474% {
        transform: translate3d(-300vw, 0, 0);
    }
    
    80% {
        transform: translate3d(-400vw, 0, 0);
    }
    
    98.9474% {
        transform: translate3d(-400vw, 0, 0);
    }
    
    100% {
        transform: translate3d(-500vw, 0, 0);
    }
}

.background-overlay {
    position: fixed;
    inset: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.10);
    pointer-events: none;
}

.maintenance-page {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
}

.maintenance-card {
    width: 100%;
    max-width: 720px;
    padding: 50px 40px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.2);
    
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.status {
    display: inline-block;
    margin-bottom: 24px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.mail {
    margin-bottom: 24px;
}

@media (max-width: 600px) {
    .maintenance-card {
        padding: 38px 22px;
    }
}
    
@media (prefers-reduced-motion: reduce) {
    .background-track {
        animation: none;
    }
}
