@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
        
body {
    font-family: 'Inter', sans-serif;
    background-color: #0a0a0c;
    scroll-behavior: smooth;
}

.glass-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.gradient-text {
    background: linear-gradient(135deg, #60a5fa 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-glow {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.1) 0%, rgba(0,0,0,0) 70%);
    z-index: -1;
}

.nav-link:hover {
    color: #60a5fa;
    transition: all 0.3s ease;
}

.app-shadow {
    box-shadow: 0 0 50px rgba(96, 165, 250, 0.2);
}

/* Professional FAQ Styling */
.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item[open] .faq-icon {
    transform: rotate(45deg);
    color: #ef4444;
}

.support-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid rgba(255,255,255,0.1);
}