/*
Theme Name: Simple Coming Soon
Author: Gemini
Description: A minimalist under construction page.
Version: 1.0
*/

body {
    background-color: #f4f4f4;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    color: #333;
    text-align: center;
}

.container {
    max-width: 600px;
    padding: 20px;
}

h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
}

.loader {
    border: 4px solid #ddd;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 2s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}