/* Splash Page Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000000;
    overflow: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    cursor: pointer;
    user-select: none;
}

.splash-container {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000000 100%);
}

.logo-container {
    position: relative;
    animation: fadeIn 2s ease-in-out;
}

.logo {
    max-width: 60vw;
    max-height: 60vh;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.1));
    border-radius: 20px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.3);
}

.logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 50px rgba(157, 78, 221, 0.3));
    box-shadow: 0 0 60px rgba(157, 78, 221, 0.2), 0 0 40px rgba(0, 0, 0, 0.4);
}

.enter-text {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0;
    animation: pulseIn 1s ease-in-out 15s forwards;
    text-align: center;
}

.enter-text.show {
    animation: pulseIn 1s ease-in-out forwards;
}

/* Mobile styles */
@media (max-width: 768px) {
    .splash-container {
        align-items: flex-start;
        padding-top: 20vh;
    }

    .logo {
        max-width: 80vw;
        max-height: 40vh;
    }

    .enter-text {
        font-size: 1rem;
        bottom: -60px;
    }
}

/* Touch device detection */
.touch-device .enter-text::before {
    content: "Tap ";
}

.no-touch .enter-text::before {
    content: "Click ";
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulseIn {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }

    100% {
        opacity: 0.8;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.8;
    }

    50% {
        opacity: 0.4;
    }
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

/* Subtle background animation */
.splash-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(247, 147, 30, 0.03) 0%, transparent 50%);
    animation: subtleMove 20s ease-in-out infinite;
}

@keyframes subtleMove {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-10px, -10px);
    }
}