:root {
    --color-bg: #030014;
    --color-surface: rgba(255, 255, 255, 0.03);
    --color-surface-border: rgba(255, 255, 255, 0.08);
    --color-text-primary: #ffffff;
    --color-text-secondary: #a1a1aa;
    
    /* Vibrant gradients */
    --color-accent-1: #4f46e5;
    --color-accent-2: #ec4899;
    --color-accent-3: #8b5cf6;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

/* Dynamic Background Elements */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, var(--color-accent-1), transparent 60%);
    animation-delay: 0s;
}

.orb-2 {
    bottom: -20%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, var(--color-accent-2), transparent 60%);
    animation-delay: -5s;
}

.orb-3 {
    top: 30%;
    left: 40%;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, var(--color-accent-3), transparent 60%);
    opacity: 0.3;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(5%, 5%) scale(1.1); }
    66% { transform: translate(-5%, 5%) scale(0.9); }
}

/* Main Content area */
.content-wrapper {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

/* Glassmorphism Card */
.glass-card {
    background: var(--color-surface);
    border: 1px solid var(--color-surface-border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 24px;
    padding: 4rem;
    max-width: 600px;
    width: 100%;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    animation: fadeIn 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    100% { left: 100%; }
}

.logo-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
    cursor: pointer;
}

.logo-group:hover .brand-logo {
    opacity: 1;
    transform: scale(1.1);
}

.logo-group:hover .logo-title {
    color: var(--color-accent-1);
}

.logo-group:hover .logo-tagline {
    color: var(--color-text-primary);
}

.logo-img-wrapper {
    margin-bottom: 1rem;
}

.brand-logo {
    height: 5rem;
    width: auto;
    object-fit: contain;
    filter: invert(1);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 0.15em;
    line-height: 1;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.logo-tagline {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: bold;
    color: var(--color-accent-1);
    letter-spacing: 0.4em;
    margin-left: 0.25rem;
    text-align: center;
    transition: color 0.3s ease;
}

.subtitle {
    color: var(--color-text-secondary);
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    font-weight: 400;
    max-width: 90%;
    margin-inline: auto;
}

/* Progress indicator */
.progress-container {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    margin-bottom: 3rem;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    width: 15%; /* Initial progress */
    background: linear-gradient(90deg, var(--color-accent-1), var(--color-accent-2));
    border-radius: 4px;
    box-shadow: 0 0 10px var(--color-accent-2);
    animation: loadProgress 2s ease-out forwards;
}

@keyframes loadProgress {
    0% { width: 0; }
    100% { width: 35%; } /* Let's say 35% done */
}

/* Buttons */
.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--color-text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.social-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-accent-1), var(--color-accent-2));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    border-radius: 11px;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px rgba(236, 72, 153, 0.4);
    border-color: transparent;
}

.social-link:hover::before {
    opacity: 1;
}

.social-link.secondary {
    background: transparent;
    border-color: rgba(255,255,255,0.15);
}
.social-link.secondary::before {
    background: rgba(255,255,255,0.05);
}

/* Footer */
.footer {
    position: relative;
    z-index: 1;
    padding: 2rem;
    color: var(--color-text-secondary);
    font-size: 0.875rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.footer-logo {
    height: 50px; /* Increased to 50px */
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    .glass-card {
        padding: 3rem 2rem;
    }
    
    .logo {
        font-size: 3.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .social-links {
        flex-direction: column;
        width: 100%;
    }
    
    .social-link {
        width: 100%;
    }
}
