:root {
    --primary-green: #2E6845;
    --primary-yellow: #f8e32c;
    --dark-bg: #0a120d;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --text-main: #ffffff;
    --text-muted: #a0b0a5;
}

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

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

/* Dynamic Background Elements */
.background-animation {
    position: absolute;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 0;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: float 20s infinite ease-in-out alternate;
}

.blob-1 {
    width: 40vw;
    height: 40vw;
    background: var(--primary-green);
    top: -10%;
    left: -10%;
    animation-delay: 0s;
}

.blob-2 {
    width: 30vw;
    height: 30vw;
    background: rgba(248, 227, 44, 0.2);
    /* Muted yellow */
    bottom: -10%;
    right: -10%;
    animation-delay: -5s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(5%, 10%) scale(1.1);
    }

    100% {
        transform: translate(-5%, 5%) scale(0.9);
    }
}

/* Main Container */
.container {
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: 800px;
    padding: 2rem;
}

/* Glassmorphism Card */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: fadeUp 1s ease-out forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* Logo Section */
.logo-container {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo {
    max-width: 160px;
    height: auto;
    margin-bottom: 0.8rem;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.1));
}

.tagline {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 6px;
    color: var(--primary-yellow);
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 0.5rem;
    opacity: 0.9;
    text-shadow: 0 0 10px rgba(248, 227, 44, 0.3);
}

/* Content Section */
.title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    line-height: 1.2;
}

.highlight {
    background: linear-gradient(135deg, var(--primary-yellow), #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

/* Progress Bar */
.progress-container {
    width: 100%;
    max-width: 400px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.progress-bar {
    height: 100%;
    width: 30%;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-yellow));
    border-radius: 10px;
    position: relative;
    animation: loadProgress 2s ease-out forwards, shimmer 2s infinite linear;
    background-size: 200% 100%;
}

@keyframes loadProgress {
    from {
        width: 0%;
    }

    to {
        width: 65%;
    }

    /* Representing 'under construction' state */
}

@keyframes shimmer {
    0% {
        background-position: 100% 0;
    }

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .container { width: 95%; padding: 1rem; }
    .title { font-size: 1.8rem; margin-bottom: 0.5rem; }
    .glass-card { padding: 1.8rem 1rem; border-radius: 20px; }
    .tagline { font-size: 0.8rem; letter-spacing: 3px; }
    .logo { max-width: 140px; margin-bottom: 0.5rem; }
    .subtitle { font-size: 0.9rem; margin-bottom: 1.5rem; }
    .contact-info { margin-top: 2rem; padding-top: 1.5rem; }
    .contact-details { flex-direction: column; gap: 0.8rem; width: 100%; }
    .contact-link { width: 90%; text-align: center; font-size: 0.85rem; padding: 0.7rem; }
    .divider { display: none; }
}

@media (max-width: 480px) {
    .title { font-size: 1.5rem; }
    .logo { max-width: 110px; }
    .glass-card { padding: 1.5rem 0.8rem; border-radius: 15px; }
}

/* Contact Info */
.contact-info {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--glass-border);
}

.contact-info h3 {
    font-family: 'Outfit', sans-serif;
    color: var(--primary-yellow);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-details {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.contact-link {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-link:hover {
    background: rgba(248, 227, 44, 0.1);
    color: var(--primary-yellow);
    border-color: rgba(248, 227, 44, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.divider {
    color: var(--text-muted);
    font-size: 1.2rem;
}