* {
    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: #0a0a0a;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.glow-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.glow-dot-1 {
    top: 15%;
    left: 10%;
    background: #ff00ff;
    box-shadow: 0 0 20px #ff00ff, 0 0 40px #ff00ff;
}

.glow-dot-2 {
    top: 20%;
    right: 15%;
    background: #00ffff;
    box-shadow: 0 0 20px #00ffff, 0 0 40px #00ffff;
}

.glow-dot-3 {
    bottom: 25%;
    left: 20%;
    background: #00ffff;
    box-shadow: 0 0 20px #00ffff, 0 0 40px #00ffff;
}

.glow-dot-4 {
    bottom: 20%;
    right: 10%;
    background: #ff00ff;
    box-shadow: 0 0 20px #ff00ff, 0 0 40px #ff00ff;
}

.maintenance-container {
    max-width: 600px;
    width: 100%;
    padding: 50px 40px;
    border: 2px solid #ff00ff;
    border-radius: 4px;
    text-align: center;
    position: relative;
    background: rgba(10, 10, 10, 0.9);
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.3), inset 0 0 30px rgba(255, 0, 255, 0.1);
}

.maintenance-content h1 {
    font-size: 32px;
    font-weight: 700;
    color: #ff00ff;
    margin-bottom: 20px;
    text-shadow: 0 0 10px #ff00ff, 0 0 20px #ff00ff;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.maintenance-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #00ffff;
    margin-bottom: 12px;
}

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

.maintenance-content a:hover {
    text-shadow: 0 0 10px #ff00ff;
}

.site-name {
    margin-top: 40px;
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid #00ffff;
}

.corner-tl { top: -2px; left: -2px; border-right: none; border-bottom: none; }
.corner-tr { top: -2px; right: -2px; border-left: none; border-bottom: none; }
.corner-bl { bottom: -2px; left: -2px; border-right: none; border-top: none; }
.corner-br { bottom: -2px; right: -2px; border-left: none; border-top: none; }

@media (max-width: 480px) {
    .maintenance-container {
        padding: 40px 24px;
    }

    .maintenance-content h1 {
        font-size: 24px;
        letter-spacing: 2px;
    }

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