@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background-color: #121212;
    color: #e5e7eb;
    margin: 0;
    overflow-x: hidden;
}

/* Animated Background Styles */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at center, #2c2c2c 0%, #121212 100%); /* Charcoal Grey Gradient */
    overflow: hidden;
    display: none; 
}

.circle {
    position: absolute;
    bottom: -300px; /* Start well off-screen at the bottom */
    background: rgba(255, 255, 255, 0.03); /* Very subtle white/grey for charcoal theme */
    border-radius: 50%;
    animation: rise linear infinite;
}

@keyframes rise {
    0% { transform: translateY(0) scale(0); opacity: 0; }
    20% { opacity: 0.4; }
    100% { transform: translateY(-130vh) scale(1.2); opacity: 0; } /* Slower/Smaller growth (scale 1.2) */
}

.glass-card {
    background: rgba(30, 30, 30, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid #333333;
    border-radius: 1.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-weather {
    animation: fadeInUp 0.6s ease-out forwards;
}

.loader {
    border: 3px solid #333333;
    border-top: 3px solid #ffffff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hide-scrollbar::-webkit-scrollbar { display: none; }
.hide-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
