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

body {
    font-family: 'Inter', sans-serif;
    background-color: #0b1120 !important;
    background-image: radial-gradient(circle at top right, rgba(99, 102, 241, 0.15), transparent 600px), radial-gradient(circle at bottom left, rgba(76, 29, 149, 0.15), transparent 600px) !important;
    color: #e2e8f0;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.blog-container {
    max-width: 900px;
    margin: 2rem auto 1rem auto;
    padding: 1rem 2rem;
}

.blog-card {
    background-color: #1e293b;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    padding: 3rem;
    backdrop-filter: blur(10px);
}

h1, h2, h3 {
    color: #ffffff;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    background: linear-gradient(90deg, #6366f1, #a855f7, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-align: center;
    margin-bottom: 3rem;
}

p {
    margin-bottom: 1.5rem;
    color: #94a3b8;
}

a {
    color: #6366f1;
    text-decoration: none;
    transition: all 0.2s;
}

a:hover {
    color: #818cf8;
    text-decoration: underline;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
    color: #94a3b8;
}

.back-link:hover {
    color: #ffffff;
    text-decoration: none;
}

.faq-item {
    margin-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 1.5rem;
}

.faq-question {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.faq-answer {
    color: #94a3b8;
}

.logo-img {
    max-width: 250px;
    height: auto;
    display: block;
    margin: 0 auto 2rem auto;
}

/* Navigation Utilities */
.d-flex { display: flex !important; }
.flex-wrap { flex-wrap: wrap !important; }
.justify-content-center { justify-content: center !important; }
.mb-5 { margin-bottom: 3rem !important; }

.btn {
    display: inline-block;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.4rem 1.2rem;
    font-size: 0.95rem;
    line-height: 1.5;
    border-radius: 8px;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    text-decoration: none !important;
}

.btn-outline-primary {
    color: #6366f1;
    border-color: #6366f1;
    background-color: transparent;
}

.btn-outline-primary:hover, .btn.active {
    color: #fff;
    background-color: #6366f1;
    border-color: #6366f1;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.4);
}

.shadow-sm {
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075) !important;
}

.footer {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem 0 0.5rem 0;
    color: #64748b;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 0.85rem;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #0b1120;
}
::-webkit-scrollbar-thumb {
    background: #1e293b;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #334155;
}
