/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Fintech Color Palette */
    --primary-blue: #2563EB;
    --secondary-cyan: #06B6D4;
    --background: radial-gradient(circle at top, #f5f7fb 0%, #e5e7eb 40%, #d1d5db 100%);
    --surface: rgba(255, 255, 255, 0.88);
    --surface-border: rgba(15, 23, 42, 0.06);
    --text-primary: #020617;
    --text-secondary: #475569;
    --accent-gradient: linear-gradient(135deg, #2563EB 0%, #06B6D4 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--background);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Container */
.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 0 2rem;
    position: relative;
    z-index: 1;
}

/* Content */
.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 800px;
    padding: 2.5rem 3rem;
    animation: fadeInUp 1s ease-out;
}

/* Brand Section */
.brand {
    margin-bottom: 2.5rem;
}

.logo-container {
    margin-bottom: 0.5rem;
    animation: fadeIn 1.2s ease-out;
}

.logo-image {
    max-width: 260px;
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 18px 40px rgba(15, 23, 42, 0.28));
    animation: float 3s ease-in-out infinite;
}

/* Message Section */
.message {
    margin-bottom: 3rem;
}

.status-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
    animation: fadeIn 1.8s ease-out;
}

.status-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    animation: fadeIn 2s ease-out;
}

/* Decorative Dots */
.decorative-dots {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeIn 2.2s ease-out;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #11B275;
    animation: pulse 2s ease-in-out infinite;
}

.dot:nth-child(2) {
    animation-delay: 0.3s;
    opacity: 0.8;
}

/* Background Gradient Orbs */
.gradient-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.12;
    z-index: 0;
    pointer-events: none;
}

.orb-1 {
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.7) 0%, transparent 70%);
    top: -260px;
    right: -220px;
    animation: float 8s ease-in-out infinite;
}

.orb-2 {
    width: 460px;
    height: 460px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.7) 0%, transparent 70%);
    bottom: -240px;
    left: -160px;
    animation: float 10s ease-in-out infinite reverse;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .status-title {
        font-size: 1.75rem;
    }

    .status-description {
        font-size: 1rem;
    }

    .container {
        padding: 1.5rem;
    }

    .content {
        padding: 2rem 1.75rem;
    }
}

@media (max-width: 480px) {
    .status-title {
        font-size: 1.5rem;
    }

    .status-description {
        font-size: 0.9375rem;
    }

    .orb-1,
    .orb-2 {
        width: 400px;
        height: 400px;
    }
}

.footer {
    margin: 10px;
    text-align: center;
    font-size: 15px;
    font-weight: 200;
}