:root {
    --color-red: #9e1b1e;
    --color-yellow: #fbb03b;
    --color-teal: #29a9b6;
    --color-dark: #1a1a1a;
    --color-text: #4a4a4a;
    --color-bg: #f9f9f9;
    --font-main: 'Montserrat', sans-serif;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--color-bg);
    color: var(--color-text);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    /* Background image is handled by ::before to apply filters */
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('background.jpg') no-repeat center center fixed;
    background-size: cover;
    z-index: -1;
}

.container {
    background-color: #000000d1;
    ;
    width: 100%;
    max-width: none;
    height: 100%;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-wrapper {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 4rem 3rem;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    text-align: center;
    max-width: 600px;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.logo-container {
    margin-bottom: 2.5rem;
}

.logo {
    height: 80px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
    background: linear-gradient(45deg, var(--color-red), var(--color-yellow), var(--color-teal));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-size: 200% auto;
    animation: gradientFlow 5s ease infinite;
}

.subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
}

.description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text);
    margin-bottom: 3rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

/* Loader Animation matching logo colors */
.loader-container {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 3rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: bounce 1.4s infinite ease-in-out both;
}

.dot-1 {
    background-color: var(--color-red);
    animation-delay: -0.32s;
}

.dot-2 {
    background-color: var(--color-yellow);
    animation-delay: -0.16s;
}

.dot-3 {
    background-color: var(--color-teal);
}

.footer {
    margin-top: 2rem;
    font-size: 0.875rem;
    color: #888;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 1.5rem;
}

.contact-link {
    color: var(--color-teal);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    display: inline-block;
    margin-top: 0.5rem;
}

.contact-link:hover {
    color: var(--color-red);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes bounce {

    0%,
    80%,
    100% {
        transform: scale(0);
    }

    40% {
        transform: scale(1);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .content-wrapper {
        padding: 3rem 1.5rem;
        margin: 1rem;
    }

    .main-title {
        font-size: 2rem;
    }

    .logo {
        height: 60px;
    }
}