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

body {
    font-family: "Courier New", Courier, monospace;
    background: #0f0f23;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: #00ff00;
    position: relative;
}

.binary-bg {
    position: absolute;
    font-size: 12px;
    color: #00ff00;
    opacity: 0.1;
    pointer-events: none;
}

.binary-1 { top: 5%; left: 3%; }
.binary-2 { top: 10%; right: 5%; }
.binary-3 { bottom: 15%; left: 5%; }
.binary-4 { bottom: 8%; right: 3%; }

.maintenance-container {
    max-width: 650px;
    width: 100%;
    background: #0f0f23;
    border: 1px solid #00ff00;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.terminal-header {
    background: #1a1a3a;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid #00ff00;
}

.terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot-red { background: #ff5f56; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #27ca40; }

.terminal-title {
    margin-left: 10px;
    font-size: 12px;
    color: #666;
}

.content-inner {
    padding: 30px;
}

.prompt-line {
    margin-bottom: 20px;
    font-size: 14px;
}

.prompt {
    color: #00ff00;
}

.command {
    color: #fff;
}

.maintenance-content {
    padding-left: 20px;
    border-left: 2px solid #00ff00;
    margin: 20px 0;
}

.maintenance-content h1 {
    font-size: 20px;
    font-weight: normal;
    color: #00ff00;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.maintenance-content p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(0, 255, 0, 0.7);
    margin-bottom: 10px;
}

.maintenance-content a {
    color: #00ff00;
}

.progress-bar {
    margin: 25px 0;
}

.progress-label {
    font-size: 12px;
    margin-bottom: 8px;
    color: #00ff00;
}

.progress-track {
    height: 8px;
    background: #1a1a3a;
    border: 1px solid #00ff00;
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 45%;
    background: #00ff00;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.cursor {
    display: inline-block;
    width: 10px;
    height: 18px;
    background: #00ff00;
    animation: blink 1s step-end infinite;
    vertical-align: text-bottom;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.site-name {
    margin-top: 20px;
    font-size: 11px;
    color: #444;
}

@media (max-width: 480px) {
    .content-inner {
        padding: 20px;
    }

    .maintenance-content h1 {
        font-size: 16px;
    }

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