        :root {
            --bg: #0a0a10;
            --card-bg: rgba(255, 255, 255, 0.03);
            --border: rgba(255, 255, 255, 0.08);
            --text-secondary: #a1a1aa;
            --font: 'Outfit', sans-serif;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }
        body { background-color: var(--bg); color: white; font-family: var(--font); overflow-x: hidden; line-height: 1.6; }

        @media (pointer: fine) {
            body { cursor: none; }
            a, button { cursor: none; }
            #cursor {
                position: fixed; top: 0; left: 0; width: 10px; height: 10px;
                background: white; border-radius: 50%; pointer-events: none; z-index: 99999;
                transform: translate(-50%, -50%);
                box-shadow: 0 0 10px 4px rgba(255,255,255,0.6), 0 0 30px 10px rgba(255,255,255,0.2);
                transition: transform 0.08s ease, box-shadow 0.2s ease;
            }
            #cursor.hovered {
                transform: translate(-50%, -50%) scale(1.8);
                box-shadow: 0 0 16px 6px rgba(255,255,255,0.8), 0 0 50px 18px rgba(255,255,255,0.3);
            }
        }

        .aurora { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; overflow: hidden; pointer-events: none; }
        .aurora div { position: absolute; width: 600px; height: 600px; background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, rgba(0,0,0,0) 70%); border-radius: 50%; filter: blur(80px); animation: move 20s infinite alternate; }
        @keyframes move { from { transform: translate(-10%, -10%); } to { transform: translate(20%, 20%); } }

        nav { position: fixed; top: 0; width: 100%; padding: 20px 5%; display: flex; justify-content: space-between; align-items: center; backdrop-filter: blur(10px); background: rgba(10,10,16,0.7); z-index: 1000; border-bottom: 1px solid var(--border); }
        .logo { font-weight: 700; font-size: 1.5rem; letter-spacing: -1px; }
        .logo a { text-decoration: none; color: white; display: flex; align-items: center; gap: 10px; }
        .nav-links { display: flex; gap: 30px; }
        .nav-links a { color: var(--text-secondary); text-decoration: none; font-size: 0.9rem; transition: 0.3s; }
        .nav-links a:hover { color: white; text-shadow: 0 0 10px white; }
        .nav-links a.active { color: white; }

        .hero { padding: 160px 20px 80px; text-align: center; }
        .hero h1 { font-size: clamp(2.5rem, 8vw, 5rem); font-weight: 700; letter-spacing: -3px; margin-bottom: 16px; background: linear-gradient(to bottom, #fff 40%, #555); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .hero p { color: var(--text-secondary); font-size: 1.1rem; max-width: 500px; margin: 0 auto; }

        .container { max-width: 800px; margin: 0 auto 120px; padding: 0 20px; }

        .category-label { display: inline-block; background: rgba(255,255,255,0.05); border: 1px solid var(--border); border-radius: 8px; font-size: 0.75rem; color: var(--text-secondary); padding: 4px 12px; margin-bottom: 16px; margin-top: 40px; letter-spacing: 0.05em; text-transform: uppercase; }
        .category-label:first-child { margin-top: 0; }

        .faq-item { background: var(--card-bg); border: 1px solid var(--border); border-radius: 16px; margin-bottom: 10px; overflow: hidden; transition: border-color 0.3s, background 0.3s; }
        .faq-item:hover { border-color: rgba(255,255,255,0.15); background: rgba(255,255,255,0.04); }
        .faq-item.open { border-color: rgba(255,255,255,0.18); background: rgba(255,255,255,0.04); }

        .faq-question { display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; cursor: pointer; gap: 16px; user-select: none; }
        .faq-question span { font-size: 0.97rem; font-weight: 500; color: white; }
        .faq-icon { color: var(--text-secondary); font-size: 0.85rem; transition: transform 0.3s ease; flex-shrink: 0; }
        .faq-item.open .faq-icon { transform: rotate(180deg); }

        .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; padding: 0 24px; }
        .faq-item.open .faq-answer { max-height: 400px; padding: 0 24px 20px; }
        .faq-answer p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7; border-top: 1px solid var(--border); padding-top: 16px; }
        .faq-answer a { color: white; text-decoration: underline; text-underline-offset: 3px; }
        .faq-answer strong { color: white; font-weight: 500; }

        footer { padding: 40px 20px; text-align: center; border-top: 1px solid var(--border); }

        @media (max-width: 600px) { .nav-links { display: none; } .hero h1 { letter-spacing: -1px; } }