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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #1a1a1a;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.maintenance-container {
    text-align: center;
    padding: 1.5rem;
    max-width: 90%;
    margin: 0 auto;
}

.icon-container {
    margin-bottom: 2rem;
}

.maintenance-icon {
    color: #4a9eff;
    animation: spin 4s linear infinite;
}

h1 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

p {
    font-size: 1rem;
    line-height: 1.5;
    color: #a0a0a0;
    max-width: 600px;
    margin: 0 auto;
}

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

    to {
        transform: rotate(360deg);
    }
}

/* Tablet and larger screens */
@media (min-width: 768px) {
    .maintenance-container {
        max-width: 80%;
    }

    h1 {
        font-size: 2.5rem;
    }

    p {
        font-size: 1.2rem;
    }

    .maintenance-icon {
        width: 150px;
        height: 150px;
    }
}