@import url('https://fonts.googleapis.com/css2?family=Geist+Mono:wght@100..900&display=swap');

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Geist Mono', monospace;
            background: #000;
            color: #fff;
            overflow-x: hidden;
        }

        /* FAQ Section */
        .faq-section {
            position: relative;
            padding: 100px 20px;
            background: transparent;
            overflow: hidden;
            border-bottom: 1px solid rgba(161, 1, 255, 0.1);
        }

        .faq-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(161, 1, 255, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(161, 1, 255, 0.03) 1px, transparent 1px);
            background-size: 60px 60px;
            animation: gridMove 35s linear infinite;
            z-index: 1;
        }

        @keyframes gridMove {
            0% {
                transform: translate(0, 0);
            }
            25% {
                transform: translate(30px, 30px);
            }
            50% {
                transform: translate(60px, 0);
            }
            75% {
                transform: translate(30px, -30px);
            }
            100% {
                transform: translate(0, 0);
            }
        }

        .faq-section::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(161, 1, 255, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            filter: blur(100px);
            animation: pulse-faq 8s ease-in-out infinite;
            z-index: 1;
        }

        @keyframes pulse-faq {
            0%, 100% {
                opacity: 0.5;
                transform: translate(-50%, -50%) scale(1);
            }
            50% {
                opacity: 0.8;
                transform: translate(-50%, -50%) scale(1.2);
            }
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .faq-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .faq-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(161, 1, 255, 0.15);
            border: 1px solid rgba(161, 1, 255, 0.4);
            padding: 10px 25px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 700;
            color: #A101FF;
            margin-bottom: 20px;
            backdrop-filter: blur(10px);
            text-transform: uppercase;
            letter-spacing: 1.2px;
        }

        .faq-badge i {
            animation: questionPulse 2s ease-in-out infinite;
        }

        @keyframes questionPulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.1);
            }
        }

        .faq-header h2 {
            font-size: 3rem;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 15px;
            background: linear-gradient(135deg, #fff 0%, #A101FF 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -1px;
        }

        .faq-header p {
            font-size: 1rem;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.6);
            max-width: 600px;
            margin: 0 auto;
        }

        .accordion-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .accordion {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(161, 1, 255, 0.2);
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .accordion:hover {
            border-color: rgba(161, 1, 255, 0.5);
            box-shadow: 0 5px 20px rgba(161, 1, 255, 0.1);
        }

        .accordion.active {
            border-color: #A101FF;
            box-shadow: 0 8px 30px rgba(161, 1, 255, 0.2);
        }

        .accordion-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 25px 30px;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }

        .accordion-header::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 4px;
            height: 100%;
            background: transparent;
            transition: background 0.3s ease;
        }

        .accordion.active .accordion-header::before {
            background: linear-gradient(180deg, #A101FF, #C04FFF);
        }

        .accordion-header:hover {
            background: rgba(161, 1, 255, 0.05);
        }

        .accordion-header h3 {
            font-size: 1.1rem;
            font-weight: 700;
            color: #fff;
            flex: 1;
            padding-right: 20px;
            transition: color 0.3s ease;
        }

        .accordion.active .accordion-header h3 {
            color: #A101FF;
        }

        .accordion-icon {
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(161, 1, 255, 0.1);
            border: 1px solid rgba(161, 1, 255, 0.3);
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .accordion-icon i {
            color: #A101FF;
            font-size: 0.9rem;
            transition: transform 0.3s ease;
        }

        .accordion.active .accordion-icon {
            background: #A101FF;
            border-color: #A101FF;
            transform: rotate(180deg);
        }

        .accordion.active .accordion-icon i {
            color: #fff;
        }

        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
        }

        .accordion.active .accordion-content {
            max-height: 600px;
            padding: 0 30px 25px 30px;
        }

        .accordion-content p {
            font-size: 0.95rem;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 15px;
        }

        .accordion-content ul {
            list-style: none;
            padding-left: 0;
        }

        .accordion-content ul li {
            font-size: 0.9rem;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.7);
            padding: 8px 0;
            padding-left: 30px;
            position: relative;
        }

        .accordion-content ul li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 6px;
            height: 6px;
            background: #A101FF;
            border-radius: 50%;
            box-shadow: 0 0 10px rgba(161, 1, 255, 0.5);
        }

        .accordion-content ul li strong {
            color: #A101FF;
            font-weight: 700;
        }

        /* Responsive */
        @media (max-width: 968px) {
            .faq-section {
                padding: 80px 20px;
            }

            .faq-header h2 {
                font-size: 2.5rem;
            }

            .accordion-header {
                padding: 20px 25px;
            }

            .accordion-header h3 {
                font-size: 1rem;
            }

            .accordion.active .accordion-content {
                padding: 0 25px 20px 25px;
            }
        }

        @media (max-width: 640px) {
            .faq-section {
                padding: 60px 15px;
            }

            .faq-header h2 {
                font-size: 2rem;
            }

            .faq-header p {
                font-size: 0.9rem;
            }

            .faq-badge {
                font-size: 0.75rem;
                padding: 8px 20px;
            }

            .accordion-header {
                padding: 18px 20px;
            }

            .accordion-header h3 {
                font-size: 0.95rem;
            }

            .accordion.active .accordion-content {
                padding: 0 20px 18px 20px;
            }

            .accordion-content p,
            .accordion-content ul li {
                font-size: 0.85rem;
            }

            .accordion-icon {
                width: 30px;
                height: 30px;
            }

            .accordion-icon i {
                font-size: 0.8rem;
            }
        }