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

body {
    font-family: Arial, sans-serif;
    background: #f6f8fb;
    color: #1f2937;
}

.construction-screen {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    text-align: center;
}

.loader {
    width: 52px;
    height: 52px;
    border: 5px solid #d1d5db;
    border-top-color: #1f2937;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

h1 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    letter-spacing: 0.05em;
}

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