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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #0a0f1c;
    color: #e2e8f0;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.grid-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(59, 130, 246, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    animation: gridMove 15s linear infinite;
}

.grid-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(251, 191, 36, 0.1) 0%, transparent 50%);
    animation: floatingOrbs 12s ease-in-out infinite;
}

@keyframes floatingOrbs {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -20px) rotate(120deg); }
    66% { transform: translate(-20px, 30px) rotate(240deg); }
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.header {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
    padding: 20px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    animation: slideDown 0.8s ease-out;
}

@keyframes slideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 16px;
    animation: fadeInLeft 1s ease-out 0.2s both;
}

@keyframes fadeInLeft {
    from { transform: translateX(-30px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    animation: logoFloat 3s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.logo-icon:hover {
    transform: scale(1.1) rotate(5deg);
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-3px); }
}

.logo-icon svg {
    width: 24px;
    height: 24px;
    stroke: white;
}

.company-info h1 {
    font-size: 20px;
    font-weight: 600;
    color: #f1f5f9;
    margin-bottom: 2px;
}

.tagline {
    font-size: 12px;
    color: #94a3b8;
    font-weight: 400;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.3);
    padding: 8px 16px;
    border-radius: 20px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 500;
    color: #fbbf24;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: fadeInRight 1s ease-out 0.4s both, statusGlow 4s ease-in-out infinite;
}

@keyframes fadeInRight {
    from { transform: translateX(30px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes statusGlow {
    0%, 100% { box-shadow: 0 0 5px rgba(251, 191, 36, 0.3); }
    50% { box-shadow: 0 0 20px rgba(251, 191, 36, 0.5), 0 0 30px rgba(251, 191, 36, 0.2); }
}

.status-dot {
    width: 6px;
    height: 6px;
    background: #fbbf24;
    border-radius: 50%;
    animation: pulse 1.5s infinite, statusDotFloat 3s ease-in-out infinite;
}

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

@keyframes statusDotFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-2px) scale(1.1); }
}

.main-content {
    flex: 1;
    padding: 48px 32px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    animation: fadeInUp 1s ease-out 0.6s both;
}

@keyframes fadeInUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.maintenance-header {
    text-align: center;
    margin-bottom: 48px;
}

.security-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
    padding: 8px 16px;
    border-radius: 20px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    animation: badgeFloat 4s ease-in-out infinite, securityPulse 3s ease-in-out infinite;
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

@keyframes securityPulse {
    0%, 100% { box-shadow: 0 0 5px rgba(16, 185, 129, 0.3); }
    50% { box-shadow: 0 0 15px rgba(16, 185, 129, 0.5), 0 0 25px rgba(16, 185, 129, 0.2); }
}

.security-badge svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    animation: iconSpin 8s linear infinite;
}

@keyframes iconSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.main-title {
    font-size: 36px;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 16px;
    letter-spacing: -0.025em;
    animation: titleGlow 5s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { text-shadow: 0 0 10px rgba(241, 245, 249, 0.3); }
    50% { text-shadow: 0 0 20px rgba(241, 245, 249, 0.5), 0 0 30px rgba(59, 130, 246, 0.3); }
}

.main-description {
    font-size: 18px;
    color: #94a3b8;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.system-status {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
    animation: cardFloat 6s ease-in-out infinite, borderGlow 4s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.system-status:hover {
    transform: translateY(-5px);
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-3px); }
}

@keyframes borderGlow {
    0%, 100% { border-color: rgba(59, 130, 246, 0.2); box-shadow: 0 0 10px rgba(59, 130, 246, 0.1); }
    50% { border-color: rgba(59, 130, 246, 0.4); box-shadow: 0 0 20px rgba(59, 130, 246, 0.2); }
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 12px;
    animation: statusItemFloat 5s ease-in-out infinite;
}

.status-item:nth-child(1) { animation-delay: 0s; }
.status-item:nth-child(2) { animation-delay: 0.5s; }
.status-item:nth-child(3) { animation-delay: 1s; }

@keyframes statusItemFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-2px); }
}

.status-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.status-icon:hover {
    transform: scale(1.1) rotate(5deg);
}

.status-icon.online {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    animation: onlineGlow 3s ease-in-out infinite;
}

@keyframes onlineGlow {
    0%, 100% { box-shadow: 0 0 5px rgba(16, 185, 129, 0.3); }
    50% { box-shadow: 0 0 15px rgba(16, 185, 129, 0.5); }
}

.status-icon.maintenance {
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.3);
    animation: maintenanceGlow 2s ease-in-out infinite;
}

@keyframes maintenanceGlow {
    0%, 100% { box-shadow: 0 0 5px rgba(251, 191, 36, 0.3); }
    50% { box-shadow: 0 0 15px rgba(251, 191, 36, 0.5); }
}

.status-icon svg {
    width: 20px;
    height: 20px;
    animation: iconBounce 4s ease-in-out infinite;
}

@keyframes iconBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.status-icon.online svg {
    stroke: #10b981;
}

.status-icon.maintenance svg {
    stroke: #fbbf24;
    animation: iconBounce 4s ease-in-out infinite, maintenanceSpin 6s linear infinite;
}

@keyframes maintenanceSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.status-info h3 {
    font-size: 14px;
    font-weight: 600;
    color: #f1f5f9;
    margin-bottom: 4px;
}

