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

body {
    background-color: #0B0D10;
    color: #FFFFFF;
    -webkit-font-smoothing: antialiased;
}

.nav-glass {
    background: rgba(11, 13, 16, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.glass-card {
    background: rgba(20, 23, 28, 0.6);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.1);
}

.surface-card {
    background: #14171C;
    border: 1px solid #2A2E35;
    transition: all 0.3s ease;
}

.surface-card:hover {
    border-color: #F5A623;
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.hero-bg {
    background: linear-gradient(180deg, #0B0D10 0%, #14171C 100%);
    background-image: radial-gradient(circle at 50% 0%, rgba(245, 166, 35, 0.05) 0%, transparent 50%);
}

.floating {
    animation: float 3s ease-in-out infinite;
}

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

.prose h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.prose h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #B0B3B8;
}

.prose p {
    color: #B0B3B8;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.prose ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    color: #B0B3B8;
    margin-bottom: 1rem;
}

.prose li {
    margin-bottom: 0.5rem;
}
