@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700&family=Figtree:wght@300;400;500;600&family=Inter:wght@400;500;600;700&display=swap');

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

body {
    font-family: 'Figtree', sans-serif;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 25%, #ff900b 100%);
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 144, 11, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(208, 154, 64, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(255, 144, 11, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.container {
    width: 100%;
    max-width: 900px;
    padding: 40px 20px;
    position: relative;
    z-index: 1;
}

.content {
    text-align: center;
    animation: fadeInUp 1s ease-out;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 60px 40px;
    border: 1px solid rgba(255, 144, 11, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.logo {
    max-width: 350px;
    width: 100%;
    height: auto;
    margin-bottom: 50px;
    filter: drop-shadow(0 15px 35px rgba(255, 144, 11, 0.4));
    animation: logoFloat 4s ease-in-out infinite;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 20px 40px rgba(255, 144, 11, 0.6));
}

h1 {
    font-family: 'Merriweather', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    background: linear-gradient(45deg, #fff 0%, #ff900b 50%, #D09A40 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    animation: titleGlow 3s ease-in-out infinite alternate;
    line-height: 1.2;
}

.subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.description {
    font-family: 'Figtree', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 50px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.loading-animation {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.dot {
    width: 16px;
    height: 16px;
    background: linear-gradient(45deg, #ff900b, #D09A40);
    border-radius: 50%;
    animation: dotBounce 1.6s ease-in-out infinite both;
    box-shadow: 0 4px 15px rgba(255, 144, 11, 0.4);
}

.dot:nth-child(1) { animation-delay: -0.32s; }
.dot:nth-child(2) { animation-delay: -0.16s; }
.dot:nth-child(3) { animation-delay: 0s; }

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

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes titleGlow {
    from {
        filter: brightness(1);
        transform: scale(1);
    }
    to {
        filter: brightness(1.1);
        transform: scale(1.02);
    }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 20px 15px;
    }
    
    .content {
        padding: 40px 30px;
        border-radius: 25px;
    }
    
    .logo {
        max-width: 280px;
        margin-bottom: 35px;
    }
    
    h1 {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .subtitle {
        font-size: 1.3rem;
        margin-bottom: 18px;
    }
    
    .description {
        font-size: 1.1rem;
        margin-bottom: 35px;
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .content {
        padding: 35px 25px;
        border-radius: 20px;
    }
    
    .logo {
        max-width: 220px;
        margin-bottom: 30px;
    }
    
    h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .subtitle {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .description {
        font-size: 1rem;
        margin-bottom: 30px;
    }
}

@media (max-width: 320px) {
    .container {
        padding: 15px 10px;
    }
    
    .content {
        padding: 30px 20px;
        border-radius: 15px;
    }
    
    .logo {
        max-width: 200px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .description {
        font-size: 0.95rem;
    }
}