:root {
    --bg-dark: #050505;
    --text-light: #ffffff;
    --text-dim: #a0a0a0;
    --accent-gold: #FFD700;
    --accent-purple: #4B0082;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.05);
    --card-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    position: relative;
    padding: 1rem;
}

/* Abstract Background Blobs */
.background-glob {
    position: absolute;
    width: 60vh;
    height: 60vh;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.2;
    z-index: -1;
    animation: float 20s infinite ease-in-out;
}

.glob-purple {
    background: var(--accent-purple);
    top: -10vh;
    left: -10vw;
}

.glob-gold {
    background: var(--accent-gold);
    bottom: -10vh;
    right: -10vw;
    animation-delay: -10s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, 30px);
    }
}

.container {
    width: 100%;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    z-index: 1;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 4rem 3rem;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.6);
}

.logo {
    max-width: 180px;
    height: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 20px rgba(75, 0, 130, 0.3));
    /* glowing logo shadow */
    border-radius: 50%;
    object-fit: cover;
}

.motto {
    font-family: 'Outfit', sans-serif;
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.mission {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-dim);
    font-weight: 300;
    margin-bottom: 2.5rem;
}

.highlight {
    color: var(--text-light);
    font-weight: 500;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--accent-purple) 0%, #2a0050 100%);
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(75, 0, 130, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(75, 0, 130, 0.6);
    background: linear-gradient(135deg, #5d00a0 0%, #3a0060 100%);
    border-color: rgba(255, 255, 255, 0.3);
}

.footer {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-dim);
    opacity: 0.6;
    margin-top: 1rem;
}

.disclaimer {
    margin-bottom: 0.25rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .glass-card {
        padding: 3rem 1.5rem;
    }

    .motto {
        font-size: 2rem;
    }

    .logo {
        max-width: 140px;
        margin-bottom: 2rem;
    }

    .mission {
        font-size: 1rem;
    }

    .background-glob {
        width: 40vh;
        height: 40vh;
    }
}