:root {
    --bg: #03050a;
    --card-bg: rgba(255, 255, 255, 0.03);
    --border: rgba(255, 255, 255, 0.08);
    --accent: #6366f1;
    --text: #ffffff;
    --text-dim: #94a3b8;
    --gradient: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { background: var(--bg); color: var(--text); font-family: 'Inter', sans-serif; line-height: 1.6; scroll-behavior: smooth; overflow-x: hidden; }

.bg-gradient-container { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: -1; filter: blur(100px); }
.orb { position: absolute; width: 600px; height: 600px; border-radius: 50%; opacity: 0.12; animation: move 15s infinite alternate; }
.orb-purple { background: #a855f7; top: -10%; right: -5%; }
.orb-blue { background: #3b82f6; bottom: -10%; left: -5%; animation-delay: -5s; }

@keyframes move { 100% { transform: translate(50px, 50px); } }

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.small-container { max-width: 750px; }

.hero { padding: 100px 0 60px; text-align: center; }
.top-badge { display: inline-block; padding: 6px 16px; background: rgba(99, 102, 241, 0.1); border: 1px solid var(--accent); border-radius: 100px; font-size: 0.8rem; color: var(--accent); margin-bottom: 24px; }
.hero-title { font-family: 'Poppins'; font-size: clamp(2.2rem, 8vw, 4rem); line-height: 1.1; margin-bottom: 20px; }
.accent-text { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-subtitle { color: var(--text-dim); max-width: 650px; margin: 0 auto 40px; font-size: 1.1rem; }

.timer { display: flex; justify-content: center; gap: 10px; margin-bottom: 40px; }
.time-part { background: var(--card-bg); border: 1px solid var(--border); padding: 15px; border-radius: 12px; min-width: 80px; backdrop-filter: blur(10px); }
.time-part span { display: block; font-size: 1.8rem; font-weight: 700; color: var(--accent); }
.time-part label { font-size: 0.6rem; text-transform: uppercase; color: var(--text-dim); }

.btn { padding: 16px 32px; border-radius: 12px; font-weight: 600; text-decoration: none; display: inline-block; transition: 0.3s; border: none; cursor: pointer; }
.btn-primary { background: var(--gradient); color: white; box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3); }

.section { padding: 80px 0; }
.section-title { font-family: 'Poppins'; font-size: 2.2rem; text-align: center; margin-bottom: 40px; }
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

.glass-card, .step-card { background: var(--card-bg); border: 1px solid var(--border); padding: 30px; border-radius: 20px; backdrop-filter: blur(10px); }
.card-icon { font-size: 2rem; margin-bottom: 15px; }

.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.step-card { text-align: center; position: relative; }
.step-num { position: absolute; top: 15px; right: 15px; color: var(--accent); font-weight: 700; font-size: 0.8rem; }

.payment-card { background: #0B0E14; border: 1px solid var(--accent); padding: 40px; border-radius: 30px; text-align: center; max-width: 450px; margin: 0 auto; }
.qr-container { background: white; padding: 10px; border-radius: 15px; display: inline-block; margin: 20px 0; }
.qr-container img { width: 180px; }
.block-btn { width: 100%; margin-top: 10px; }

/* FAQ Styles */
.faq-list { margin-top: 20px; }
.faq-item { background: var(--card-bg); border: 1px solid var(--border); margin-bottom: 15px; border-radius: 15px; overflow: hidden; }
.faq-question { padding: 20px; cursor: pointer; display: flex; justify-content: space-between; font-weight: 600; transition: 0.3s; }
.faq-question:hover { background: rgba(255,255,255,0.02); }
.faq-answer { padding: 0 20px; max-height: 0; overflow: hidden; transition: 0.4s ease-out; color: var(--text-dim); font-size: 0.95rem; }
.faq-item.active .faq-answer { padding-bottom: 20px; max-height: 200px; }
.faq-icon { color: var(--accent); transition: 0.3s; }
.faq-item.active .faq-icon { transform: rotate(45deg); }

.footer { padding: 40px 0; text-align: center; border-top: 1px solid var(--border); color: var(--text-dim); }

.reveal { opacity: 0; transform: translateY(30px); transition: 0.8s; }
.reveal.active { opacity: 1; transform: translateY(0); }
.fade-in { animation: fadeIn 1s ease forwards; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

@media (max-width: 768px) { .hero-title { font-size: 2rem; } }