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

html, body {
    width: 100%;
    min-height: 100%;
}

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 20px;
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
    color: #111111;
    text-align: center;
}

.maintenance {
    width: 100%;
    max-width: 1200px;
}

.icon {
    font-size: 55px;
    margin-bottom: 18px;
    color: #17324d;
    animation: spin 4s linear infinite;
}

h1 {
    font-size: clamp(48px, 8vw, 110px);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

p {
    font-size: clamp(18px, 2.2vw, 28px);
    line-height: 1.5;
    color: #555555;
    margin-bottom: 10px;
}

.sub-text {
    font-size: clamp(14px, 1.5vw, 18px);
    color: #888888;
}

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

@media (max-width: 600px) {
    h1 {
        font-size: 44px;
        letter-spacing: 2px;
    }

    p {
        font-size: 18px;
    }

    .icon {
        font-size: 42px;
    }
}
