:root {
    --primary-gradient: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    --glass-bg: transparent;
    --glass-border: transparent;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --font-family: 'Inter', sans-serif;
}

body,
html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: var(--font-family);
    overflow-x: hidden;
    overflow-y: auto;
    background-color: #ffffff;
}

/* Background Handling */
.background-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    z-index: -1;
}

@keyframes zoomEffect {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

/* Main Container - Glassmorphism */
main {
    display: grid;
    place-items: center;
    min-height: 100vh;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.main-logo {
    max-width: 300px;
    height: auto;
    margin-bottom: 1.5rem;
    border-radius: 0;
    box-shadow: none;
}

.glass-container {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    border-radius: 0;
    padding: 3rem 4rem;
    margin: 0 auto;
    max-width: 600px;
    width: 100%;
    text-align: center;
    box-shadow: none;
    animation: fadeInUp 1s ease-out;
}

/* Typography */
.title {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    background: var(--primary-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

.subtitle {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-weight: 300;
}

.description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-top: 2rem;
}

.status-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(99, 102, 241, 0.2);
    border: 1px solid rgba(99, 102, 241, 0.4);
    border-radius: 0;
    color: #4f46e5;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .glass-container {
        padding: 2rem;
    }

    .title {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.25rem;
    }
}