body { 
    background-color: #020408; 
    color: #f1f5f9; 
}

/* Glassmorphism Utilities */
.glass-panel {
    background: rgba(10, 16, 26, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.neon-text { 
    text-shadow: 0 0 10px rgba(0, 209, 205, 0.5); 
}

.neon-box { 
    box-shadow: 0 0 15px rgba(0, 209, 205, 0.15); 
}

/* Custom Scrollbar */
::-webkit-scrollbar { 
    width: 5px; 
}

::-webkit-scrollbar-track { 
    background: #020408; 
}

::-webkit-scrollbar-thumb { 
    background: #1e293b; 
    border-radius: 10px; 
}

::-webkit-scrollbar-thumb:hover { 
    background: #00d1cd; 
}

/* SEO Content Section */
.seo-content-section {
    padding: 4rem 1.5rem;
    background-color: #020408;
}

.seo-content-container {
    max-width: 56rem;
    margin: 0 auto;
    color: #9ca3af;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    font-size: 0.875rem;
    line-height: 1.625;
}

.seo-content-section h2 {
    font-size: 1.5rem;
    font-family: 'Oswald', sans-serif;
    color: #ffffff;
}

.seo-content-section h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
}

.seo-content-section p {
    color: #9ca3af;
    font-size: 0.875rem;
    line-height: 1.625;
}

.seo-content-section p strong {
    color: #ffffff;
    font-weight: 700;
}

