#site-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1a2440;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
}

#site-loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 600px;
    padding: 0 20px;
}

.loader-content svg {
    width: 80px;
    height: auto;
    margin-bottom: 40px;
}

.loader-text {
    color: white !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    font-family: sans-serif;
    text-align: center;
    transform: translateY(50px);
    opacity: 0;
}
.loader-text.fade-out {
    opacity: 0;
    transform: translateY(10px);
}

.loader-text h1 {
    color: white !important;
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 20px;
}

.loader-text p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 30px;
}

.enter-button {
    background: transparent;
    color: white;
    border: 1px solid white;
    border-radius: 30px;
    padding: 10px 30px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.enter-button:hover {
    background-color: #C25D0B;
    border: 1px solid #C25D0B;
}

@media (max-width: 768px) {
    .loader-text h1 {
        font-size: 24px;
    }

    .loader-text p {
        font-size: 14px;
    }
}

body {
    overflow: hidden;
}

body.age-verified {
    overflow: auto;
}

.loading-bar-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.loading-bar {
    height: 100%;
    width: 0%;
    background: #C25D0B;
    transition: width 1.5s ease-out;
}
.logo-container {
    overflow: hidden;
    height: 100px;
    margin-bottom: 40px;
    position: relative;
}
.logo-slide {
    transform: translateY(150%);
    transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
    width: 80px;
    height: auto;
}