        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #0a0a0a;
            overflow-x: hidden;
        }

        .faq-section {
            padding: 100px 20px;
            background: linear-gradient(180deg, #0a0a0a 0%, #1a0f0f 50%, #0a0a0a 100%);
            position: relative;
            overflow: hidden;
        }

        .faq-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 30%, rgba(248, 169, 34, 0.15) 0%, transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(156, 20, 20, 0.15) 0%, transparent 40%),
                radial-gradient(circle at 50% 50%, rgba(248, 169, 34, 0.05) 0%, transparent 60%);
            animation: bgShift 15s ease-in-out infinite;
        }

        @keyframes bgShift {
            0%, 100% { opacity: 0.6; transform: scale(1); }
            50% { opacity: 1; transform: scale(1.1); }
        }

        .stars {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            pointer-events: none;
        }

        .star {
            position: absolute;
            width: 2px;
            height: 2px;
            background: #F8A922;
            border-radius: 50%;
            animation: twinkle 3s infinite ease-in-out;
        }

        @keyframes twinkle {
            0%, 100% { opacity: 0.3; transform: scale(1); }
            50% { opacity: 1; transform: scale(1.5); }
        }

        .faq-container {
            max-width: 1300px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .faq-header {
            text-align: center;
            margin-bottom: 80px;
            animation: fadeInScale 1s ease-out;
        }

        @keyframes fadeInScale {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .faq-header h1 {
            font-size: 3.5rem;
            background: linear-gradient(135deg, #F8A922 0%, #ffcc66 50%, #9C1414 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px;
            font-weight: 800;
            letter-spacing: 2px;
            text-transform: uppercase;
            position: relative;
            display: inline-block;
            animation: shimmer 3s ease-in-out infinite;
        }

        @keyframes shimmer {
            0%, 100% { filter: brightness(1); }
            50% { filter: brightness(1.3); }
        }

        .faq-header::after {
            content: '✨';
            position: absolute;
            font-size: 2rem;
            animation: floatStar 4s ease-in-out infinite;
        }

        @keyframes floatStar {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            25% { transform: translate(10px, -10px) rotate(90deg); }
            50% { transform: translate(-10px, -5px) rotate(180deg); }
            75% { transform: translate(5px, 10px) rotate(270deg); }
        }

        .faq-header p {
            font-size: 1.2rem;
            color: #ccc;
            margin-top: 25px;
            line-height: 1.8;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .faq-content-wrapper {
            display: grid;
            grid-template-columns: 45% 55%;
            gap: 60px;
            align-items: center;
        }

        .faq-image-container {
            position: relative;
            animation: slideInLeft 1.2s ease-out;
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-100px) rotate(-5deg);
            }
            to {
                opacity: 1;
                transform: translateX(0) rotate(0);
            }
        }

        .faq-image-frame {
            position: relative;
            padding: 20px;
            background: linear-gradient(135deg, rgba(248, 169, 34, 0.2), rgba(156, 20, 20, 0.2));
            border-radius: 30px;
            backdrop-filter: blur(10px);
            box-shadow: 0 30px 80px rgba(248, 169, 34, 0.3);
        }

        .faq-image-frame::before,
        .faq-image-frame::after {
            content: '';
            position: absolute;
            width: 100px;
            height: 100px;
            border: 3px solid #F8A922;
            border-radius: 20px;
            animation: rotateCorner 8s linear infinite;
        }

        .faq-image-frame::before {
            top: -15px;
            left: -15px;
            border-right: none;
            border-bottom: none;
        }

        .faq-image-frame::after {
            bottom: -15px;
            right: -15px;
            border-left: none;
            border-top: none;
            animation-direction: reverse;
        }

        @keyframes rotateCorner {
            0%, 100% { transform: rotate(0deg); }
            50% { transform: rotate(10deg); }
        }

        .faq-image-wrapper {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            transform-style: preserve-3d;
            transition: transform 0.6s ease;
        }

        .faq-image-wrapper:hover {
            transform: rotateY(5deg) rotateX(5deg);
        }

        .faq-image-wrapper img {
            width: 100%;
            height: 550px;
            object-fit: cover;
            display: block;
            filter: brightness(0.9) contrast(1.1);
        }

        .faq-image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(248, 169, 34, 0.3) 0%, rgba(156, 20, 20, 0.4) 100%);
            mix-blend-mode: multiply;
        }

        .faq-mystical-circle {
            position: absolute;
            width: 200px;
            height: 200px;
            border: 2px dashed #F8A922;
            border-radius: 50%;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation: spin 20s linear infinite;
            opacity: 0.3;
        }

        @keyframes spin {
            from { transform: translate(-50%, -50%) rotate(0deg); }
            to { transform: translate(-50%, -50%) rotate(360deg); }
        }

        .faq-questions-container {
            animation: slideInRight 1.2s ease-out;
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(100px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .faq-item {
            background: linear-gradient(135deg, rgba(20, 20, 20, 0.9), rgba(30, 15, 15, 0.9));
            border: 1px solid rgba(248, 169, 34, 0.2);
            border-radius: 16px;
            margin-bottom: 25px;
            overflow: hidden;
            position: relative;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            animation: revealFaq 0.8s ease-out backwards;
            backdrop-filter: blur(10px);
        }

        .faq-item:nth-child(1) { animation-delay: 0.1s; }
        .faq-item:nth-child(2) { animation-delay: 0.2s; }
        .faq-item:nth-child(3) { animation-delay: 0.3s; }
        .faq-item:nth-child(4) { animation-delay: 0.4s; }
        .faq-item:nth-child(5) { animation-delay: 0.5s; }

        @keyframes revealFaq {
            from {
                opacity: 0;
                transform: translateY(50px) rotateX(-15deg);
            }
            to {
                opacity: 1;
                transform: translateY(0) rotateX(0);
            }
        }

        .faq-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(248, 169, 34, 0.2), transparent);
            transition: left 0.6s ease;
        }

        .faq-item:hover::before {
            left: 100%;
        }

        .faq-item:hover {
            border-color: #F8A922;
            box-shadow: 0 15px 50px rgba(248, 169, 34, 0.3), inset 0 0 30px rgba(248, 169, 34, 0.1);
            transform: translateX(10px) scale(1.02);
        }

        .faq-question {
            padding: 30px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .faq-question::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 5px;
            height: 0;
            background: linear-gradient(180deg, #F8A922, #9C1414);
            border-radius: 0 3px 3px 0;
            transition: height 0.4s ease;
        }

        .faq-item.active .faq-question::before {
            height: 70%;
        }

        .faq-question h3 {
            font-size: 1.2rem;
            color: #fff;
            font-weight: 600;
            padding-right: 20px;
            flex: 1;
            transition: all 0.3s ease;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }

        .faq-item:hover .faq-question h3 {
            color: #F8A922;
            transform: translateX(5px);
        }

        .faq-item.active .faq-question h3 {
            color: #F8A922;
        }

        .faq-toggle-wrapper {
            position: relative;
            width: 45px;
            height: 45px;
            flex-shrink: 0;
        }

        .faq-toggle {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: linear-gradient(135deg, #F8A922, #d68f1a);
            color: #000;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 300;
            transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            box-shadow: 0 5px 20px rgba(248, 169, 34, 0.4);
            position: relative;
            overflow: hidden;
        }

        .faq-toggle::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
            animation: ripple 2s infinite;
        }

        @keyframes ripple {
            0% { transform: scale(0); opacity: 1; }
            100% { transform: scale(1.5); opacity: 0; }
        }

        .faq-item.active .faq-toggle {
            transform: rotate(135deg) scale(1.1);
            background: linear-gradient(135deg, #9C1414, #7a0f0f);
            box-shadow: 0 5px 20px rgba(156, 20, 20, 0.5);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.5s ease;
            background: rgba(0, 0, 0, 0.3);
        }

        .faq-item.active .faq-answer {
            max-height: 600px;
            padding: 30px;
            border-top: 1px solid rgba(248, 169, 34, 0.2);
        }

        .faq-answer p {
            color: #ccc;
            line-height: 1.9;
            font-size: 1.05rem;
            animation: fadeInText 0.6s ease-out 0.2s backwards;
        }

        @keyframes fadeInText {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 1024px) {
            .faq-content-wrapper {
                grid-template-columns: 1fr;
                gap: 60px;
            }

            .faq-image-container {
                max-width: 600px;
                margin: 0 auto;
            }
        }

        @media (max-width: 768px) {
            .faq-section {
                padding: 70px 20px;
            }

            .faq-header h1 {
                font-size: 2.5rem;
            }

            .faq-header p {
                font-size: 1rem;
            }

            .faq-image-wrapper img {
                height: 400px;
            }

            .faq-question {
                padding: 22px;
            }

            .faq-question h3 {
                font-size: 1.05rem;
            }

            .faq-toggle-wrapper {
                width: 40px;
                height: 40px;
            }

            .faq-toggle {
                font-size: 1.7rem;
            }

            .faq-item.active .faq-answer {
                padding: 22px;
            }
        }

        @media (max-width: 480px) {
            .faq-header h1 {
                font-size: 2rem;
            }

            .faq-image-wrapper img {
                height: 320px;
            }

            .faq-question h3 {
                font-size: 0.98rem;
            }

            .faq-answer p {
                font-size: 0.95rem;
            }

            .faq-image-frame::before,
            .faq-image-frame::after {
                width: 60px;
                height: 60px;
            }
        }