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

/* DiaspoMoney Typography */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
    /* DiaspoMoney Colors */
    --color-primary: #2563eb;
    --color-primary-dark: #1d4ed8;
    --color-primary-light: #3b82f6;
    --color-secondary: #64748b;
    --color-secondary-dark: #475569;
    --color-secondary-light: #94a3b8;
    --color-background: #ffffff;
    --color-foreground: #0f172a;
    --color-muted: #f1f5f9;
    
    /* DiaspoMoney Brand Colors */
    --diaspomoney-400: #38bdf8;
    --diaspomoney-500: #0ea5e9;
    --diaspomoney-600: #0284c7;
    --diaspomoney-700: #0369a1;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    
    /* Transitions */
    --transition-fast: 150ms;
    --transition-normal: 250ms;
    --transition-slow: 350ms;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: linear-gradient(135deg, var(--diaspomoney-400) 0%, var(--diaspomoney-500) 30%, var(--diaspomoney-600) 70%, var(--diaspomoney-700) 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    color: var(--color-foreground);
}

.container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 800px;
    padding: 2rem;
}

.maintenance-content {
    background: var(--color-background);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl) var(--spacing-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
    animation: fadeInUp 0.5s ease-in-out;
    border: 1px solid rgba(214.3, 31.8%, 91.4%, 0.5);
}

.logo-wrapper {
    margin-bottom: var(--spacing-lg);
    display: flex;
    justify-content: center;
}

.logo-placeholder {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-md);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--diaspomoney-600) 100%);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    letter-spacing: -0.02em;
}

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

.icon-wrapper {
    margin-bottom: var(--spacing-xl);
    display: flex;
    justify-content: center;
}

.maintenance-icon {
    width: 120px;
    height: 120px;
    color: var(--color-primary);
    animation: bounceGentle 2s infinite;
}

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

.circle-animation {
    animation: rotate 20s linear infinite;
    transform-origin: center;
}

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

.hand-animation {
    animation: tick 2s ease-in-out infinite;
    transform-origin: 50px 50px;
}

@keyframes tick {
    0%, 100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(5deg);
    }
}

.title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-foreground);
    margin-bottom: var(--spacing-md);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--diaspomoney-600) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--color-secondary);
    margin-bottom: var(--spacing-xl);
    line-height: 1.6;
    font-weight: 400;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: var(--color-muted);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin: var(--spacing-xl) 0;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--diaspomoney-600) 100%);
    border-radius: var(--radius-full);
    width: 0%;
    animation: progress 3s ease-in-out infinite;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes progress {
    0% {
        width: 0%;
    }
    50% {
        width: 70%;
    }
    100% {
        width: 100%;
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.info-section {
    display: flex;
    justify-content: space-around;
    margin: var(--spacing-xl) 0;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.info-label {
    font-size: 0.9rem;
    color: var(--color-secondary);
    font-weight: 500;
}

.info-value {
    font-size: 1rem;
    color: var(--color-primary);
    font-weight: 600;
}

.contact-section {
    margin: var(--spacing-xl) 0;
    padding: var(--spacing-lg);
    background: var(--color-muted);
    border-radius: var(--radius-md);
    border: 1px solid rgba(214.3, 31.8%, 91.4%, 0.5);
}

.contact-section p {
    color: var(--color-secondary);
    margin-bottom: var(--spacing-sm);
    font-size: 0.95rem;
    font-weight: 500;
}

.contact-link {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color var(--transition-normal) ease;
}

.contact-link:hover {
    color: var(--color-primary-dark);
    text-decoration: underline;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--diaspomoney-600) 100%);
    border-radius: var(--radius-full);
    color: white;
    text-decoration: none;
    transition: transform var(--transition-normal) ease, box-shadow var(--transition-normal) ease;
    box-shadow: var(--shadow-sm);
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-lg);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    animation: float 15s infinite ease-in-out;
}

.particle:nth-child(1) {
    width: 80px;
    height: 80px;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 20s;
}

.particle:nth-child(2) {
    width: 60px;
    height: 60px;
    left: 20%;
    animation-delay: 2s;
    animation-duration: 18s;
}

.particle:nth-child(3) {
    width: 100px;
    height: 100px;
    left: 30%;
    animation-delay: 4s;
    animation-duration: 22s;
}

.particle:nth-child(4) {
    width: 70px;
    height: 70px;
    left: 50%;
    animation-delay: 1s;
    animation-duration: 19s;
}

.particle:nth-child(5) {
    width: 90px;
    height: 90px;
    left: 70%;
    animation-delay: 3s;
    animation-duration: 21s;
}

.particle:nth-child(6) {
    width: 50px;
    height: 50px;
    left: 80%;
    animation-delay: 5s;
    animation-duration: 17s;
}

.particle:nth-child(7) {
    width: 85px;
    height: 85px;
    left: 40%;
    animation-delay: 2.5s;
    animation-duration: 23s;
}

.particle:nth-child(8) {
    width: 65px;
    height: 65px;
    left: 90%;
    animation-delay: 1.5s;
    animation-duration: 20s;
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .maintenance-content {
        padding: var(--spacing-xl) var(--spacing-lg);
    }
    
    .title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .info-section {
        flex-direction: column;
        align-items: center;
    }
    
    .maintenance-icon {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 1.5rem;
    }
    
    .subtitle {
        font-size: 0.9rem;
    }
    
    .maintenance-content {
        padding: var(--spacing-lg) var(--spacing-md);
    }
}

