/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-x: hidden;
}

/* Container and Card Styles */
.container {
    position: relative;
    width: 100%;
    max-width: 600px;
    z-index: 10;
}

.maintenance-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Icon Section */
.icon-section {
    margin-bottom: 30px;
}

.maintenance-icon {
    display: inline-block;
    padding: 20px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 50%;
    margin-bottom: 10px;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Content Section */
.content-section h1 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 16px;
    line-height: 1.2;
}

.subtitle {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 32px;
    line-height: 1.6;
}

/* Status Information */
.status-info {
    background: rgba(99, 102, 241, 0.05);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 32px;
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.status-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.status-item:last-child {
    margin-bottom: 0;
}

.status-label {
    font-weight: 500;
    color: #374151;
}

.status-value {
    font-weight: 600;
    color: #6366f1;
}

/* Improvements List */
.improvements-list {
    text-align: left;
    margin-bottom: 32px;
}

.improvements-list h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 16px;
    text-align: center;
}

.improvements-list ul {
    list-style: none;
    padding: 0;
}

.improvements-list li {
    padding: 12px 0;
    font-size: 1rem;
    color: #4b5563;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.improvements-list li:last-child {
    border-bottom: none;
}

/* Action Section */
.action-section {
    margin-bottom: 32px;
}

.refresh-btn {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.refresh-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.refresh-btn:active {
    transform: translateY(0);
}

/* Footer Section */
.footer-section {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 24px;
}

.footer-section p {
    color: #6b7280;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.contact-info {
    font-size: 0.9rem;
    color: #9ca3af;
}

.contact-info a {
    color: #6366f1;
    text-decoration: none;
    font-weight: 500;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Background Animation */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.circle-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.circle-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.circle-3 {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.3;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .maintenance-card {
        padding: 30px 20px;
        margin: 10px;
    }

    .content-section h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .status-item {
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }

    .improvements-list {
        text-align: center;
    }

    .improvements-list li {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .content-section h1 {
        font-size: 1.75rem;
    }

    .maintenance-card {
        padding: 24px 16px;
    }

    .refresh-btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
}