body {
    margin: 0;
    background: #000;
    color: #fff;
    font-family: 'Roboto Mono', monospace;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

#splash-screen {
    position: fixed;
    inset: 0;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeout 5s ease-in-out forwards;
}

#splash-screen img {
    max-width: 80vw;
    max-height: 80vh;
}

@keyframes fadeout {
    0% { opacity: 1; }
    60% { opacity: 1; }
    100% { opacity: 0; visibility: hidden; }
}

.container {
    text-align: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    margin: 0 0 1rem;
    letter-spacing: 0.1em;
}

.churro {
    color: #F6D2AA;
    text-shadow: 0 0 20px #F6D2AA,
                 0 0 40px #F6D2AA,
                 0 0 80px #F6D2AA;
    animation: pulse 4s ease-in-out infinite;
}

h2 {
    font-size: 2.5rem;
    margin: 0 0 4rem;
    opacity: 0.7;
    letter-spacing: 0.2em;
}

.navbar {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin: 2rem 0 4rem;
}

.navbar a {
    color: #ccc;
    text-decoration: none;
    font-size: 1.6rem;
    letter-spacing: 0.1em;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.navbar a:hover {
    color: #fff;
    text-shadow: 0 0 8px #fff;
}

.navbar a:active {
    transform: scale(0.95);
}

.divider {
    width: 50%;
    height: 1px;
    background: linear-gradient(to right, transparent, #F6D2AA, transparent);
    margin: 4rem auto;
    opacity: 0.6;
    box-shadow: 0 0 10px #F6D2AA;
}

.follow-us h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    letter-spacing: 0.15em;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-icons a {
    color: #888;
    font-size: 3rem;
    transition: all 0.4s ease;
}

.social-icons a:hover {
    color: #F6D2AA;
    text-shadow: 0 0 20px #F6D2AA,
                 0 0 40px #F6D2AA;
    transform: scale(1.3) translateY(-10px);
}

.navbar a.active {
    color: #F6D2AA;
    text-shadow: 0 0 10px #F6D2AA, 0 0 20px #F6D2AA;
    pointer-events: none;
}

#page-transition {
    position: fixed;
    inset: 0;
    background: #000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 1s ease-in-out;
    z-index: 9998;
}

@keyframes pulse {
    0%, 100% {
        text-shadow: 0 0 20px #F6D2AA, 0 0 40px #F6D2AA, 0 0 80px #F6D2AA;
    }
    50% {
        text-shadow: 0 0 30px #F6D2AA, 0 0 60px #F6D2AA, 0 0 100px #F6D2AA;
    }
}
