/* --- VARIÁVEIS E ESTILOS GERAIS DO SITE --- */
:root {
    --background-dark: #131314;
    --surface-dark: #1E1F20;
    --primary-purple: #c084fc;
    --primary-green: #4bde80;
    --font-main: 'Inter', sans-serif;
}

body {
    background-color: var(--background-dark);
    color: #e5e7eb;
    font-family: var(--font-main);
    background-image: radial-gradient(circle at 10% 10%, rgba(192, 132, 252, 0.1) 0%, transparent 30%),
                      radial-gradient(circle at 90% 80%, rgba(75, 222, 128, 0.1) 0%, transparent 30%);
}

.link-button {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(192, 132, 252, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 9999px;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px 2px rgba(192, 132, 252, 0.2);
}

.link-button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 0 20px 3px rgba(75, 222, 128, 0.4);
    border-color: rgba(75, 222, 128, 0.6);
}

/* --- ANIMAÇÕES E ESTILOS DA PÁGINA PRINCIPAL --- */
.animated-pill-main {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(75, 222, 128, 0.4);
    animation: bounce-icon 2s infinite;
}

@keyframes bounce-icon {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-20px); }
    60% { transform: translateY(-10px); }
}

/* --- ESTILOS DA TELA DE SPLASH --- */
#splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--background-dark);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: fadeOut 0.7s ease-in forwards 3.5s;
}

#intro-pill {
    font-size: 5rem;
    text-shadow: 0 0 30px rgba(192, 132, 252, 0.5);
    animation: intro-bounce 1.5s ease-in-out infinite;
}

#intro-text {
    opacity: 0;
    animation: fadeIn 1s ease-out 0.5s forwards;
}

#main-content {
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards 3.7s;
}

@keyframes intro-bounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-25px) scale(1.1); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; visibility: hidden; }
}
