/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Background */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: #0d1117;
    color: #ffffff;
    font-family: Arial, sans-serif;
    padding: 20px;
    text-align: center;
}

/* Content Wrapper */
.container {
    max-width: 400px;
}

/* Loader Animation */
.loader {
    width: 60px;
    height: 60px;
    border: 6px solid #ffffff30;
    border-top-color: #00aaff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

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

/* Typography */
h1 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

p {
    font-size: 1rem;
    opacity: 0.8;
}

/* Mobile Responsive */
@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
    }
    p {
        font-size: 0.9rem;
    }
    .loader {
        width: 50px;
        height: 50px;
    }
}
