.press-me {
    font-family: 'Poppins', sans-serif;
    font-size: 1.7em;
    color: rgba(208, 225, 249, 0.5);
    letter-spacing: 0.5px;
    text-align: center;
    font-weight: 400;
    opacity: 0;
    transform: translateY(10px);
    cursor: pointer;
    user-select: none;
    transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
    z-index: 1100;
}

.press-me.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}

.press-me.fade-out {
    opacity: 0 !important;
    transform: translateY(10px);
    transition: opacity 0.4s, transform 0.4s;
}

.press-me.fade-out {
    opacity: 0 !important;
    transition: opacity 0.4s;
}

@keyframes pressMeFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-overlay {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 1;
    transition: opacity 0.3s ease;
    cursor: default;
    background: linear-gradient(135deg, #05101f, #0f1a29);
}

    .loading-overlay.fade-out {
        opacity: 0;
        pointer-events: none;
    }
    
    .loading-overlay.permanent {
        opacity: 1 !important;
        pointer-events: all !important;
    }.loading-content {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 40px 20px;
}

.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin: auto;
}

.loading-background {
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.15'/%3E%3C/svg%3E");
    background-size: 120px;
    opacity: 0;
    animation: fadeIn 0.2s ease forwards;
    pointer-events: none;
}

.loading-progress {
    width: 200px;
    height: 2px;
    background: rgba(208, 225, 249, 0.1);
    border-radius: 4px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp 0.2s ease forwards 0.1s;
}

.loading-bar {
    width: 0%;
    height: 100%;
    background: rgba(208, 225, 249, 0.8);
    transform-origin: left;
    transition: width 0.3s ease;
}

.loading-disclaimer {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: rgba(208, 225, 249, 0.6);
    margin-top: 12px;
    font-weight: 300;
    opacity: 0;
    transform: translateY(10px);
    text-align: center;
    letter-spacing: 0.2px;
}

.copyright {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: rgba(208, 225, 249, 0.5);
    letter-spacing: 0.5px;
    text-align: center;    
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp 0.5s ease forwards 0.3s;
}

.logo-animation {
    transform: scale(0.8);
    opacity: 0;
    animation: logoReveal 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.as-logo {
    width: 140px;
    height: auto;
    opacity: 0;
    filter: brightness(0.95) drop-shadow(0 0 20px rgba(208, 225, 249, 0)) saturate(0.95);
    animation: showLogo 0.5s ease-out forwards, pulseUtaLogo 2s ease-in-out infinite 0.5s;
    transform-origin: center;
}

@keyframes showLogo {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulseUtaLogo {
    0%, 100% {
        filter: brightness(0.95) drop-shadow(0 0 20px rgba(208, 225, 249, 0)) saturate(0.95);
        transform: scale(1);
    }
    50% {
        filter: brightness(1.05) drop-shadow(0 0 30px rgba(208, 225, 249, 0.3)) saturate(1.1);
        transform: scale(1.02);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes logoReveal {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.loading-text {
    font-size: 42px;
    color: rgba(208, 225, 249, 0.9);
    margin-top: -20px;
    letter-spacing: 2px;
    font-weight: 300;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp 0.5s ease forwards 0.3s;
}

.slider-container {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: none;
}

.slide.active {
    opacity: 1;
}
