* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary-color: #ec4899;
    --background-dark: #0f172a;
    --background-card: #1e293b;
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --accent-gradient: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
    --glow-color: rgba(99, 102, 241, 0.3);
}
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--background-dark);
    color: var(--text-primary);
    min-height: 100vh;
    overflow: hidden;
    position: relative;
}
.container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    z-index: 1;
}
.content-wrapper {
    max-width: 600px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 10;
    animation: fadeInUp 1s ease-out;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.icon-container {
    margin-bottom: 2rem;
    animation: float 3s ease-in-out infinite;
}
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}
.maintenance-icon {
    width: 120px;
    height: 120px;
    color: var(--primary-color);
    filter: drop-shadow(0 0 30px var(--glow-color));
    transition: all 0.3s ease;
}
.maintenance-icon:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 50px var(--glow-color));
}
.title {
    font-size: 3.5rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    animation: gradientShift 3s ease infinite;
    background-size: 200% 200%;
}
@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}
.subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    font-weight: 300;
    margin-bottom: 2.5rem;
    letter-spacing: 0.5px;
}
.message-box {
    background: var(--background-card);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2.5rem;
    border: 1px solid rgba(99, 102, 241, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}
.message-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.2);
    border-color: rgba(99, 102, 241, 0.4);
}
.message {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
}
.contact-section {
    margin-bottom: 3rem;
}
.contact-label {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-weight: 400;
}
.email-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    color: var(--primary-light);
    text-decoration: none;
    padding: 1rem 2rem;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 50px;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    font-weight: 600;
}
.email-link:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 0 30px var(--glow-color);
}
.email-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}
.email-link:hover .email-icon {
    transform: rotate(10deg);
}
.loader-container {
    margin-top: 3rem;
}
.loader {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}
.dot {
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 10px var(--glow-color);
}
.dot:nth-child(2) {
    animation-delay: 0.2s;
}
.dot:nth-child(3) {
    animation-delay: 0.4s;
}
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }
}
.background-decoration {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}
.circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    opacity: 0.1;
    animation: moveCircle 20s ease-in-out infinite;
}
.circle-1 {
    width: 500px;
    height: 500px;
    top: -250px;
    right: -250px;
    animation-duration: 25s;
}
.circle-2 {
    width: 400px;
    height: 400px;
    bottom: -200px;
    left: -200px;
    background: radial-gradient(circle, var(--secondary-color) 0%, transparent 70%);
    animation-duration: 30s;
    animation-delay: 5s;
}
.circle-3 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 35s;
    animation-delay: 10s;
}
@keyframes moveCircle {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(50px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-50px, 50px) scale(0.9);
    }
}
/* Responsive Design */
@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.25rem;
    }
    
    .message {
        font-size: 1rem;
    }
    
    .email-link {
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
    }
    
    .maintenance-icon {
        width: 80px;
        height: 80px;
    }
    
    .message-box {
        padding: 1.5rem;
    }
}
@media (max-width: 480px) {
    .container {
        padding: 1rem;
    }
    
    .title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .email-link {
        flex-direction: column;
        gap: 0.5rem;
    }
}
