﻿/* Splash screen styles */
#splash-screen {
    position: fixed;
    inset: 0;
    background: linear-gradient(to bottom right, #0d1117, #161b22);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity 0.4s ease-out;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Código animado: < / > */
.code-logo {
    font-size: 4rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    animation: pulse 1.4s infinite ease-in-out;
}

    .code-logo .angle {
        color: #58a6ff;
        animation: rotateLeft 2s infinite linear;
    }

    .code-logo .slash {
        color: #ff7b72;
        animation: rotateRight 2s infinite linear;
    }

.splash-text {
    margin-top: 1rem;
    font-size: 1.1rem;
    opacity: 0.8;
    letter-spacing: 0.5px;
}

/* Animaciones */
@keyframes rotateLeft {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}

@keyframes rotateRight {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.08);
        opacity: 0.7;
    }
}
