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

.stripe-bar {
    height: 30px;
    background: repeating-linear-gradient(
        45deg,
        #f39c12,
        #f39c12 10px,
        #2c3e50 10px,
        #2c3e50 20px
    );
}

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

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

.warning-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
}

.warning-icon svg {
    width: 100%;
    height: 100%;
}

.maintenance-content h1 {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 16px;
}

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

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

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

.site-name {
    margin-top: 40px;
    padding: 15px 30px;
    background: #2c3e50;
    color: #fff;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
}

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

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