:root {
    --color-bg: #f8fafc;
    --color-text: #0f172a;
    --color-text-muted: #64748b;
    --color-turkgo-red: #ea4335;
    --color-turkgo-blue: #1a73e8;
    --color-turkgo-orange: #f9ab00;
    --color-turkgo-dark: #011e41;
}

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

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text);
    overflow: hidden;
    position: relative;
}

/* Background animated abstract orbs */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    z-index: -1;
    animation: float 12s infinite ease-in-out alternate;
    opacity: 0.6;
}

.orb-1 {
    width: 350px; 
    height: 350px;
    background: rgba(234, 67, 53, 0.4);
    top: -5%; 
    left: 15%;
    animation-delay: 0s;
}

.orb-2 {
    width: 450px; 
    height: 450px;
    background: rgba(26, 115, 232, 0.35);
    bottom: -10%; 
    right: 5%;
    animation-delay: -4s;
}

.orb-3 {
    width: 300px; 
    height: 300px;
    background: rgba(249, 171, 0, 0.3);
    top: 50%; 
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -8s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(40px, 60px) scale(1.15); }
}

/* Glassmorphism Panel */
.glass-panel {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 32px;
    padding: 3.5rem 4rem;
    box-shadow: 
        0 4px 6px -1px rgba(0, 0, 0, 0.05),
        0 10px 15px -3px rgba(0, 0, 0, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    text-align: center;
    max-width: 650px;
    width: 92%;
    transform: translateY(30px);
    opacity: 0;
    animation: slideUpFade 1s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.2s;
    z-index: 10;
}

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

.logo-container {
    margin-bottom: 2.5rem;
}

.logo {
    max-width: 220px;
    height: auto;
    filter: drop-shadow(0 8px 16px rgba(1, 30, 65, 0.08));
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.info-badges {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 1);
    padding: 0.6rem 1.25rem;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(1, 30, 65, 0.04);
    transition: all 0.3s ease;
}

.badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(1, 30, 65, 0.08);
    border-color: rgba(26, 115, 232, 0.2);
}

.badge svg {
    color: var(--color-turkgo-blue);
}

.badge strong {
    color: var(--color-turkgo-dark);
    font-weight: 700;
}

.main-title {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0 0 1.25rem 0;
    background: linear-gradient(135deg, var(--color-turkgo-dark) 0%, var(--color-turkgo-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    margin: 0 0 3rem 0;
    line-height: 1.6;
    font-weight: 400;
}

/* Animated Loader Dots */
.loader {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    animation: bounce 1.5s infinite ease-in-out both;
}

.dot:nth-child(1) { 
    background-color: var(--color-turkgo-red);
    animation-delay: -0.32s; 
}
.dot:nth-child(2) { 
    background-color: var(--color-turkgo-blue);
    animation-delay: -0.16s; 
}
.dot:nth-child(3) { 
    background-color: var(--color-turkgo-orange);
}

@keyframes bounce {
    0%, 80%, 100% { transform: scale(0); opacity: 0.5; }
    40% { transform: scale(1); opacity: 1; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .glass-panel {
        padding: 2.5rem 2rem;
        border-radius: 24px;
    }
    
    .main-title {
        font-size: 2.25rem;
    }
    
    .logo {
        max-width: 180px;
    }
}

@media (max-width: 480px) {
    .glass-panel {
        padding: 2rem 1.5rem;
    }
    
    .main-title {
        font-size: 1.85rem;
    }
    
    .info-badges {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }
    
    .badge {
        justify-content: center;
    }
    
    .subtitle {
        font-size: 1rem;
    }
}
