/* Netflix Splash Screen - Minimalist ve Şık */
#splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 1;
    transition: opacity 0.4s ease;
}

#splash-screen.fade-out {
    opacity: 0;
    pointer-events: none;
}

/* Netflix N efekti */
.netflix-logo {
    width: 180px;
    height: 180px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.netflix-N {
    width: 90px;
    height: 160px;
    position: relative;
    display: flex;
}

/* Netflix N'sinin kırmızı çizgileri */
.netflix-N .vertical {
    width: 25px;
    height: 100%;
    background: #e50914;
    position: absolute;
}

.netflix-N .vertical:nth-child(1) {
    left: 0;
    transform: skewX(-20deg);
    box-shadow: 0 0 30px rgba(229, 9, 20, 0.7);
}

.netflix-N .vertical:nth-child(2) {
    left: 32px;
    transform: skewX(-20deg);
    background: #b20710;
    box-shadow: 0 0 30px rgba(178, 7, 16, 0.7);
}

.netflix-N .vertical:nth-child(3) {
    left: 64px;
    transform: skewX(-20deg);
    background: #e50914;
    box-shadow: 0 0 30px rgba(229, 9, 20, 0.7);
}

/* Hub List Logosu */
.hub-logo {
    margin-top: 30px;
    text-align: center;
}

.hub-logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 8px;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeInText 0.8s forwards;
    animation-delay: 0.5s;
}

.hub-logo-tagline {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 8px;
    opacity: 0;
    animation: fadeInText 0.8s forwards;
    animation-delay: 1s;
}

/* Netflix tarzı yükleme efekti */
.netflix-loader {
    margin-top: 40px;
    width: 150px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.netflix-loader::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: #e50914;
    border-radius: 2px;
    animation: netflixLoad 1.5s ease-in-out infinite;
    box-shadow: 0 0 10px #e50914;
}

/* Copyright */
.splash-copyright {
    position: absolute;
    bottom: 30px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 1px;
}

/* Animasyonlar */
@keyframes netflixLoad {
    0% {
        left: -40%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: -40%;
    }
}

@keyframes fadeInText {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* N animasyonu (isteğe bağlı) */
@keyframes netflixNIn {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.netflix-N {
    animation: netflixNIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
/* Geri sayım için ek stil */
.splash-countdown {
    position: absolute;
    top: 20px;
    right: 20px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    background: rgba(0, 0, 0, 0.3);
    padding: 4px 8px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* 5 saniye yazısı için (başlangıçta) */
.splash-duration {
    position: absolute;
    bottom: 60px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 11px;
    letter-spacing: 1px;
}