.status-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 2px 6px;
    border-radius: 4px;
    animation: labelPulse 3s ease-in-out infinite;
}

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

.status-label.online {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.status-label.maintenance {
    background: rgba(251, 191, 36, 0.1);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.3);
    animation: labelPulse 3s ease-in-out infinite, maintenanceBlink 2s ease-in-out infinite;
}

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

.maintenance-details {
    display: flex;
    justify-content: center;
    margin-bottom: 48px;
}

.detail-card {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 24px;
    backdrop-filter: blur(10px);
    animation: detailCardFloat 7s ease-in-out infinite, detailCardGlow 5s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.detail-card:hover {
    transform: translateY(-8px) scale(1.02);
}

@keyframes detailCardFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-4px); }
}

@keyframes detailCardGlow {
    0%, 100% { box-shadow: 0 4px 20px rgba(59, 130, 246, 0.1); }
    50% { box-shadow: 0 8px 30px rgba(59, 130, 246, 0.2); }
}

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.card-header svg {
    width: 20px;
    height: 20px;
    stroke: #3b82f6;
    animation: headerIconFloat 4s ease-in-out infinite;
}

@keyframes headerIconFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-2px) rotate(5deg); }
}

.card-header h3 {
    font-size: 16px;
    font-weight: 600;
    color: #f1f5f9;
}

.card-content p {
    color: #94a3b8;
    margin-bottom: 8px;
    font-size: 14px;
}

.card-content strong {
    color: #f1f5f9;
}

.timestamp {
    font-family: 'JetBrains Mono', monospace;
    color: #3b82f6;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(59, 130, 246, 0.2);
    border-radius: 2px;
    margin-top: 12px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
    width: 35%;
    animation: progressMove 3s ease-in-out infinite;
}

@keyframes progressMove {
    0%, 100% { transform: translateX(-10px); }
    50% { transform: translateX(10px); }
}

.update-list {
    list-style: none;
}

.update-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #94a3b8;
    animation: listItemSlide 0.5s ease-out;
    animation-fill-mode: both;
}

.update-list li:nth-child(1) { animation-delay: 0.1s; }
.update-list li:nth-child(2) { animation-delay: 0.2s; }
.update-list li:nth-child(3) { animation-delay: 0.3s; }
.update-list li:nth-child(4) { animation-delay: 0.4s; }

@keyframes listItemSlide {
    from { transform: translateX(-20px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.check {
    color: #10b981;
    font-weight: bold;
    animation: checkBounce 0.6s ease-out;
}

@keyframes checkBounce {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.progress {
    color: #fbbf24;
    animation: spin 1.5s linear infinite, progressPulse 2s ease-in-out infinite;
}

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

.pending {
    color: #64748b;
    animation: pendingFade 3s ease-in-out infinite;
}

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

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.contact-section {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    backdrop-filter: blur(10px);
    animation: contactFloat 8s ease-in-out infinite, contactGlow 6s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.contact-section:hover {
    transform: translateY(-5px);
}

@keyframes contactFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-3px); }
}

@keyframes contactGlow {
    0%, 100% { box-shadow: 0 4px 20px rgba(239, 68, 68, 0.1); }
    50% { box-shadow: 0 8px 30px rgba(239, 68, 68, 0.2); }
}

.contact-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: #f1f5f9;
    margin-bottom: 8px;
}

.contact-section > p {
    color: #94a3b8;
    margin-bottom: 24px;
}

.contact-methods {
    display: flex;
    justify-content: center;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    animation: contactMethodFloat 5s ease-in-out infinite;
}

@keyframes contactMethodFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-2px); }
}

.contact-method:hover {
    background: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.3);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(239, 68, 68, 0.2);
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(239, 68, 68, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    animation: contactIconPulse 4s ease-in-out infinite;
}

@keyframes contactIconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.contact-icon svg {
    width: 20px;
    height: 20px;
    stroke: #ef4444;
    animation: emailIconFloat 3s ease-in-out infinite;
}

@keyframes emailIconFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-1px); }
}

.contact-method h4 {
    font-size: 14px;
    font-weight: 600;
    color: #f1f5f9;
    margin-bottom: 2px;
}

.contact-method p {
    font-size: 12px;
    color: #94a3b8;
    font-family: 'JetBrains Mono', monospace;
}

.footer {
    background: rgba(15, 23, 42, 0.8);
    border-top: 1px solid rgba(59, 130, 246, 0.2);
    padding: 20px 32px;
    backdrop-filter: blur(10px);
    animation: slideUp 0.8s ease-out 1s both;
}

@keyframes slideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content p {
    color: #64748b;
    font-size: 12px;
}

.footer-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #fbbf24;
    font-family: 'JetBrains Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-dot {
    width: 4px;
    height: 4px;
    background: #fbbf24;
    border-radius: 50%;
    animation: pulse 1.5s infinite, footerDotFloat 3s ease-in-out infinite;
}

@keyframes footerDotFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-1px); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 16px;
        padding: 16px;
    }
    
    .main-content {
        padding: 32px 16px;
    }
    
    .main-title {
        font-size: 28px;
    }
    
    .main-description {
        font-size: 16px;
    }
    
    .system-status {
        padding: 20px;
    }
    
    .status-grid {
        grid-template-columns: 1fr;
    }
    
    .maintenance-details {
        grid-template-columns: 1fr;
    }
    
    .contact-section {
        padding: 20px;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none;
    }
}

.contact-method:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}