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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    background: #1a1a2e;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: #fff;
}

.maintenance-container {
    max-width: 600px;
    width: 100%;
    text-align: center;
}

.accent-dot {
    width: 8px;
    height: 8px;
    background: #00d9ff;
    border-radius: 50%;
    margin: 0 auto 40px;
    box-shadow: 0 0 20px #00d9ff;
}

.maintenance-content h1 {
    font-size: 32px;
    font-weight: 300;
    color: #00d9ff;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.maintenance-content p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
}

.maintenance-content a {
    color: #00d9ff;
    text-decoration: none;
}

.maintenance-content a:hover {
    text-decoration: underline;
}

.site-name {
    margin-top: 60px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 3px;
}

@media (max-width: 480px) {
    .maintenance-content h1 {
        font-size: 24px;
    }

    .maintenance-content p {
        font-size: 15px;
    }
}
