/* ===== xbajee app Design System - Emerald Trust Gaming UI ===== */
:root {
  --color-primary: #7c3aed;
  --color-primary-dark: #6d28d9;
  --color-primary-soft: #a78bfa;
  --color-secondary: #ec4899;
  --color-accent: #f59e0b;
  --color-bg: #020617;
  --color-bg-soft: #0a0a1a;
  --color-surface: #111827;
  --color-surface-strong: #1e1b4b;
  --color-card: #111827;
  --color-card-alt: #1e1b4b;
  --color-border: #7c3aed33;
  --color-border-strong: #7c3aed;
  --color-text: #f1f5f9;
  --color-text-soft: #cbd5e1;
  --color-text-muted: #94a3b8;
  --color-success: #34d399;
  --color-warning: #fbbf24;
  --color-danger: #f87171;
  --color-footer-bg: #030712;
  --color-footer-text: #64748b;
  --gradient-primary: linear-gradient(135deg, #7c3aed, #ec4899);
  --gradient-hero: linear-gradient(135deg, #0f0c29, #1a0533, #020617);
  --gradient-button: linear-gradient(135deg, #7c3aed, #ec4899);
  --gradient-card: linear-gradient(135deg, #7c3aed22, #ec489911);
  --shadow-header: 0 2px 24px #7c3aed33;
  --shadow-card: 0 4px 20px rgba(0,0,0,.3);
  --shadow-card-hover: 0 8px 32px #7c3aed44;
  --shadow-button: 0 0 20px #7c3aed66;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 30px;
  --motion-fast: .2s;
  --motion-normal: .3s;
  --header-h: 72px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--color-bg); color: var(--color-text); font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, "Noto Sans Bengali", sans-serif; line-height: 1.7; overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: color var(--motion-fast); }
a:hover { color: var(--color-primary-soft); }
img { max-width: 100%; height: auto; display: block; }
:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; } }

/* Container */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== HEADER ===== */
.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(2,6,23,.97); border-bottom: 1px solid var(--color-border); box-shadow: var(--shadow-header); backdrop-filter: blur(12px); }
.header-inner { width: 100%; max-width: none; padding-left: clamp(10px,1.2vw,20px); padding-right: clamp(10px,1.2vw,20px); display: flex; align-items: center; min-height: var(--header-h); gap: clamp(10px,1vw,18px); }
.brand-wrap { flex: 0 0 auto; margin-right: clamp(4px,.8vw,14px); }
.site-logo { display: block; width: auto; height: clamp(32px,3vw,42px); max-width: clamp(118px,10vw,168px); object-fit: contain; }
.primary-nav { flex: 1 1 auto; min-width: 0; display: flex; align-items: center; justify-content: center; flex-wrap: nowrap; gap: clamp(6px,.72vw,14px); white-space: nowrap; overflow: visible; }
.primary-nav a { flex: 0 1 auto; min-width: 0; padding: 9px clamp(6px,.65vw,12px); font-size: clamp(13px,.84vw,15px); line-height: 1; white-space: nowrap; color: var(--color-primary-soft); font-weight: 500; border-radius: 6px; transition: all var(--motion-fast); }
.primary-nav a:hover, .primary-nav a.active { color: #fff; background: var(--gradient-card); box-shadow: 0 0 8px #7c3aed44; }
.header-actions { flex: 0 0 auto; display: flex; align-items: center; gap: clamp(6px,.6vw,10px); white-space: nowrap; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 6px; font-weight: 600; border: none; cursor: pointer; transition: all var(--motion-fast); white-space: nowrap; }
.btn-login { background: transparent; color: var(--color-primary-soft); border: 1px solid var(--color-border-strong); border-radius: var(--radius-pill); padding: 8px 16px; font-size: 14px; min-height: 40px; }
.btn-login:hover { background: #7c3aed22; color: #fff; }
.btn-register { background: var(--gradient-button); color: #fff; border-radius: var(--radius-pill); padding: 8px 18px; font-size: 14px; min-height: 40px; box-shadow: var(--shadow-button); }
.btn-register:hover { opacity: .88; }
.nav-toggle { display: none; flex: 0 0 40px; width: 40px; height: 40px; background: transparent; border: 1px solid var(--color-border); border-radius: 8px; cursor: pointer; align-items: center; justify-content: center; flex-direction: column; gap: 5px; padding: 10px; }
.nav-toggle span { display: block; width: 100%; height: 2px; background: var(--color-primary); border-radius: 2px; transition: all var(--motion-fast); }
.mobile-menu { display: none; }
.mobile-menu.is-open { display: block; position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0; background: rgba(2,6,23,.98); z-index: 999; overflow-y: auto; padding: 20px; backdrop-filter: blur(16px); }
.mobile-menu-inner { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu-inner a { display: block; padding: 14px 16px; color: var(--color-text); font-size: 16px; border-radius: var(--radius-sm); transition: background var(--motion-fast); }
.mobile-menu-inner a:hover { background: var(--gradient-card); }
.mobile-menu-actions { display: flex; gap: 10px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--color-border); }
.mobile-menu-actions .btn { flex: 1; justify-content: center; min-height: 44px; }

@media (max-width: 1180px) {
  .primary-nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .header-inner { padding-left: clamp(8px,2.4vw,14px); padding-right: clamp(8px,2.4vw,14px); justify-content: flex-start; gap: clamp(6px,1.8vw,10px); }
  .brand-wrap { flex: 0 1 auto; margin-right: 0; }
  .site-logo { height: clamp(30px,8vw,40px); max-width: clamp(104px,27vw,138px); }
  .header-actions { margin-left: auto; flex: 0 0 auto; justify-content: flex-end; gap: clamp(5px,1.6vw,8px); }
  .header-actions .btn { min-height: 40px; padding-inline: clamp(10px,2.6vw,14px); font-size: clamp(12px,3.2vw,14px); }
  .nav-toggle { margin-left: 2px; }
}
@media (max-width: 375px) {
  .header-inner { padding-left: 8px; padding-right: 8px; gap: 6px; }
  .site-logo { max-width: 104px; }
  .header-actions .btn { min-height: 38px; padding-inline: 9px; font-size: 12px; }
  .nav-toggle { flex-basis: 38px; width: 38px; height: 38px; }
}

/* ===== BREADCRUMB ===== */
.breadcrumb-nav { background: var(--color-bg-soft); padding: 12px 0; border-bottom: 1px solid var(--color-border); }
.breadcrumb-nav ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; max-width: 1200px; margin: 0 auto; padding: 0 20px; font-size: 13px; }
.breadcrumb-nav li::after { content: "/"; margin-left: 8px; color: var(--color-text-muted); }
.breadcrumb-nav li:last-child::after { display: none; }
.breadcrumb-nav a { color: var(--color-primary-soft); }
.breadcrumb-nav .current { color: var(--color-text-muted); }

/* ===== TICKER ===== */
.ticker-wrap { background: var(--gradient-primary); padding: 8px 0; overflow: hidden; }
.ticker-inner { display: inline-block; white-space: nowrap; animation: ticker 28s linear infinite; }
.ticker-inner span { display: inline-block; padding: 0 32px; font-size: 13px; font-weight: 600; color: #fff; }
.ticker-inner span i { margin-right: 6px; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===== SECTIONS ===== */
section { padding: 72px 0; }
.alt-bg { background: var(--color-bg-soft); }
.section-head { text-align: center; margin-bottom: 48px; }
.section-tag { display: inline-block; background: var(--gradient-card); border: 1px solid var(--color-border); color: var(--color-primary-soft); border-radius: 16px; padding: 4px 16px; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 12px; }
.section-head h2, h2 { font-size: clamp(1.4rem,3.5vw,2.2rem); font-weight: 800; color: var(--color-text); line-height: 1.25; margin-bottom: 8px; }
.section-bar { width: 60px; height: 3px; background: var(--gradient-primary); border-radius: 2px; margin: 12px 0 20px; }
.section-head .section-bar { margin: 12px auto 20px; }
.section-head p { color: var(--color-text-muted); max-width: 600px; margin: 0 auto; font-size: 15px; line-height: 1.8; }

/* ===== HERO ===== */
.home-hero { background: var(--gradient-hero); min-height: 80vh; display: flex; align-items: center; padding: 60px 0 40px; position: relative; overflow: hidden; }
.home-hero::before { content: ""; position: absolute; top: -80px; left: -80px; width: 400px; height: 400px; background: radial-gradient(circle, #7c3aed44 0%, transparent 70%); border-radius: 50%; animation: pulseGlow 4s ease-in-out infinite; }
@keyframes pulseGlow { 0%,100% { transform: scale(1); opacity: .7; } 50% { transform: scale(1.2); opacity: 1; } }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; position: relative; z-index: 1; }
.hero-badge { display: inline-block; background: var(--gradient-card); border: 1px solid var(--color-border-strong); color: var(--color-primary-soft); border-radius: 20px; padding: 4px 16px; font-size: 13px; margin-bottom: 18px; }
.hero-content h1 { font-size: clamp(1.8rem,5vw,3.2rem); font-weight: 800; line-height: 1.2; margin-bottom: 20px; }
.hero-lead { color: var(--color-text-muted); font-size: 16px; line-height: 1.8; margin-bottom: 30px; max-width: 560px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.btn-primary-hero { background: var(--gradient-button); color: #fff; border: none; border-radius: var(--radius-pill); padding: 13px 34px; font-size: 16px; font-weight: 700; box-shadow: var(--shadow-button); min-height: 48px; }
.btn-primary-hero:hover { transform: translateY(-2px); box-shadow: 0 0 30px #ec489966; color: #fff; }
.btn-outline-hero { border: 1px solid var(--color-border-strong); color: var(--color-primary-soft); border-radius: var(--radius-pill); padding: 12px 28px; font-size: 16px; font-weight: 600; background: transparent; min-height: 48px; }
.btn-outline-hero:hover { background: #7c3aed22; color: #fff; }
.hero-stats { display: flex; gap: 28px; flex-wrap: wrap; }
.stat { text-align: center; }
.stat-num { font-size: 1.6rem; font-weight: 800; background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; display: block; }
.stat-label { font-size: 12px; color: var(--color-text-muted); }
.hero-img { border-radius: 18px; box-shadow: 0 0 40px #7c3aed55; border: 1px solid var(--color-border); width: 100%; object-fit: cover; max-height: 420px; }

/* ===== INNER HERO ===== */
.inner-hero { background: var(--gradient-hero); padding: 50px 0 40px; }
.inner-hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 36px; align-items: center; }
.inner-hero-content h1 { font-size: clamp(1.5rem,4vw,2.4rem); font-weight: 800; line-height: 1.25; margin-bottom: 16px; }
.inner-hero-lead { color: var(--color-text-muted); font-size: 15px; line-height: 1.8; margin-bottom: 24px; }
.inner-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.inner-hero-img { border-radius: var(--radius-lg); box-shadow: var(--shadow-card); border: 1px solid var(--color-border); width: 100%; object-fit: cover; }
.page-lead { color: var(--color-text-muted); font-size: 16px; line-height: 1.8; max-width: 700px; margin-bottom: 20px; }

/* ===== FEATURE GRID ===== */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feature-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.feature-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.feature-card { background: var(--color-card); border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 28px 22px; text-align: center; transition: all var(--motion-normal); height: 100%; }
.feature-card:hover { border-color: var(--color-secondary); box-shadow: var(--shadow-card-hover); transform: translateY(-4px); }
.feature-icon { width: 60px; height: 60px; background: var(--gradient-card); border: 1px solid var(--color-border); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 1.5rem; color: var(--color-primary); }
.feature-icon.accent { color: var(--color-secondary); }
.feature-card h3 { font-size: 1rem; font-weight: 700; color: var(--color-text); margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--color-text-muted); line-height: 1.7; }

/* ===== GAME GRID ===== */
.game-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.game-grid.listing { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.game-card { background: var(--color-card); border: 1px solid var(--color-border); border-radius: var(--radius-md); overflow: hidden; transition: all var(--motion-normal); position: relative; }
.game-card:hover { transform: translateY(-6px); border-color: var(--color-primary); box-shadow: var(--shadow-card-hover); }
.game-thumb { width: 100%; height: 200px; object-fit: cover; }
.game-body { padding: 16px; }
.game-body h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.game-body p { font-size: 13px; color: var(--color-text-muted); line-height: 1.6; }
.btn-game { display: block; margin-top: 12px; background: var(--gradient-button); color: #fff; border-radius: var(--radius-lg); padding: 8px 0; text-align: center; font-size: 14px; font-weight: 600; transition: all var(--motion-fast); }
.btn-game:hover { opacity: .85; color: #fff; }
.game-badge { position: absolute; top: 10px; left: 10px; background: var(--gradient-button); color: #fff; font-size: 11px; font-weight: 700; border-radius: 10px; padding: 2px 10px; }
.game-badge.hot { background: #ef4444; }
.game-badge.new { background: var(--color-success); }
.game-badge.popular { background: var(--color-accent); color: #000; }

/* ===== STEP GRID ===== */
.step-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step-card { background: var(--color-card-alt); border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 28px 20px; text-align: center; height: 100%; transition: all var(--motion-normal); }
.step-card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-4px); }
.step-num { width: 48px; height: 48px; background: var(--gradient-button); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; font-weight: 800; color: #fff; margin: 0 auto 16px; box-shadow: var(--shadow-button); }
.step-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.step-card p { font-size: 14px; color: var(--color-text-muted); line-height: 1.7; }

/* ===== CONTENT LAYOUT ===== */
.prose-wide { max-width: 820px; margin: 0 auto; }
.prose-wide p, .prose-main p { font-size: 16px; line-height: 1.9; color: var(--color-text-soft); margin-bottom: 18px; }
.prose-wide h2, .prose-main h2 { margin-top: 36px; }
.prose-wide h3, .prose-main h3 { font-size: clamp(1.1rem,2vw,1.4rem); margin: 28px 0 12px; }
.content-with-sidebar { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(280px,.95fr); gap: 36px; align-items: start; }
.content-sidebar { position: sticky; top: 90px; }
.sidebar-img { border-radius: var(--radius-md); border: 1px solid var(--color-border); margin-bottom: 20px; }
.sidebar-card { background: var(--color-card-alt); border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 24px; }
.sidebar-card h4 { font-size: 15px; font-weight: 700; color: var(--color-primary-soft); margin-bottom: 10px; }
.sidebar-card p { font-size: 14px; color: var(--color-text-muted); line-height: 1.7; margin-bottom: 14px; }
.sidebar-card ul { list-style: none; font-size: 14px; color: var(--color-text-soft); }
.sidebar-card ul li { padding: 4px 0; border-bottom: 1px solid var(--color-border); }
.btn-outline-sm { display: inline-block; border: 1px solid var(--color-border-strong); color: var(--color-primary-soft); border-radius: var(--radius-pill); padding: 8px 18px; font-size: 13px; font-weight: 600; }
.btn-outline-sm:hover { background: #7c3aed22; color: #fff; }
.highlight-box { background: var(--gradient-card); border-left: 3px solid var(--color-primary); border-radius: 0 10px 10px 0; padding: 14px 20px; color: var(--color-primary-soft); font-size: 15px; line-height: 1.8; margin: 20px 0; font-style: italic; }
.content-img { border-radius: var(--radius-md); border: 1px solid var(--color-border); margin: 24px 0; box-shadow: var(--shadow-card); }
.full-band-img { width: 100%; border-radius: var(--radius-md); border: 1px solid var(--color-border); box-shadow: var(--shadow-card); max-height: 360px; object-fit: cover; margin: 36px 0; }
.section-img-band { margin: 36px auto; }

/* ===== ABOUT GRID ===== */
.about-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: start; }
.about-img { border-radius: var(--radius-md); border: 1px solid var(--color-border); box-shadow: var(--shadow-card); margin-bottom: 24px; }

/* ===== COMPARE TABLE ===== */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.compare-table { width: 100%; border-collapse: separate; border-spacing: 0; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-card); }
.compare-table thead th { padding: 16px 20px; font-size: 15px; font-weight: 700; text-align: center; }
.compare-table thead th:first-child { background: var(--color-card-alt); color: var(--color-primary-soft); text-align: left; }
.compare-table thead th:nth-child(2) { background: var(--gradient-primary); color: #fff; }
.compare-table thead th:last-child { background: #1f2937; color: var(--color-text-muted); }
.compare-table tbody tr:nth-child(odd) { background: var(--color-surface); }
.compare-table tbody tr:nth-child(even) { background: var(--color-bg); }
.compare-table tbody td { padding: 14px 20px; font-size: 14px; color: var(--color-text-soft); text-align: center; border-bottom: 1px solid #1e293b; }
.compare-table tbody td:first-child { text-align: left; font-weight: 500; }
.check-yes { color: var(--color-success); }
.check-partial { color: var(--color-warning); }
.check-no { color: var(--color-danger); }

/* ===== PLANS ===== */
.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.plan-card { background: var(--color-card); border: 1px solid var(--color-border); border-radius: var(--radius-xl); padding: 32px 24px; text-align: center; height: 100%; transition: all var(--motion-normal); position: relative; overflow: hidden; }
.plan-card.popular { border-color: var(--color-primary); box-shadow: var(--shadow-card-hover); background: linear-gradient(160deg, var(--color-card-alt), var(--color-card)); }
.plan-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); }
.plan-badge { position: absolute; top: 16px; right: -28px; background: var(--gradient-button); color: #fff; font-size: 11px; font-weight: 700; padding: 4px 36px; transform: rotate(45deg); }
.plan-icon { font-size: 2rem; margin-bottom: 12px; color: var(--color-primary); }
.plan-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--color-primary-soft); margin-bottom: 8px; }
.plan-price { font-size: 2rem; font-weight: 900; background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 4px; }
.plan-period { font-size: 13px; color: var(--color-text-muted); margin-bottom: 20px; }
.plan-card ul { list-style: none; text-align: left; margin-bottom: 24px; }
.plan-card ul li { padding: 6px 0; font-size: 14px; color: var(--color-text-soft); border-bottom: 1px solid #1e293b; display: flex; align-items: center; gap: 8px; }
.plan-card ul li i { color: var(--color-primary); width: 16px; }
.btn-primary-plan { display: block; width: 100%; background: var(--gradient-button); color: #fff; border-radius: var(--radius-xl); padding: 12px 0; font-weight: 700; font-size: 15px; }
.btn-primary-plan:hover { opacity: .85; color: #fff; }
.btn-outline-plan { display: block; width: 100%; background: transparent; color: var(--color-primary-soft); border: 1px solid var(--color-border-strong); border-radius: var(--radius-xl); padding: 11px 0; font-weight: 700; font-size: 15px; }
.btn-outline-plan:hover { background: #7c3aed22; color: #fff; }

/* ===== TESTIMONIALS ===== */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card { background: var(--color-card-alt); border: 1px solid var(--color-border); border-radius: 18px; padding: 28px 24px; height: 100%; transition: all var(--motion-normal); }
.testi-card:hover { border-color: var(--color-secondary); box-shadow: 0 0 20px #ec489944; }
.testi-quote { color: var(--color-primary); font-size: 2rem; margin-bottom: 12px; }
.testi-card p { color: var(--color-text-soft); font-size: 14px; line-height: 1.8; margin-bottom: 16px; font-style: italic; }
.testi-stars { color: var(--color-accent); font-size: 14px; margin-bottom: 12px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 44px; height: 44px; background: var(--gradient-button); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; font-weight: 700; color: #fff; flex-shrink: 0; }
.testi-author strong { font-size: 14px; display: block; }
.testi-author small { font-size: 12px; color: var(--color-text-muted); }

/* ===== RG / RESPONSIBLE GAMING ===== */
.rg-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 20px; }
.rg-card { background: var(--color-card); border: 1px solid #ec489933; border-radius: var(--radius-md); padding: 22px 18px; text-align: center; height: 100%; transition: all var(--motion-normal); }
.rg-card:hover { border-color: var(--color-secondary); transform: translateY(-3px); }
.rg-icon { font-size: 2rem; margin-bottom: 12px; color: var(--color-secondary); }
.rg-card h3 { font-size: 15px; font-weight: 700; color: #fda4af; margin-bottom: 8px; }
.rg-card p { font-size: 13px; color: var(--color-text-muted); line-height: 1.7; }
.rg-alert { background: linear-gradient(135deg, #450a0a33, #7f1d1d22); border: 1px solid #ef444455; border-radius: 12px; padding: 18px 24px; display: flex; align-items: flex-start; gap: 14px; margin-top: 20px; }
.rg-alert > i { color: var(--color-danger); font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.rg-alert p { font-size: 14px; color: #fca5a5; line-height: 1.7; margin: 0; }

/* ===== FAQ ===== */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { background: var(--color-card); border: 1px solid var(--color-border); border-radius: var(--radius-md); margin-bottom: 12px; overflow: hidden; }
.faq-trigger { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; background: transparent; border: none; color: var(--color-text); font-size: 15px; font-weight: 600; cursor: pointer; text-align: left; gap: 12px; }
.faq-trigger i { color: var(--color-primary); font-size: 1.2rem; transition: transform var(--motion-fast); flex-shrink: 0; }
.faq-trigger[aria-expanded="true"] i { transform: rotate(45deg); }
.faq-content { display: none; padding: 0 22px 18px; }
.faq-content p { font-size: 14px; color: var(--color-text-muted); line-height: 1.8; margin: 0; }
.faq-item.is-open .faq-content { display: block; }

/* ===== AUTH PAGES ===== */
.auth-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.auth-layout.reverse { direction: rtl; }
.auth-layout.reverse > * { direction: ltr; }
.auth-form-card { background: var(--color-card); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: 32px; }
.auth-form-card h2 { font-size: 1.2rem; margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; color: var(--color-text); margin-bottom: 6px; }
.form-group input { width: 100%; padding: 12px 16px; background: var(--color-bg); border: 1px solid var(--color-border); border-radius: var(--radius-sm); color: var(--color-text); font-size: 15px; transition: border-color var(--motion-fast); }
.form-group input:focus { border-color: var(--color-primary); outline: none; box-shadow: 0 0 0 3px #7c3aed33; }
.btn-full { width: 100%; justify-content: center; }
.form-note { font-size: 13px; color: var(--color-text-muted); margin-top: 14px; text-align: center; }
.form-note a { color: var(--color-primary-soft); font-weight: 600; }
.auth-lead { color: var(--color-text-muted); font-size: 15px; line-height: 1.8; margin-bottom: 24px; }
.auth-visual { border-radius: var(--radius-lg); border: 1px solid var(--color-border); margin-bottom: 20px; }
.auth-benefit-grid { display: grid; gap: 14px; }
.benefit-card { background: var(--color-card); border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 18px; display: flex; align-items: flex-start; gap: 14px; }
.benefit-card i { font-size: 1.5rem; color: var(--color-primary); flex-shrink: 0; }
.benefit-card h3 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.benefit-card p { font-size: 13px; color: var(--color-text-muted); margin: 0; }
.auth-trust-cards { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 16px; }
.trust-item { background: var(--color-card); border: 1px solid var(--color-border); border-radius: var(--radius-sm); padding: 10px 16px; display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--color-text-soft); }
.trust-item i { color: var(--color-primary); }

/* ===== POLICY PAGES ===== */
.policy-hero { background: var(--color-bg-soft); padding: 40px 0; border-bottom: 1px solid var(--color-border); }
.policy-hero h1 { font-size: clamp(1.4rem,3vw,2rem); }
.policy-updated { font-size: 13px; color: var(--color-text-muted); margin-top: 8px; }
.policy-body h2 { font-size: 1.2rem; margin-top: 32px; }
.policy-body p { font-size: 15px; line-height: 1.9; color: var(--color-text-soft); margin-bottom: 16px; }

/* ===== CTA ===== */
.section-cta-center { text-align: center; margin-top: 36px; }
.final-cta-inner { text-align: center; background: linear-gradient(135deg, var(--color-card-alt), var(--color-bg)); border: 1px solid var(--color-border); border-radius: var(--radius-xl); padding: 48px 32px; }
.final-cta-inner h2 { margin-bottom: 12px; }
.final-cta-inner p { color: var(--color-text-muted); max-width: 500px; margin: 0 auto 28px; font-size: 15px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.page-final-cta { padding: 60px 0; border-top: 1px solid var(--color-border); }
.home-final-cta { background: linear-gradient(135deg, var(--color-card-alt), #0f0c29); border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); }

/* ===== RELATED ===== */
.related-links { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 16px; }
.related-link { display: inline-flex; align-items: center; gap: 8px; background: var(--color-card); border: 1px solid var(--color-border); border-radius: var(--radius-pill); padding: 10px 20px; font-size: 14px; color: var(--color-primary-soft); transition: all var(--motion-fast); }
.related-link:hover { border-color: var(--color-primary); background: #7c3aed11; color: #fff; }

/* ===== TIP LIST ===== */
.tip-list { list-style: none; }
.tip-list li { padding: 8px 0; font-size: 15px; color: var(--color-text-soft); display: flex; align-items: flex-start; gap: 10px; border-bottom: 1px solid var(--color-border); }
.tip-list li i { color: var(--color-success); margin-top: 4px; flex-shrink: 0; }

/* ===== PRIVACY CARD ===== */
.privacy-card { background: linear-gradient(135deg, var(--color-card-alt), var(--color-card)); border: 1px solid var(--color-border); border-left: 4px solid var(--color-primary); border-radius: var(--radius-md); padding: 28px; }
.privacy-icon { font-size: 1.8rem; color: var(--color-primary); margin-bottom: 12px; }
.privacy-card h3 { font-size: 1rem; font-weight: 700; color: var(--color-primary-soft); margin-bottom: 10px; }
.privacy-card p { font-size: 14px; color: var(--color-text-muted); line-height: 1.8; margin: 0; }
.privacy-card a { color: var(--color-primary); text-decoration: underline; }

/* ===== FOOTER ===== */
.site-footer { background: var(--color-footer-bg); border-top: 1px solid var(--color-border); padding: 50px 0 20px; }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 32px; }
.footer-brand img { height: 36px; margin-bottom: 12px; }
.footer-desc { font-size: 13px; color: var(--color-footer-text); line-height: 1.7; max-width: 280px; margin-bottom: 12px; }
.footer-contact { font-size: 13px; color: var(--color-footer-text); }
.footer-contact i { color: var(--color-primary); margin-right: 6px; }
.footer-col h4 { font-size: 14px; font-weight: 700; color: var(--color-primary-soft); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { font-size: 13px; color: var(--color-footer-text); transition: all var(--motion-fast); }
.footer-col ul li a:hover { color: var(--color-primary); padding-left: 4px; }
.mt-payment { margin-top: 20px; }
.payment-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.payment-badges span { background: #1e293b; color: var(--color-text-muted); border-radius: 6px; padding: 4px 10px; font-size: 12px; }
.footer-bottom { max-width: 1200px; margin: 36px auto 0; padding: 20px 20px 0; border-top: 1px solid #1e293b; text-align: center; font-size: 13px; color: #475569; }
.footer-bottom a { color: var(--color-primary); }
.footer-warning { color: #334155; font-size: 12px; margin-top: 6px; }

/* ===== AOS DEGRADE ===== */
[data-aos] { opacity: 1 !important; transform: none !important; }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .hero-grid, .inner-hero-grid, .about-grid { grid-template-columns: 1fr; }
  .auth-layout, .auth-layout.reverse { grid-template-columns: 1fr; direction: ltr; }
  .content-with-sidebar { grid-template-columns: 1fr; }
  .content-sidebar { position: static; }
  .plan-grid, .testi-grid { grid-template-columns: 1fr 1fr; }
  .feature-grid, .feature-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .rg-grid { grid-template-columns: repeat(2, 1fr); }
  .step-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  section { padding: 48px 0; }
  .home-hero { min-height: auto; padding: 50px 0 30px; }
}
@media (max-width: 767px) {
  .game-grid { grid-template-columns: repeat(2, 1fr); }
  .plan-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 16px; }
  section { padding: 40px 0; }
}
@media (max-width: 480px) {
  .feature-grid, .rg-grid, .step-grid { grid-template-columns: 1fr; }
  .game-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .container { padding: 0 14px; }
}
@media (max-width: 375px) {
  body { font-size: 15px; }
  .hero-content h1, .inner-hero-content h1 { font-size: 1.5rem; }
  .btn-primary-hero, .btn-outline-hero { padding: 11px 22px; font-size: 14px; }
}
