
@font-face {
    font-family: 'PolySans';
    src: url('/static/fonts/polysanstrial-neutral.woff2') format('woff2'),
         url('/static/fonts/polysanstrial-neutral.woff') format('woff');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'PolySans';
    src: url('/static/fonts/polysanstrial-median.woff2') format('woff2'),
         url('/static/fonts/polysanstrial-median.woff') format('woff');
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: 'PolySans';
    src: url('/static/fonts/PolySansTrial-Bulky.otf') format('opentype');
    font-weight: 700;
    font-display: swap;
}


* {
    font-family: 'PolySans' !important;
}

body {
    font-family: 'PolySans';
    background: #000000 url('/static/images/bg_FAQ.png') no-repeat center center fixed;
    background-size: cover;
    color: #fff;
}

header, header * {
    font-family: 'PolySans';
}


.faq-bg {
    background: rgba(0,0,0,0.12);
    border-radius: 12px;
    box-shadow: 0 4px 24px 0 rgba(109,40,217,0.12), 0 0 0 1px rgba(255,255,255,0.06);
    font-family: 'PolySans';
}

.faq-toggle {
    transition: transform 0.2s;
}

.mobile-nav {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.85);
    z-index: 50;
    display: none;
}

.mobile-nav.active {
    display: flex !important;
}



.bg-gradient-to-r {
    background-image: linear-gradient(to right, #a259ff, #38a3ff);
}

.text-white {
    color: #fff;
}

.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

.whitespace-nowrap {
    white-space: nowrap;
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-8 { gap: 2rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.mt-32 { margin-top: 8rem; }
.rounded-full { border-radius: 9999px; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.bg-white\/10 { background: rgba(255,255,255,0.10); }
.bg-gradient-to-b {
    background-image: linear-gradient(to bottom, #000, #333);
}
.text-gray-200 { color: #e5e7eb; }
.text-gray-400 { color: #9ca3af; }
.max-w-4xl { max-width: 56rem; }
.hidden { display: none !important; }
.block { display: block; }
.w-full { width: 100%; }
.h-8 { height: 2rem; }
.w-8 { width: 2rem; }
.absolute { position: absolute; }
.relative { position: relative; }
.z-50 { z-index: 50; }
.top-4 { top: 1rem; }
.right-4 { right: 1rem; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.min-h-screen { min-height: 100vh; }
.flex-col { flex-direction: column; }
.md\:flex { display: flex; }
.md\:text-2xl { font-size: 1.5rem; }
.md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.md\:px-8 { padding-left: 2rem; padding-right: 2rem; }
.md\:block { display: block; }
.md\:text-4xl { font-size: 2.25rem; }
.md\:hidden { display: none; }

@media (min-width: 768px) {
    .md\:flex { display: flex !important; }
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .md\:px-8 { padding-left: 2rem !important; padding-right: 2rem !important; }
    .md\:block { display: block !important; }
    .md\:text-2xl { font-size: 1.5rem !important; }
    .md\:text-4xl { font-size: 2.25rem !important; }
    .md\:hidden { display: none !important; }
}


input, textarea, select, button, 
h1, h2, h3, h4, h5, h6, 
p, span, div, a, li, 
.font-sans, .font-medium, .font-semibold, .font-bold {
    font-family: 'PolySans' !important;
}

