:root {
    --primary-blue: #1F3B6F;
    --primary-red: #E31E24;
    --bg-color: #f4f7fa;
    --text-dark: #1a1a1a;
    --text-gray: #555555;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    color: var(--text-dark);
}

/* Background Animated Shapes */
.background-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: drift 10s infinite alternate ease-in-out;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-blue);
    top: -100px;
    left: -100px;
    opacity: 0.4;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--primary-red);
    bottom: -50px;
    right: -50px;
    opacity: 0.3;
    animation-delay: -5s;
}

@keyframes drift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(30px, 30px); }
}

/* Layout */
.container {
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: center;
}

.card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 24px;
    padding: 60px 40px;
    width: 100%;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(31, 59, 111, 0.1);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

/* Logo */
.logo-container {
    margin-bottom: 40px;
}

.logo {
    max-width: 250px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Content */
.title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.highlight {
    color: var(--primary-blue);
    font-weight: 600;
}

/* Loader */
.loader-container {
    width: 100%;
    height: 6px;
    background-color: rgba(31, 59, 111, 0.1);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
    max-width: 200px;
    margin: 0 auto;
}

.loader-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 30%;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-red));
    border-radius: 3px;
    animation: loading 2s infinite ease-in-out;
}

@keyframes loading {
    0% { left: -30%; width: 30%; }
    50% { width: 50%; }
    100% { left: 100%; width: 30%; }
}

@media (max-width: 480px) {
    .card {
        padding: 40px 24px;
    }
    
    .logo {
        max-width: 180px;
    }

    .title {
        font-size: 2rem;
    }

    .description {
        font-size: 1.1rem;
    }
}
