body {
    background-color: rgba(87,227,131, 1);

}

.maintenance-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #57e783 0%, #2d8f4e 100%);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    margin: 0;
    padding: 0;
}

.maintenance-container {
    text-align: center;
    padding: 2rem;
    max-width: 500px;
}

.maintenance-content {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 3rem 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.maintenance-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    color: #2d8f4e;
    animation: pulse 2s ease-in-out infinite;
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

.maintenance-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 1rem;
    letter-spacing: -0.02em;
}

.maintenance-message {
    font-size: 1.125rem;
    color: #4a4a4a;
    margin: 0 0 0.75rem;
    line-height: 1.6;
}

.maintenance-subtext {
    font-size: 0.9375rem;
    color: #6a6a6a;
    margin: 0;
    line-height: 1.5;
}