* {
    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: #2c3e50;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    color: #2c3e50;
}

.top-bar {
    height: 4px;
    background: #d4af37;
}

.main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.maintenance-container {
    background: #fff;
    max-width: 600px;
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.gold-bar {
    height: 4px;
    background: #d4af37;
}

.content-inner {
    padding: 50px 40px;
    text-align: center;
}

.maintenance-content h1 {
    font-size: 26px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
}

.maintenance-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 12px;
}

.maintenance-content a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 500;
}

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

.contact-button {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 30px;
    background: #d4af37;
    color: #2c3e50;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    border-radius: 2px;
    transition: background 0.3s ease;
}

.contact-button:hover {
    background: #c4a030;
    text-decoration: none;
}

.site-name {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e8e8e8;
    font-size: 13px;
    color: #8a9ba8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

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