*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #060d1a;
  --bg2: #0c1829;
  --bg3: #111f38;
  --card: #152338;
  --card2: #1c2e4a;
  --gold: #f0b429;
  --gold2: #d4961c;
  --gold3: #ffd166;
  --green: #10b981;
  --green2: #059669;
  --red: #ef4444;
  --red2: #dc2626;
  --blue: #3b82f6;
  --blue2: #2563eb;
  --txt: #e8f0fe;
  --txt2: #94a3b8;
  --txt3: #64748b;
  --border: rgba(255,255,255,0.07);
  --border2: rgba(255,255,255,0.13);
  --glow-gold: 0 0 30px rgba(240,180,41,0.3);
  --glow-green: 0 0 30px rgba(16,185,129,0.3);
  --radius: 12px;
  --radius2: 20px;
  --shadow: 0 8px 32px rgba(0,0,0,0.4);
  --shadow2: 0 20px 60px rgba(0,0,0,0.5);
}

html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--txt); font-family: 'Inter', sans-serif; font-size: 16px; line-height: 1.6; overflow-x: hidden; }
h1,h2,h3,h4,h5 { font-family: 'Rajdhani', sans-serif; line-height: 1.2; }
a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold3); }
img { max-width: 100%; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 28px; border-radius: 8px; font-family: 'Rajdhani', sans-serif;
  font-size: 17px; font-weight: 600; letter-spacing: 0.5px; cursor: pointer;
  border: none; transition: all 0.25s; text-decoration: none; white-space: nowrap;
}
.btn-lg { padding: 15px 36px; font-size: 18px; }
.btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold2)); color: #060d1a; }
.btn-gold:hover { background: linear-gradient(135deg, var(--gold3), var(--gold)); transform: translateY(-2px); box-shadow: var(--glow-gold); color: #060d1a; }
.btn-gold:disabled { background: #333; color: #666; cursor: not-allowed; transform: none; box-shadow: none; }
.btn-outline { background: transparent; color: var(--txt); border: 1.5px solid var(--border2); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-full { width: 100%; margin-top: 16px; }
.btn-gold-sm { padding: 8px 20px; font-size: 14px; border-radius: 6px; background: linear-gradient(135deg, var(--gold), var(--gold2)); color: #060d1a; font-weight: 600; cursor: pointer; border: none; font-family: 'Rajdhani', sans-serif; transition: all 0.2s; }
.btn-gold-sm:hover { background: linear-gradient(135deg, var(--gold3), var(--gold)); }
.btn-outline-sm { padding: 8px 20px; font-size: 14px; border-radius: 6px; background: transparent; color: var(--txt2); border: 1.5px solid var(--border2); cursor: pointer; font-family: 'Rajdhani', sans-serif; transition: all 0.2s; }
.btn-outline-sm:hover { border-color: var(--txt); color: var(--txt); }
.btn-green { background: linear-gradient(135deg, var(--green), var(--green2)); color: #fff; }
.btn-green:hover { transform: translateY(-2px); box-shadow: var(--glow-green); color: #fff; }
.btn-red { background: linear-gradient(135deg, var(--red), var(--red2)); color: #fff; }
.btn-red:hover { transform: translateY(-2px); color: #fff; }

/* ===== AGE MODAL ===== */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(6,13,26,0.97); backdrop-filter: blur(8px);
  z-index: 9999; display: flex; align-items: center; justify-content: center; padding: 20px;
}
.age-modal {
  background: var(--card); border: 1px solid var(--border2); border-radius: var(--radius2);
  padding: 40px; max-width: 520px; width: 100%; text-align: center;
  box-shadow: var(--shadow2); animation: fadeInUp 0.4s ease;
}
.age-modal-logo { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 24px; }
.age-modal-logo .logo-icon { font-size: 32px; color: var(--gold); }
.age-modal-logo .logo-text { font-family: 'Rajdhani', sans-serif; font-size: 20px; font-weight: 700; color: var(--txt); }
.age-modal-logo .logo-dot { color: var(--gold); }
.age-modal h2 { font-size: 28px; font-weight: 700; margin-bottom: 12px; color: var(--gold); }
.age-modal > p { color: var(--txt2); margin-bottom: 20px; font-size: 15px; }
.age-modal-disclaimer { background: rgba(240,180,41,0.08); border: 1px solid rgba(240,180,41,0.2); border-radius: 8px; padding: 14px 16px; margin-bottom: 24px; }
.age-modal-disclaimer p { font-size: 13px; color: var(--txt2); margin: 0; }
.age-checkbox-label {
  display: flex; align-items: flex-start; gap: 12px; text-align: left;
  cursor: pointer; margin-bottom: 24px; padding: 16px; border-radius: 10px;
  border: 1.5px solid var(--border); transition: border-color 0.2s; font-size: 14px; color: var(--txt2);
}
.age-checkbox-label:hover { border-color: var(--gold); }
.age-checkbox-label input[type="checkbox"] { display: none; }
.custom-checkbox {
  width: 22px; height: 22px; min-width: 22px; border-radius: 5px;
  border: 2px solid var(--border2); background: var(--bg2); transition: all 0.2s;
  display: flex; align-items: center; justify-content: center; margin-top: 1px;
}
.age-checkbox-label input:checked ~ .custom-checkbox { background: var(--gold); border-color: var(--gold); }
.age-checkbox-label input:checked ~ .custom-checkbox::after { content: '✓'; color: #060d1a; font-size: 14px; font-weight: 700; }
.age-checkbox-label.checked { border-color: var(--gold); background: rgba(240,180,41,0.05); }
.age-modal #age-confirm-btn { width: 100%; margin-bottom: 16px; }
.age-modal-footer { font-size: 13px; color: var(--txt3); }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9998;
  background: var(--bg3); border-top: 1px solid var(--border2);
  padding: 16px 24px; animation: slideUp 0.3s ease;
}
.cookie-content { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.cookie-content p { font-size: 14px; color: var(--txt2); flex: 1; min-width: 200px; margin: 0; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }

/* ===== HEADER ===== */
#site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(6,13,26,0.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border); padding: 0 24px;
}
.nav-container { max-width: 1200px; margin: 0 auto; height: 68px; display: flex; align-items: center; gap: 32px; }
.nav-logo { display: flex; align-items: center; gap: 8px; font-family: 'Rajdhani', sans-serif; font-size: 18px; font-weight: 700; color: var(--txt); text-decoration: none; flex-shrink: 0; }
.nav-logo:hover { color: var(--txt); }
.logo-suit { color: var(--gold); font-size: 22px; }
.logo-tld { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 28px; flex: 1; }
.nav-links a { font-family: 'Rajdhani', sans-serif; font-size: 16px; font-weight: 500; color: var(--txt2); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--gold); }
.nav-right { display: flex; align-items: center; gap: 16px; margin-left: auto; }
.coin-display { display: flex; align-items: center; gap: 7px; background: rgba(240,180,41,0.1); border: 1px solid rgba(240,180,41,0.25); border-radius: 20px; padding: 6px 14px; font-family: 'Rajdhani', sans-serif; font-size: 16px; font-weight: 600; color: var(--gold); }
.coin-icon { font-size: 16px; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--txt2); border-radius: 2px; transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero { position: relative; min-height: calc(100vh - 68px); display: flex; align-items: center; justify-content: center; text-align: center; padding: 80px 24px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 0%, rgba(240,180,41,0.08) 0%, transparent 70%), radial-gradient(ellipse at 80% 80%, rgba(16,185,129,0.06) 0%, transparent 60%), var(--bg); }
.hero-particle { position: absolute; font-size: 48px; opacity: 0.04; animation: float 8s infinite ease-in-out; user-select: none; }
.hero-particle.p1 { top: 10%; left: 5%; animation-delay: 0s; font-size: 64px; }
.hero-particle.p2 { top: 20%; right: 8%; animation-delay: 1s; color: #ef4444; }
.hero-particle.p3 { bottom: 30%; left: 10%; animation-delay: 2s; color: #ef4444; font-size: 56px; }
.hero-particle.p4 { bottom: 20%; right: 6%; animation-delay: 3s; }
.hero-particle.p5 { top: 50%; left: 2%; animation-delay: 4s; font-size: 40px; }
.hero-particle.p6 { top: 40%; right: 3%; animation-delay: 1.5s; color: #ef4444; font-size: 52px; }
.hero-particle.p7 { top: 70%; left: 15%; animation-delay: 2.5s; font-size: 36px; opacity: 0.03; }
.hero-particle.p8 { top: 15%; left: 40%; animation-delay: 3.5s; font-size: 30px; color: var(--gold); opacity: 0.06; }
.hero-content { position: relative; z-index: 2; max-width: 800px; }
.hero-badge { display: inline-block; background: rgba(240,180,41,0.1); border: 1px solid rgba(240,180,41,0.3); color: var(--gold); font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; padding: 6px 18px; border-radius: 20px; margin-bottom: 24px; }
.hero h1 { font-size: clamp(36px, 6vw, 72px); font-weight: 700; color: var(--txt); margin-bottom: 20px; }
.hero h1 span { color: var(--gold); }
.hero-sub { font-size: clamp(16px, 2vw, 19px); color: var(--txt2); max-width: 600px; margin: 0 auto 36px; line-height: 1.7; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats { display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: var(--radius2); padding: 24px 40px; }
.stat-item { text-align: center; padding: 0 32px; }
.stat-num { display: block; font-family: 'Rajdhani', sans-serif; font-size: 32px; font-weight: 700; color: var(--gold); }
.stat-label { font-size: 13px; color: var(--txt3); text-transform: uppercase; letter-spacing: 0.5px; }
.stat-divider { width: 1px; height: 40px; background: var(--border2); }

/* ===== SECTIONS ===== */
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag { display: inline-block; font-family: 'Rajdhani', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.section-header h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 700; color: var(--txt); margin-bottom: 16px; }
.section-header p { font-size: 17px; color: var(--txt2); max-width: 600px; margin: 0 auto; line-height: 1.7; }

/* ===== GAMES SECTION ===== */
.games-section { padding: 100px 0; background: var(--bg2); }
.games-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.game-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius2);
  overflow: hidden; transition: all 0.3s; position: relative;
}
.game-card:hover { transform: translateY(-6px); border-color: rgba(240,180,41,0.3); box-shadow: 0 20px 60px rgba(0,0,0,0.4), var(--glow-gold); }
.game-badge { position: absolute; top: 16px; right: 16px; background: var(--gold); color: #060d1a; font-family: 'Rajdhani', sans-serif; font-size: 12px; font-weight: 700; padding: 4px 12px; border-radius: 12px; letter-spacing: 0.5px; text-transform: uppercase; z-index: 2; }
.featured-game { border-color: rgba(240,180,41,0.25); }
.game-card-visual { height: 180px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.poker-visual { background: linear-gradient(135deg, #0d2137, #0a3d2e); }
.slots-visual { background: linear-gradient(135deg, #1a0a2e, #2d1a0a); }
.roulette-visual { background: linear-gradient(135deg, #0a1a0d, #1a0a0a); }
.card-preview { display: flex; gap: 8px; position: relative; z-index: 2; }
.mini-card { background: #fff; color: #111; border-radius: 6px; width: 52px; height: 72px; display: flex; flex-direction: column; align-items: center; justify-content: center; font-family: 'Rajdhani', sans-serif; font-size: 18px; font-weight: 700; box-shadow: 0 4px 16px rgba(0,0,0,0.4); }
.mini-card.red { color: #dc2626; }
.mini-card:nth-child(1) { transform: rotate(-8deg) translateY(4px); }
.mini-card:nth-child(3) { transform: rotate(8deg) translateY(4px); }
.slots-preview { display: flex; gap: 6px; position: relative; z-index: 2; }
.slot-reel-mini { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); border-radius: 8px; width: 56px; height: 64px; display: flex; align-items: center; justify-content: center; font-size: 28px; }
.wheel-preview { position: relative; z-index: 2; }
.wheel-mini { width: 100px; height: 100px; border-radius: 50%; background: conic-gradient(#dc2626 0deg 10deg, #222 10deg 20deg, #dc2626 20deg 30deg, #222 30deg 40deg, #dc2626 40deg 50deg, #222 50deg 60deg, #dc2626 60deg 70deg, #222 70deg 80deg, #dc2626 80deg 90deg, #222 90deg 180deg, #dc2626 180deg 270deg, #222 270deg 360deg); border: 4px solid var(--gold2); box-shadow: 0 0 20px rgba(240,180,41,0.3); animation: spin 8s linear infinite; }
.wheel-inner { position: absolute; inset: 15px; border-radius: 50%; background: #0a1a0d; display: flex; align-items: center; justify-content: center; }
.wheel-dot { width: 10px; height: 10px; background: var(--gold); border-radius: 50%; }
.game-glow { position: absolute; inset: 0; opacity: 0.4; }
.poker-glow { background: radial-gradient(circle at 50% 120%, rgba(16,185,129,0.3), transparent 60%); }
.slots-glow { background: radial-gradient(circle at 50% 120%, rgba(240,180,41,0.3), transparent 60%); }
.roulette-glow { background: radial-gradient(circle at 50% 120%, rgba(239,68,68,0.3), transparent 60%); }
.game-card-body { padding: 24px; }
.game-label { font-family: 'Rajdhani', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.game-card-body h3 { font-size: 22px; font-weight: 700; color: var(--txt); margin-bottom: 10px; }
.game-card-body p { font-size: 14px; color: var(--txt2); line-height: 1.6; margin-bottom: 14px; }
.game-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 4px; }
.tag { font-family: 'Rajdhani', sans-serif; font-size: 12px; font-weight: 600; padding: 3px 10px; border-radius: 12px; background: rgba(255,255,255,0.06); color: var(--txt2); border: 1px solid var(--border); }

/* ===== FEATURES ===== */
.features-section { padding: 100px 0; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; transition: all 0.3s; }
.feature-card:hover { transform: translateY(-4px); border-color: var(--border2); box-shadow: var(--shadow); }
.feature-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 20px; }
.feature-card h3 { font-size: 20px; font-weight: 700; color: var(--txt); margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: var(--txt2); line-height: 1.7; }

/* ===== CTA SECTION ===== */
.cta-section { padding: 80px 0; background: var(--bg2); }
.cta-box { background: linear-gradient(135deg, var(--card), var(--card2)); border: 1px solid rgba(240,180,41,0.2); border-radius: var(--radius2); padding: 60px; display: flex; align-items: center; gap: 60px; overflow: hidden; position: relative; }
.cta-box::before { content: ''; position: absolute; top: -50%; right: -10%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(240,180,41,0.06), transparent 60%); border-radius: 50%; }
.cta-content { flex: 1; position: relative; z-index: 2; }
.cta-content h2 { font-size: 40px; font-weight: 700; color: var(--txt); margin-bottom: 16px; }
.cta-content p { font-size: 17px; color: var(--txt2); margin-bottom: 28px; line-height: 1.7; }
.cta-cards { flex-shrink: 0; }
.cta-card-deck { display: flex; }
.cta-mini-card { background: #fff; color: #111; border-radius: 10px; width: 80px; height: 110px; display: flex; align-items: center; justify-content: center; font-family: 'Rajdhani', sans-serif; font-size: 22px; font-weight: 700; box-shadow: 0 8px 24px rgba(0,0,0,0.4); margin-left: -24px; }
.cta-mini-card:first-child { margin-left: 0; }
.cta-mini-card.red { color: #dc2626; }

/* ===== FOOTER ===== */
#site-footer { background: var(--bg); border-top: 1px solid var(--border); padding-top: 60px; }
.footer-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.footer-top { display: grid; grid-template-columns: 1fr auto; gap: 60px; padding-bottom: 40px; border-bottom: 1px solid var(--border); align-items: start; }
.footer-brand { max-width: 320px; }
.footer-logo { display: flex; align-items: center; gap: 8px; font-family: 'Rajdhani', sans-serif; font-size: 18px; font-weight: 700; color: var(--txt); text-decoration: none; margin-bottom: 14px; }
.footer-logo:hover { color: var(--txt); }
.footer-tagline { font-size: 14px; color: var(--txt3); line-height: 1.7; }
.footer-cols { display: flex; gap: 60px; }
.footer-col h4 { font-family: 'Rajdhani', sans-serif; font-size: 15px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--txt); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 14px; color: var(--txt3); text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-disclaimer { padding: 30px 0; border-bottom: 1px solid var(--border); }
.disclaimer-box { background: rgba(240,180,41,0.05); border: 1px solid rgba(240,180,41,0.15); border-radius: 10px; padding: 20px 24px; font-size: 13px; color: var(--txt3); line-height: 1.7; }
.disclaimer-box strong { color: var(--txt2); }
.help-links { display: flex; gap: 20px; margin-top: 10px; flex-wrap: wrap; }
.help-links a { color: var(--gold); font-size: 13px; font-weight: 500; }
.help-links a:hover { color: var(--gold3); }
.footer-contact { margin-top: 14px; display: flex; flex-direction: column; gap: 6px; }
.footer-contact a { font-size: 14px; color: var(--txt2); text-decoration: none; display: flex; align-items: center; gap: 8px; transition: color 0.2s; }
.footer-contact a:hover { color: var(--gold); }
.footer-contact .fc-icon { font-size: 15px; flex-shrink: 0; }
.footer-bottom { padding: 20px 0; }
.footer-bottom p { font-size: 13px; color: var(--txt3); text-align: center; }

/* ===== INNER PAGES ===== */
.page-hero { background: linear-gradient(180deg, var(--bg2) 0%, var(--bg) 100%); padding: 60px 24px 80px; text-align: center; border-bottom: 1px solid var(--border); }
.page-hero .page-tag { display: inline-block; font-family: 'Rajdhani', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.page-hero h1 { font-size: clamp(28px, 4vw, 52px); font-weight: 700; color: var(--txt); margin-bottom: 12px; }
.page-hero p { font-size: 17px; color: var(--txt2); max-width: 600px; margin: 0 auto; }
.page-content { max-width: 860px; margin: 0 auto; padding: 60px 24px; }
.page-content h2 { font-size: 28px; font-weight: 700; color: var(--txt); margin: 40px 0 14px; }
.page-content h2:first-child { margin-top: 0; }
.page-content h3 { font-size: 20px; font-weight: 600; color: var(--txt); margin: 28px 0 10px; }
.page-content p { font-size: 15px; color: var(--txt2); line-height: 1.8; margin-bottom: 16px; }
.page-content ul, .page-content ol { margin: 0 0 16px 20px; }
.page-content li { font-size: 15px; color: var(--txt2); line-height: 1.8; margin-bottom: 6px; }
.page-content ul li { list-style: disc; }
.page-content ol li { list-style: decimal; }
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin: 32px 0; }
.info-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.info-card .ic-icon { font-size: 32px; margin-bottom: 14px; }
.info-card h3 { font-size: 18px; font-weight: 700; color: var(--txt); margin-bottom: 8px; }
.info-card p { font-size: 14px; color: var(--txt2); margin: 0; line-height: 1.6; }
.steps-list { display: flex; flex-direction: column; gap: 20px; margin: 24px 0; }
.step-item { display: flex; gap: 20px; align-items: flex-start; }
.step-num { width: 40px; height: 40px; min-width: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold2)); color: #060d1a; font-family: 'Rajdhani', sans-serif; font-size: 18px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.step-body h3 { font-size: 18px; font-weight: 700; color: var(--txt); margin-bottom: 6px; }
.step-body p { font-size: 14px; color: var(--txt2); margin: 0; line-height: 1.6; }
.faq-list { display: flex; flex-direction: column; gap: 12px; margin: 24px 0; }
.faq-item { background: var(--card); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.faq-question { width: 100%; background: none; border: none; padding: 20px 24px; text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-question span:first-child { font-family: 'Rajdhani', sans-serif; font-size: 17px; font-weight: 600; color: var(--txt); }
.faq-arrow { color: var(--gold); font-size: 18px; transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer p { padding: 0 24px 20px; font-size: 14px; color: var(--txt2); line-height: 1.7; margin: 0; }
.faq-item.open .faq-answer { max-height: 300px; }
.community-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin: 32px 0; }
.community-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius2); padding: 32px; text-align: center; transition: all 0.3s; }
.community-card:hover { transform: translateY(-4px); border-color: rgba(240,180,41,0.2); }
.community-card .cc-icon { font-size: 40px; margin-bottom: 16px; }
.community-card h3 { font-size: 20px; font-weight: 700; color: var(--txt); margin-bottom: 10px; }
.community-card p { font-size: 14px; color: var(--txt2); line-height: 1.7; margin: 0; }
.notice-box { background: rgba(239,68,68,0.08); border: 1px solid rgba(239,68,68,0.25); border-radius: 10px; padding: 20px 24px; margin: 24px 0; }
.notice-box strong { color: #fca5a5; display: block; margin-bottom: 8px; font-family: 'Rajdhani', sans-serif; font-size: 16px; }
.notice-box p { font-size: 14px; color: var(--txt2); margin: 0; line-height: 1.7; }
.help-orgs { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; margin: 24px 0; }
.help-org-card { background: var(--card); border: 1px solid rgba(16,185,129,0.2); border-radius: 10px; padding: 20px; }
.help-org-card h4 { font-family: 'Rajdhani', sans-serif; font-size: 17px; font-weight: 700; color: var(--green); margin-bottom: 6px; }
.help-org-card p { font-size: 13px; color: var(--txt2); margin-bottom: 10px; line-height: 1.5; }
.help-org-card a { font-size: 13px; color: var(--gold); font-weight: 500; }
.legal-date { font-size: 13px; color: var(--txt3); margin-bottom: 32px; }

/* ===== GAME PAGES ===== */
.game-page { min-height: calc(100vh - 68px); background: var(--bg2); padding: 40px 24px; }
.game-wrapper { max-width: 1000px; margin: 0 auto; }
.game-header-bar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; flex-wrap: wrap; gap: 16px; }
.game-title-area h1 { font-size: 32px; font-weight: 700; color: var(--txt); }
.game-title-area p { font-size: 14px; color: var(--txt2); }
.game-coins-bar { display: flex; align-items: center; gap: 12px; }
.game-coin-display { background: rgba(240,180,41,0.1); border: 1px solid rgba(240,180,41,0.3); border-radius: 12px; padding: 10px 20px; font-family: 'Rajdhani', sans-serif; font-size: 18px; font-weight: 700; color: var(--gold); display: flex; align-items: center; gap: 8px; }
.back-link { font-family: 'Rajdhani', sans-serif; font-size: 15px; color: var(--txt2); text-decoration: none; display: flex; align-items: center; gap: 6px; transition: color 0.2s; }
.back-link:hover { color: var(--gold); }
.game-arena { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius2); padding: 32px; }

/* ===== ANIMATIONS ===== */
@keyframes float { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-20px) rotate(5deg); } }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.5; } }
@keyframes winFlash { 0%,100% { background: rgba(16,185,129,0.1); } 50% { background: rgba(16,185,129,0.3); } }
@keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes reelSpin { 0% { transform: translateY(0); } 100% { transform: translateY(-100%); } }
@keyframes wheelSpin { from { transform: rotate(0deg); } to { transform: rotate(var(--final-angle,360deg)); } }
@keyframes shake { 0%,100% { transform: translateX(0); } 20%,60% { transform: translateX(-6px); } 40%,80% { transform: translateX(6px); } }
@keyframes glow-pulse { 0%,100% { box-shadow: 0 0 10px rgba(240,180,41,0.3); } 50% { box-shadow: 0 0 30px rgba(240,180,41,0.6); } }

/* ===== POKER STYLES ===== */
.poker-table { background: radial-gradient(ellipse, #1a5c3a, #0d3d26); border: 8px solid #7c4b1e; border-radius: 120px; padding: 32px; min-height: 200px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 20px; position: relative; margin-bottom: 24px; }
.poker-table::before { content: ''; position: absolute; inset: 8px; border: 2px solid rgba(255,255,255,0.06); border-radius: 110px; pointer-events: none; }
.poker-cards { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.play-card { width: 76px; height: 106px; background: #fff; border-radius: 8px; display: flex; flex-direction: column; align-items: center; justify-content: center; font-family: 'Rajdhani', sans-serif; font-size: 22px; font-weight: 700; box-shadow: 0 4px 16px rgba(0,0,0,0.5); cursor: pointer; transition: all 0.2s; position: relative; color: #111; border: 2px solid transparent; user-select: none; }
.play-card.red { color: #dc2626; }
.play-card.held { border-color: var(--gold); transform: translateY(-12px); }
.play-card.held::after { content: 'HOLD'; position: absolute; bottom: -24px; left: 50%; transform: translateX(-50%); font-size: 11px; font-weight: 700; color: var(--gold); white-space: nowrap; }
.play-card.face-down { background: linear-gradient(135deg, #1a3a8c, #0f2463); }
.play-card.face-down::before { content: '♠'; font-size: 32px; color: rgba(255,255,255,0.15); }
.play-card.new-card { animation: bounce 0.4s ease; }
.card-suit { font-size: 28px; line-height: 1; }
.card-rank { font-size: 16px; position: absolute; top: 6px; left: 8px; }
.card-rank-bot { font-size: 16px; position: absolute; bottom: 6px; right: 8px; transform: rotate(180deg); }
.poker-controls { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.bet-controls { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; justify-content: center; }
.bet-input-wrap { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.05); border: 1px solid var(--border2); border-radius: 8px; padding: 6px 12px; }
.bet-input-wrap label { font-family: 'Rajdhani', sans-serif; font-size: 14px; color: var(--txt2); }
.bet-input { background: none; border: none; color: var(--gold); font-family: 'Rajdhani', sans-serif; font-size: 18px; font-weight: 600; width: 80px; outline: none; text-align: center; }
.poker-message { font-family: 'Rajdhani', sans-serif; font-size: 22px; font-weight: 700; color: var(--gold); text-align: center; min-height: 32px; }
.poker-hand-rank { font-size: 14px; color: var(--txt2); text-align: center; }

/* ===== SLOTS STYLES ===== */
.slots-machine { background: linear-gradient(180deg, #1a0d3a, #2d1a0a); border: 4px solid var(--gold2); border-radius: 24px; padding: 32px; display: flex; flex-direction: column; align-items: center; gap: 24px; position: relative; box-shadow: 0 0 40px rgba(240,180,41,0.2); }
.slots-machine::before { content: '★ LUCKY SPIN SLOTS ★'; font-family: 'Rajdhani', sans-serif; font-size: 14px; font-weight: 700; letter-spacing: 3px; color: var(--gold); position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--bg2); padding: 0 16px; }
.slots-reels { display: flex; gap: 12px; background: rgba(0,0,0,0.4); border: 2px solid rgba(240,180,41,0.2); border-radius: 16px; padding: 16px; }
.reel-container { width: 96px; height: 96px; overflow: hidden; border-radius: 10px; background: rgba(0,0,0,0.5); border: 2px solid rgba(255,255,255,0.1); position: relative; }
.reel-container::before, .reel-container::after { content: ''; position: absolute; left: 0; right: 0; height: 24px; z-index: 2; pointer-events: none; }
.reel-container::before { top: 0; background: linear-gradient(180deg, rgba(0,0,0,0.6), transparent); }
.reel-container::after { bottom: 0; background: linear-gradient(0deg, rgba(0,0,0,0.6), transparent); }
.reel-strip { display: flex; flex-direction: column; align-items: center; transition: transform 0.1s linear; }
.reel-symbol { width: 96px; height: 96px; display: flex; align-items: center; justify-content: center; font-size: 44px; flex-shrink: 0; }
.slots-selector { position: absolute; top: 50%; left: 16px; right: 16px; height: 96px; border: 3px solid var(--gold); border-radius: 12px; transform: translateY(-50%); pointer-events: none; box-shadow: 0 0 20px rgba(240,180,41,0.4); }
.slots-pay-lines { font-family: 'Rajdhani', sans-serif; font-size: 13px; color: var(--txt3); text-align: center; }
.slots-result { font-family: 'Rajdhani', sans-serif; font-size: 26px; font-weight: 700; color: var(--gold); text-align: center; min-height: 40px; }
.slots-controls { display: flex; flex-direction: column; align-items: center; gap: 14px; width: 100%; }
.slots-bet-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; justify-content: center; }
.slots-bet-label { font-family: 'Rajdhani', sans-serif; font-size: 15px; color: var(--txt2); }
.bet-btn { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.08); border: 1px solid var(--border2); color: var(--txt); font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.bet-btn:hover { background: rgba(240,180,41,0.2); border-color: var(--gold); color: var(--gold); }
.bet-amount { font-family: 'Rajdhani', sans-serif; font-size: 22px; font-weight: 700; color: var(--gold); min-width: 60px; text-align: center; }
.spin-btn { width: 120px; height: 120px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold2)); border: none; cursor: pointer; font-family: 'Rajdhani', sans-serif; font-size: 18px; font-weight: 700; color: #060d1a; box-shadow: 0 4px 20px rgba(240,180,41,0.4); transition: all 0.2s; }
.spin-btn:hover:not(:disabled) { transform: scale(1.05); box-shadow: 0 6px 30px rgba(240,180,41,0.6); }
.spin-btn:disabled { background: #333; color: #666; cursor: not-allowed; box-shadow: none; transform: none; }
.spin-btn.spinning { animation: glow-pulse 0.5s infinite; }
.slots-paytable { width: 100%; background: rgba(0,0,0,0.3); border-radius: 10px; padding: 16px; }
.slots-paytable h4 { font-family: 'Rajdhani', sans-serif; font-size: 14px; font-weight: 600; color: var(--txt2); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 10px; text-align: center; }
.pay-rows { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 6px; }
.pay-row { display: flex; align-items: center; justify-content: space-between; font-size: 13px; padding: 4px 8px; border-radius: 4px; background: rgba(255,255,255,0.03); }
.pay-symbols { font-size: 16px; }
.pay-mult { font-family: 'Rajdhani', sans-serif; font-weight: 600; color: var(--gold); }
.win-line { animation: winFlash 0.5s infinite; }

/* ===== ROULETTE STYLES ===== */
.roulette-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.roulette-wheel-wrap { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.roulette-wheel-outer { width: 280px; height: 280px; border-radius: 50%; background: conic-gradient(#1a5c3a 0deg, #dc2626 9.7deg, #1a5c3a 19.4deg, #dc2626 29.1deg, #1a5c3a 38.8deg, #dc2626 48.5deg, #1a5c3a 58.2deg, #dc2626 67.9deg, #1a5c3a 77.6deg, #dc2626 87.3deg, #1a5c3a 97deg, #dc2626 106.7deg, #1a5c3a 116.4deg, #dc2626 126.1deg, #1a5c3a 135.8deg, #dc2626 145.5deg, #1a5c3a 155.2deg, #dc2626 164.9deg, #226616 174.6deg, #1a5c3a 184.3deg, #dc2626 194deg, #1a5c3a 203.7deg, #dc2626 213.4deg, #1a5c3a 223.1deg, #dc2626 232.8deg, #1a5c3a 242.5deg, #dc2626 252.2deg, #1a5c3a 261.9deg, #dc2626 271.6deg, #1a5c3a 281.3deg, #dc2626 291deg, #1a5c3a 300.7deg, #dc2626 310.4deg, #1a5c3a 320.1deg, #dc2626 329.8deg, #1a5c3a 339.5deg, #dc2626 349.2deg, #1a5c3a 360deg); border: 6px solid var(--gold2); position: relative; transition: transform 4s cubic-bezier(0.17, 0.67, 0.12, 1); box-shadow: 0 0 40px rgba(0,0,0,0.6), inset 0 0 40px rgba(0,0,0,0.4); }
.roulette-wheel-inner { position: absolute; inset: 30px; border-radius: 50%; background: radial-gradient(circle, #2a1a0a, #1a0a0a); border: 4px solid var(--gold2); display: flex; align-items: center; justify-content: center; }
.roulette-ball { width: 16px; height: 16px; border-radius: 50%; background: radial-gradient(circle at 40% 35%, #fff, #ccc); box-shadow: 0 2px 8px rgba(0,0,0,0.6); position: absolute; top: 20px; left: 50%; transform: translateX(-50%); transition: all 4s cubic-bezier(0.17, 0.67, 0.12, 1); }
.roulette-pointer { width: 0; height: 0; border-left: 10px solid transparent; border-right: 10px solid transparent; border-top: 24px solid var(--gold); position: absolute; top: -32px; left: 50%; transform: translateX(-50%); }
.roulette-result-display { font-family: 'Rajdhani', sans-serif; text-align: center; }
.result-number { font-size: 56px; font-weight: 700; color: var(--gold); line-height: 1; }
.result-color { font-size: 18px; font-weight: 600; color: var(--txt2); }
.roulette-bets { display: flex; flex-direction: column; gap: 16px; }
.bet-section-title { font-family: 'Rajdhani', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--txt3); margin-bottom: 8px; }
.bet-chips { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.chip { width: 52px; height: 52px; border-radius: 50%; border: 3px solid rgba(255,255,255,0.3); display: flex; align-items: center; justify-content: center; font-family: 'Rajdhani', sans-serif; font-size: 14px; font-weight: 700; cursor: pointer; transition: all 0.2s; color: #fff; }
.chip:hover { transform: scale(1.1); }
.chip.active { transform: scale(1.15); box-shadow: 0 0 16px currentColor; border-color: #fff; }
.chip-10 { background: #3b82f6; color: #fff; }
.chip-25 { background: #10b981; color: #fff; }
.chip-50 { background: #f59e0b; color: #111; }
.chip-100 { background: #ef4444; color: #fff; }
.chip-500 { background: #8b5cf6; color: #fff; }
.bet-options { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.bet-option { background: rgba(255,255,255,0.06); border: 1.5px solid var(--border); border-radius: 8px; padding: 10px 8px; text-align: center; cursor: pointer; transition: all 0.2s; }
.bet-option:hover { border-color: var(--gold); background: rgba(240,180,41,0.08); }
.bet-option.selected { border-color: var(--gold); background: rgba(240,180,41,0.15); }
.bet-option .opt-label { font-family: 'Rajdhani', sans-serif; font-size: 15px; font-weight: 600; color: var(--txt); display: block; }
.bet-option .opt-odds { font-size: 12px; color: var(--txt3); }
.bet-option.red-opt { border-color: rgba(239,68,68,0.3); }
.bet-option.red-opt:hover, .bet-option.red-opt.selected { border-color: var(--red); background: rgba(239,68,68,0.15); }
.bet-option.green-opt { border-color: rgba(16,185,129,0.3); }
.bet-option.green-opt:hover, .bet-option.green-opt.selected { border-color: var(--green); background: rgba(16,185,129,0.15); }
.number-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 4px; }
.num-btn { width: 36px; height: 36px; border-radius: 6px; border: none; cursor: pointer; font-family: 'Rajdhani', sans-serif; font-size: 14px; font-weight: 700; transition: all 0.2s; }
.num-btn.red-num { background: rgba(239,68,68,0.3); color: #fca5a5; }
.num-btn.black-num { background: rgba(255,255,255,0.1); color: var(--txt2); }
.num-btn.green-num { background: rgba(16,185,129,0.3); color: #6ee7b7; }
.num-btn:hover { transform: scale(1.12); }
.num-btn.selected { box-shadow: 0 0 10px currentColor; transform: scale(1.15); border: 2px solid #fff; }
.roulette-action { display: flex; flex-direction: column; gap: 10px; }
.current-bet-display { font-family: 'Rajdhani', sans-serif; font-size: 15px; color: var(--txt2); }
.current-bet-display span { color: var(--gold); font-weight: 700; font-size: 18px; }
.roulette-message { font-family: 'Rajdhani', sans-serif; font-size: 20px; font-weight: 700; color: var(--gold); min-height: 30px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .games-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; }
  .footer-cols { gap: 40px; }
  .roulette-layout { grid-template-columns: 1fr; }
  .roulette-wheel-outer { width: 240px; height: 240px; }
  .cta-box { flex-direction: column; padding: 40px 24px; }
}
@media (max-width: 640px) {
  .nav-links { display: none; position: absolute; top: 68px; left: 0; right: 0; background: rgba(6,13,26,0.98); flex-direction: column; padding: 20px 24px; gap: 16px; border-bottom: 1px solid var(--border); z-index: 99; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .hero-stats { padding: 20px; }
  .stat-item { padding: 0 16px; }
  .stat-num { font-size: 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-cols { flex-direction: column; gap: 28px; }
  .bet-options { grid-template-columns: 1fr; }
  .slots-reels { gap: 6px; }
  .reel-container { width: 78px; height: 78px; }
  .reel-symbol { width: 78px; height: 78px; font-size: 34px; }
  .poker-cards { gap: 6px; }
  .play-card { width: 62px; height: 88px; font-size: 18px; }
}
