/* ═══════════════════════════════════════════
   KatchIt! — Web Layout
═══════════════════════════════════════════ */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    height: 100%;
    background: #050508;
}

body {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #050508;
    overflow: hidden;
}

/* ── Game Canvas ────────────────────────── */
#app {
    flex: 1;
    width: 100%;
    height: 100dvh;
    overflow: hidden;
    position: relative;
}

/* ── Loading Screen ─────────────────────── */
#loading-screen {
    position: fixed;
    inset: 0;
    background: #050508;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    z-index: 9000;
    animation: fadeOutLoading 0.5s ease 3.5s forwards;
}

@keyframes fadeOutLoading {
    to { opacity: 0; pointer-events: none; }
}

#loading-screen.hidden {
    opacity: 0;
    pointer-events: none;
    animation: none;
}

.loading-logo {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, #F43F5E, #D946EF, #A855F7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.loading-spinner {
    width: 36px;
    height: 36px;
    border: 3px solid #1E1535;
    border-top-color: #D946EF;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-hint {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 13px;
    color: #CBB8F0;
}

/* ── Legal Footer ─────────────────────────── */
#legal-footer {
    position: fixed;
    bottom: 4px;
    right: 8px;
    z-index: 10;
    display: flex;
    gap: 12px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 11px;
}

#legal-footer a {
    color: #3A2A5C;
    text-decoration: none;
}

#legal-footer a:hover {
    color: #D946EF;
    text-decoration: underline;
}
