:root {
    --brand: #00DC82;
    --brand-hover: #00F090;
    --bg: #020420;
    --bg-surface: #0A0F2E;
    --border: #1E2448;
    --text: #FFFFFF;
    --text-secondary: #94A3B8;
    --font-heading: 'Sora', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

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

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
}

.maintenance-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    padding: 2rem;
    z-index: 10;
    text-align: center;
}

/* Background Animated Blobs */
.background-blobs {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
}

.blob {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 220, 130, 0.15) 0%, rgba(0, 220, 130, 0) 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: blob-float 20s infinite alternate ease-in-out;
}

.blob-1 {
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.blob-2 {
    bottom: -100px;
    left: -100px;
    animation-delay: -5s;
}

@keyframes blob-float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 50px) scale(1.2); }
}

/* Content Card */
.content-card {
    background: rgba(10, 15, 46, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 2rem;
    padding: 3rem 2.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--brand);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg);
    font-size: 1.5rem;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.75rem;
    letter-spacing: -1px;
}

.logo-text span {
    color: var(--brand);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 220, 130, 0.1);
    color: var(--brand);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 220, 130, 0.2);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--brand);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 220, 130, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(0, 220, 130, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 220, 130, 0); }
}

.main-title {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.description {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    text-align: left;
}

.info-item {
    background: rgba(30, 36, 72, 0.4);
    padding: 1rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-item ion-icon {
    font-size: 1.5rem;
    color: var(--brand);
}

.info-item h3 {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.info-item p {
    font-size: 0.875rem;
    font-weight: 600;
}

/* Footer */
.footer p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-icon {
    color: var(--text);
    font-size: 1.25rem;
    transition: color 0.3s ease, transform 0.2s ease;
}

.social-icon:hover {
    color: var(--brand);
    transform: translateY(-2px);
}

.copyright {
    margin-top: 2rem;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* Animations */
.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

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

.icon-pulse {
    animation: rotate-pulse 2s infinite ease-in-out;
}

@keyframes rotate-pulse {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(10deg); }
}

/* Responsive */
@media (max-width: 480px) {
    .content-card {
        padding: 2rem 1.5rem;
    }
    .main-title {
        font-size: 1.75rem;
    }
    .info-grid {
        grid-template-columns: 1fr;
    }
}
