:root {
    --text-main: #1a1a2e;
    --text-secondary: #4a4a68;
    --accent: #ff6b6b;
    --card-bg: rgba(255, 255, 255, 0.7);
    --card-border: rgba(255, 255, 255, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Beautiful atmospheric gradient - Travel vibe (Sunset/Ocean) */
    background: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 50%, #84fab0 100%);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    overflow: hidden;
    position: relative;
    color: var(--text-main);
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0.05) 100%);
    z-index: 0;
}

/* Decorative background shapes for extra polished look */
.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.6;
    animation: drift 20s infinite alternate ease-in-out;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: #ff9a9e;
    top: -100px;
    left: -100px;
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: #fecfef;
    bottom: -150px;
    right: -100px;
    animation-delay: -5s;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: #a1c4fd;
    top: 30%;
    left: 60%;
    animation-delay: -10s;
}

@keyframes drift {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(50px, 50px) scale(1.1);
    }
}

.container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 640px;
    padding: 20px;
}

/* Premium Glassmorphism Card */
.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--card-border);
    box-shadow: 0 16px 40px 0 rgba(31, 38, 135, 0.1);
    border-radius: 32px;
    padding: 3.5rem 2.5rem;
    text-align: center;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.5s ease;
}

body.loaded .glass-card {
    transform: translateY(0);
    opacity: 1;
}

.logo-wrapper {
    margin-bottom: 2rem;
}

.logo {
    max-width: 180px;
    height: auto;
    filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.1));
    animation: float 6s ease-in-out infinite;
    border-radius: 12px;
    /* In case logo background isn't perfectly transparent */
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-12px) rotate(1deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

.status-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 2rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pulse {
    width: 8px;
    height: 8px;
    background-color: var(--accent);
    border-radius: 50%;
    margin-right: 10px;
    box-shadow: 0 0 0 rgba(255, 107, 107, 0.4);
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.5);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(255, 107, 107, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 107, 0);
    }
}

.title {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -1.5px;
    margin-bottom: 0.25rem;
    background: linear-gradient(135deg, #2b5876 0%, #4e4376 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.75rem;
    font-weight: 300;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.message-container {
    margin-bottom: 2.5rem;
}

.description {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.description.en {
    font-style: italic;
    opacity: 0.85;
}

.divider {
    width: 40px;
    height: 2px;
    background: rgba(0, 0, 0, 0.1);
    margin: 1.25rem auto;
    border-radius: 2px;
}

.loader-container {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
}

.loader-bar {
    width: 30%;
    height: 100%;
    background: linear-gradient(90deg, #a18cd1, #ff6b6b);
    border-radius: 6px;
    position: absolute;
    animation: loadingBar 2.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes loadingBar {
    0% {
        left: -30%;
        width: 30%;
    }

    50% {
        width: 50%;
    }

    100% {
        left: 100%;
        width: 30%;
    }
}

@media (max-width: 480px) {
    .glass-card {
        padding: 2.5rem 1.5rem;
        border-radius: 24px;
    }

    .title {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.25rem;
    }

    .logo {
        max-width: 140px;
    }
}