:root {
    --brand-navy: #152b47;
    --brand-green: #85C453;
    --brand-lightblue: #77b2d2;
    --bg-gradient: linear-gradient(135deg, #f0f7f3 0%, #e0f0fa 100%);
    --card-bg: rgba(255, 255, 255, 0.85);
    --card-border: rgba(255, 255, 255, 0.6);
    --text-main: #152b47;
    --text-muted: #4e6a85;
}

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

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

/* Sparkles Container */
#sparkles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.sparkle {
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    animation: floatUp 8s linear infinite;
}

.sparkle-green {
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M12 0C12 10 14 12 24 12C14 12 12 14 12 24C12 14 10 12 0 12C10 12 12 10 12 0Z" fill="%2385C453"/></svg>');
}

.sparkle-blue {
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M12 0C12 10 14 12 24 12C14 12 12 14 12 24C12 14 10 12 0 12C10 12 12 10 12 0Z" fill="%2377b2d2"/></svg>');
}

@keyframes floatUp {
    0% {
        transform: translateY(10vh) scale(0.5) rotate(0deg);
        opacity: 0;
    }
    20% {
        opacity: 0.6;
    }
    80% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-110vh) scale(1.2) rotate(90deg);
        opacity: 0;
    }
}

/* Main Content */
.container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 600px;
    padding: 20px;
}

.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(21, 43, 71, 0.08), inset 0 0 0 1px rgba(255,255,255,0.7);
    transform: translateY(20px);
    opacity: 0;
    animation: fadeUp 1s ease-out forwards;
}

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

.logo {
    max-width: 250px;
    height: auto;
    margin: 0 auto 30px;
    display: block;
    animation: fadeUp 1s ease-out forwards;
}

.title {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 12px;
    color: var(--brand-navy);
    letter-spacing: -1px;
}

.subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--brand-green);
    margin-bottom: 24px;
}

.description {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

.contact-info {
    border-top: 1px solid rgba(21, 43, 71, 0.1);
    padding-top: 30px;
}

.contact-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    background: var(--brand-green);
    color: white;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 100px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(133, 196, 83, 0.3);
}

.btn:hover {
    transform: translateY(-2px);
    background: #7ab54a;
    box-shadow: 0 15px 25px rgba(133, 196, 83, 0.4);
}

.btn:active {
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 480px) {
    .glass-card {
        padding: 40px 20px;
    }
    
    .logo {
        max-width: 200px;
    }
    
    .title {
        font-size: 2.2rem;
    }
    
    .subtitle {
        font-size: 1.25rem;
    }
}
