@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

:root {
    --color-santana-teal: #00134d;
    --color-altihaus-beige: #f5f5f0;
    --color-text-dark: #1a1a1a;
    --color-text-muted: #666666;
    --color-gold: #c5a059;
    /* Muted gold accent */
    --glass-bg: rgba(255, 255, 255, 0.65);
    --glass-border: rgba(255, 255, 255, 0.4);
    --shadow-soft: 0 20px 40px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-santana-teal) 0%, #2c4f6e 40%, var(--color-altihaus-beige) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-dark);
}

.container {
    width: 100%;
    max-width: 900px;
    padding: 20px;
    perspective: 1000px;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 60px 40px;
    box-shadow: var(--shadow-soft);
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out forwards;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 60%);
    opacity: 0.4;
    pointer-events: none;
}

.logos-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-width: 200px;
}

.logo-img {
    max-width: 100%;
    height: auto;
    max-height: 80px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.transition-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-santana-teal);
    font-size: 2rem;
    opacity: 0.6;
    animation: slideRight 2s infinite ease-in-out;
}

.content {
    position: relative;
    z-index: 1;
}

h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    color: #222;
}

h1 span {
    color: var(--color-santana-teal);
}

p.subtitle {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    font-weight: 300;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background-color: #111;
    color: #fff;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.cta-button:hover {
    background-color: var(--color-santana-teal);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 77, 64, 0.25);
}

.timer {
    margin-top: 30px;
    font-size: 0.85rem;
    color: #888;
    font-weight: 400;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideRight {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(10px);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .logos-container {
        flex-direction: column;
        gap: 20px;
    }

    .transition-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
        animation: slideDown 2s infinite ease-in-out;
    }

    @keyframes slideDown {

        0%,
        100% {
            transform: rotate(90deg) translateX(0);
        }

        50% {
            transform: rotate(90deg) translateX(10px);
        }
    }

    .glass-card {
        padding: 40px 20px;
    }

    h1 {
        font-size: 1.75rem;
    }
}