.evep-splash {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: var(--enriched-font-primary);
    background: var(--enriched-bg);
    position: relative;
}

.evep-splash-hero {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: var(--enriched-spacing-xl);
    min-height: 70vh;
}

.evep-splash-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(23, 21, 48, 0.9) 0%,
            rgba(59, 58, 174, 0.7) 50%,
            rgba(249, 115, 53, 0.5) 100%);
}

.evep-splash-text {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 600px;
    padding: var(--enriched-spacing-xl);
}

.evep-splash-text h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: var(--enriched-line-height-tight);
    margin-bottom: var(--enriched-spacing-lg);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    cursor: default;
}

.evep-splash-text p {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    line-height: var(--enriched-line-height-normal);
    opacity: 0.95;
    cursor: default;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.evep-splash-card {
    background: var(--enriched-surface-full);
    backdrop-filter: blur(var(--enriched-glass-blur));
    padding: var(--enriched-spacing-xxl) var(--enriched-spacing-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--enriched-spacing-lg);
    box-shadow: var(--enriched-shadow-lg);
    border-radius: var(--enriched-border-radius-xxxl) var(--enriched-border-radius-xxxl) 0 0;
    margin-top: -2rem;
    position: relative;
    z-index: 3;
}

.evep-splash-missing {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--enriched-bg);
    padding: var(--enriched-spacing-xl);
    background: linear-gradient(135deg, var(--dunia-midnight) 0%, var(--dunia-indigo) 100%);
}

.evep-splash-missing-inner {
    background: var(--enriched-surface);
    padding: var(--enriched-spacing-xxl);
    border-radius: var(--enriched-border-radius-xxxl);
    text-align: center;
    max-width: 500px;
    box-shadow: var(--enriched-shadow-xl);
    border: 1px solid var(--enriched-border-light);
    backdrop-filter: blur(var(--enriched-glass-blur));
}

.evep-splash-missing-icon {
    font-size: 4rem;
    margin-bottom: var(--enriched-spacing-lg);
    opacity: 0.8;
}

.evep-splash-missing-inner h2 {
    font-size: var(--enriched-font-2xl);
    color: var(--enriched-text-dark);
    margin-bottom: var(--enriched-spacing-md);
    font-weight: 700;
}

.evep-splash-missing-inner p {
    color: var(--enriched-text-light);
    line-height: var(--enriched-line-height-normal);
    margin-bottom: var(--enriched-spacing-xl);
}

.evep-splash-card .button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--enriched-spacing-md);
    width: 100%;
    max-width: 300px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.evep-splash-text {
    animation: fadeInUp 0.8s var(--enriched-easing) both;
}

.evep-splash-card {
    animation: slideInUp 0.8s var(--enriched-easing) both;
    animation-delay: 0.3s;
}

.evep-splash-missing-inner {
    animation: fadeInUp 0.6s var(--enriched-easing) both;
}

@media (max-width:768px) {
    .evep-splash-hero {
        min-height: 60vh;
        padding: var(--enriched-spacing-lg);
    }

    .evep-splash-text {
        padding: var(--enriched-spacing-lg);
    }

    .evep-splash-text h1 {
        margin-bottom: var(--enriched-spacing-md);
    }

    .evep-splash-card {
        padding: var(--enriched-spacing-xl) var(--enriched-spacing-lg);
        gap: var(--enriched-spacing-md);
        border-radius: var(--enriched-border-radius-xxl) var(--enriched-border-radius-xxl) 0 0;
        margin-top: -1.5rem;
    }

    .evep-splash-missing-inner {
        padding: var(--enriched-spacing-xl);
        margin: var(--enriched-spacing-lg);
        border-radius: var(--enriched-border-radius-xxl);
    }

    .evep-splash-card .button-container {
        max-width: 100%;
    }
}

@media (max-width:480px) {
    .evep-splash-hero {
        min-height: 50vh;
        padding: var(--enriched-spacing-md);
    }

    .evep-splash-text {
        padding: var(--enriched-spacing-md);
    }

    .evep-splash-text h1 {
        font-size: 2rem;
    }

    .evep-splash-text p {
        font-size: 1rem;
    }

    .evep-splash-card {
        padding: var(--enriched-spacing-lg) var(--enriched-spacing-md);
        border-radius: var(--enriched-border-radius-xl) var(--enriched-border-radius-xl) 0 0;
        margin-top: -1rem;
    }

    .evep-splash-missing {
        padding: var(--enriched-spacing-lg);
    }

    .evep-splash-missing-inner {
        padding: var(--enriched-spacing-lg);
        border-radius: var(--enriched-border-radius-xl);
    }
}

@media (min-width:769px) and (max-width:1024px) {
    .evep-splash-hero {
        min-height: 65vh;
    }

    .evep-splash-text {
        max-width: 500px;
    }
}

@media (min-width:1025px) {
    .evep-splash-card {
        flex-direction: row;
        justify-content: center;
        border-radius: var(--enriched-border-radius-xxxxl) var(--enriched-border-radius-xxxxl) 0 0;
    }

    .evep-splash-card .button-container {
        flex-direction: row;
        justify-content: center;
        max-width: 400px;
    }

    .evep-splash-text h1:hover {
        transform: scale(1.02);
        transition: transform 0.3s var(--enriched-easing);
    }
}

@media (min-width:1200px) {
    .evep-splash-hero {
        min-height: 75vh;
    }
}

@media (prefers-reduced-motion:reduce) {
    .evep-splash-text,
    .evep-splash-card,
    .evep-splash-missing-inner {
        animation: none;
    }

    .evep-splash-text h1:hover {
        transform: none;
    }
}

@media print {
    .evep-splash-overlay {
        background: rgba(0, 0, 0, 0.8) !important;
    }

    .evep-splash-card {
        box-shadow: none !important;
        border: 1px solid #ccc !important;
        border-radius: 0 !important;
        margin-top: 0 !important;
    }

}

.evep-splash-hero.evep-splash-image-loading{
    background:linear-gradient(90deg,#f0f0f0 25%,#e0e0e0 50%,#f0f0f0 75%) !important;
    background-size:200% 100% !important;
    animation:evep-image-loading 1.5s infinite;
}

@keyframes evep-image-loading{
    0%{background-position:200% 0;}
    100%{background-position:-200% 0;}
}

.evep-splash-hero.evep-splash-image-loaded{
    animation:evepSplashFadeInUp .8s var(--enriched-easing) both;
}

.evep-splash-hero.evep-splash-image-error{
    background:linear-gradient(135deg,var(--dunia-indigo)0%,var(--dunia-ember)100%) !important;
}

.evep-splash {
    min-height: calc(var(--vh, 1vh) * 100);
}

.evep-splash-animate-in {
    animation: evepSplashFadeInUp 0.8s var(--enriched-easing) both;
}