:root {
    --primary: #FF5500;
    --primary-dark: #CC4400;
    --dark: #121212;
    --dark-card: #1C1C1E;
    --gray: #2C2C2E;
    --text: #FFFFFF;
    --text-muted: #8E8E93;
}
* { margin: 0; padding: 0; box-sizing: border-box; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; }
body { background: var(--dark); color: var(--text); min-height: 100vh; display: flex; flex-direction: column; }
.container { width: 92%; max-width: 1000px; margin: 0 auto; padding: 1.5rem 0; flex: 1; }
a { color: var(--primary); text-decoration: none; }
.mb-4 { margin-bottom: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .grid-2 { grid-template-columns: 1fr; } }

/* ==========================================
   SPLASH SCREEN ANIMATION
   ========================================== */
.splash-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #0D0D0E;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
.splash-overlay.fade-out {
    opacity: 0;
    visibility: hidden;
}
.splash-content { text-align: center; }
.splash-step { display: none; opacity: 0; transform: scale(0.9); transition: all 0.4s ease; }
.splash-step.active { display: flex; flex-direction: column; align-items: center; opacity: 1; transform: scale(1); }
.splash-logo { width: 180px; max-width: 70vw; height: auto; margin-bottom: 1rem; }
.splash-logo-sm { width: 150px; max-width: 60vw; height: auto; }
.splash-text { font-size: 1.1rem; font-weight: 800; letter-spacing: 2px; color: #FFF; }
.powered-text { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-muted); margin-bottom: 0.8rem; }

.pulse-anim {
    animation: pulse 1.2s infinite alternate ease-in-out;
}
@keyframes pulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}