/* Splash screen for headless theme */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    color: #333;
}

.splash-container {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    max-width: 480px;
    width: 90%;
}

.splash-container h1 {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
    color: #c0392b;
}

.splash-container p {
    color: #666;
    line-height: 1.6;
}
