/* Global Theme Variables */
:root {
  --black: #0b0b0c;
  --charcoal: #121214;
  --gold: #d4af37;
  --gold-strong: #e0b84f;
  --white: #ffffff;
  --muted: #bdbdbd;
  --accent: #ffd966;

  --container: 1200px;
  --radius: 12px;
  --shadow: 0 6px 24px rgba(0,0,0,0.4);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--white);
  background: var(--black);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: var(--white); text-decoration: none; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }

/* Header */
.header { position: sticky; top: 0; z-index: 50; background: rgba(11,11,12,0.8); backdrop-filter: blur(6px); border-bottom: 1px solid rgba(212,175,55,0.2); }
.header.scrolled { box-shadow: 0 8px 20px rgba(0,0,0,0.6); background: rgba(18,18,20,0.9); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 700; }
.logo-mark { color: var(--gold); font-size: 1.4rem; filter: drop-shadow(0 2px 6px rgba(212,175,55,0.4)); }
.logo-text strong { color: var(--gold); }

.nav-toggle { display: none; background: transparent; border: 1px solid var(--gold); color: var(--gold); padding: 6px 10px; border-radius: 8px; }
.nav-menu { display: flex; gap: 18px; list-style: none; margin: 0; padding: 0; }
.nav-menu a { padding: 8px 12px; border-radius: 999px; transition: 0.25s ease; }
.nav-menu a:hover { transform: translateY(-2px); }

/* Hero */
.hero { position: relative; min-height: 92vh; display: grid; place-items: center; text-align: left; overflow: hidden; }
.landing { position: relative; min-height: 80vh; display: grid; align-items: center; background: var(--black); padding: 48px 0; }
.hero-bg { position: absolute; inset: 0; background: none; }
.hero-overlay { position: absolute; inset: 0; background: none; animation: none; }
.landing-title { font-size: clamp(1.6rem, 4vw, 2.2rem); margin: 0 0 16px; font-weight: 700; letter-spacing: 0.5px; text-align: center; }
.game-grid { display: grid; grid-template-columns: repeat(4, minmax(240px, 1fr)); gap: 16px; justify-content: center; }
.landing-cta { display: flex; justify-content: center; margin-top: 24px; }
.game-card { position: relative; display: block; border-radius: 18px; overflow: hidden; padding: 18px; border: 1px solid rgba(212,175,55,0.25); box-shadow: var(--shadow); background: rgba(255,255,255,0.02); min-height: 120px; }
.game-card::after { content: ""; position: absolute; inset: 0; background: url('../assets/svg/patterns.svg') center/cover no-repeat; opacity: 0.12; }
.game-card .card-inner { position: relative; z-index: 2; display: flex; align-items: center; gap: 12px; }
.card-icon { font-size: 1.4rem; filter: drop-shadow(0 2px 6px rgba(212,175,55,0.35)); }
.card-title { font-weight: 700; letter-spacing: 0.4px; }
.game-card:hover { transform: translateY(-3px); border-color: var(--gold); transition: 0.25s ease; }

/* Card color themes */
.game-card.cricket { background: linear-gradient(90deg, rgba(120,70,50,0.45), rgba(255,255,255,0)); }
.game-card.football { background: linear-gradient(90deg, rgba(25,140,150,0.45), rgba(255,255,255,0)); }
.game-card.tennis { background: linear-gradient(90deg, rgba(180,40,50,0.45), rgba(255,255,255,0)); }
.game-card.horse { background: linear-gradient(90deg, rgba(220,140,40,0.45), rgba(255,255,255,0)); }
.game-card.greyhound { background: linear-gradient(90deg, rgba(120,60,200,0.45), rgba(255,255,255,0)); }
.game-card.ecricket { background: linear-gradient(90deg, rgba(150,60,210,0.45), rgba(255,255,255,0)); }
.game-card.evolution { background: linear-gradient(90deg, rgba(200,40,60,0.45), rgba(255,255,255,0)); }
.game-card.aviator { background: linear-gradient(90deg, rgba(220,40,40,0.5), rgba(255,255,255,0)); }

@media (max-width: 1024px) {
  .game-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 760px) {
  .game-grid { grid-template-columns: repeat(2, 1fr); }
}
.hero-vector { display: none; }
.tagline { font-size: clamp(2rem, 5vw, 3.6rem); margin: 0; letter-spacing: 0.5px; }
.accent { color: var(--gold); text-shadow: 0 4px 18px rgba(212,175,55,0.5); }
.text-gold-gradient { background: linear-gradient(90deg, var(--gold), var(--gold-strong)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.subtitle { color: var(--muted); margin: 12px auto 24px; max-width: 680px; }
.hero-image { display: none; }
.btn-glow { animation: btnGlow 3s ease-in-out infinite; }

@keyframes heroPulse {
  0%, 100% { opacity: 0.9; }
  50% { opacity: 1; }
}
@keyframes btnGlow {
  0%, 100% { box-shadow: 0 10px 24px rgba(212,175,55,0.35); }
  50% { box-shadow: 0 14px 34px rgba(212,175,55,0.55); }
}

.btn { display: inline-block; padding: 12px 18px; border-radius: 999px; transition: transform 0.2s ease, box-shadow 0.3s ease, background 0.3s; }
.btn:active { transform: scale(0.98); }
.btn-gold {
  color: var(--black);
  background: linear-gradient(90deg, var(--gold), var(--gold-strong));
  border: 1px solid rgba(212,175,55,0.5);
  box-shadow: 0 10px 24px rgba(212,175,55,0.35);
}
.btn-gold:hover {
  background: linear-gradient(90deg, var(--gold-strong), var(--gold));
  box-shadow: 0 14px 30px rgba(212,175,55,0.5);
  filter: brightness(1.02);
}
.btn-outline { color: var(--gold); border: 1px solid var(--gold); background: transparent; }
.btn-outline:hover { background: var(--gold); color: var(--black); }

/* Sections */
.section { padding: 64px 0; position: relative; }
.section-header { margin-bottom: 24px; }
.section-header h2 { font-size: clamp(1.4rem, 3.2vw, 2rem); margin: 0 0 8px; border-left: 6px solid var(--gold); padding-left: 10px; }
.section-header p { color: var(--muted); margin: 0; }

/* Live Matches Section */
.live-matches { padding: 48px 0; }
.live-matches .section-header { text-align: center; color: var(--white); }
.live-category { margin: 24px auto; max-width: 1100px; }
.cat-header { display: flex; align-items: center; gap: 10px; color: var(--white); font-weight: 700; margin-bottom: 10px; }
.cat-header .cat-title { position: relative; padding-left: 12px; }
.cat-header .cat-title::before { content: ""; position: absolute; left: 0; top: 50%; width: 8px; height: 18px; background: linear-gradient(180deg, var(--gold), var(--gold-strong)); transform: translateY(-50%) skewX(-18deg); border-radius: 2px; }
.live-list { display: flex; flex-direction: column; gap: 12px; }
.live-card { display: grid; grid-template-columns: 1.4fr 0.8fr 0.8fr; align-items: center; gap: 16px; background: rgba(255,255,255,0.02); color: var(--white); border: 1px solid rgba(212,175,55,0.25); border-radius: 14px; padding: 16px 20px; box-shadow: var(--shadow); }
.match-info h3 { font-size: 1rem; margin: 0 0 6px; }
.match-info .tournament { font-size: 0.9rem; color: var(--muted); margin: 0; }
.match-status { display: flex; align-items: center; gap: 12px; }
.badge-live { background: #24d87f; color: #0b3b24; font-weight: 700; font-size: 0.8rem; padding: 4px 10px; border-radius: 8px; }
.match-time { background: rgba(212,175,55,0.12); color: var(--white); padding: 4px 10px; border-radius: 6px; font-size: 0.85rem; border: 1px solid rgba(212,175,55,0.35); }
.match-actions { display: flex; align-items: center; justify-content: flex-end; gap: 12px; }
.match-actions .icon { font-size: 1.1rem; color: var(--gold); filter: drop-shadow(0 2px 6px rgba(212,175,55,0.35)); }
.chip { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(180deg, var(--gold), var(--gold-strong)); color: var(--black); font-weight: 700; border: 1px solid rgba(212,175,55,0.5); }
.btn-bet { white-space: nowrap; }

/* Enhance bet button to align with theme within live cards */
.live-card .btn-bet { border-color: rgba(212,175,55,0.6); box-shadow: 0 12px 28px rgba(212,175,55,0.45); }
.live-card .btn-bet:hover { box-shadow: 0 16px 34px rgba(212,175,55,0.55); transform: translateY(-1px); }

@media (max-width: 900px) {
  .live-card { grid-template-columns: 1fr; }
  .match-actions { justify-content: flex-start; }
}

/* Features Section */
.features { padding: 48px 0; }
.features .section-header { text-align: center; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.feature-card { position: relative; overflow: hidden; background: rgba(255,255,255,0.02); color: var(--white); border: 1px solid rgba(212,175,55,0.25); border-radius: 14px; box-shadow: var(--shadow); padding: 16px; transition: transform 0.2s ease, box-shadow 0.25s ease, border-color 0.25s ease; }
.feature-card::after { content: ""; position: absolute; inset: 0; background: url('../assets/svg/patterns.svg') center/cover no-repeat; opacity: 0.08; }
.feature-card:hover { transform: translateY(-3px); border-color: var(--gold); box-shadow: 0 10px 24px rgba(212,175,55,0.25); }
.feature-icon { font-size: 1.4rem; color: var(--gold); filter: drop-shadow(0 2px 6px rgba(212,175,55,0.35)); }
.feature-title { margin: 8px 0 6px; font-weight: 700; }
.feature-desc { color: var(--muted); margin: 0; }

@media (max-width: 1024px) {
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 760px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}

/* About */
.about-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 24px; }
.about-card { border: 1px solid rgba(212,175,55,0.25); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0)); }
.about-art { display: grid; place-items: center; padding: 18px; }
.about-art img { max-width: 100%; height: auto; filter: drop-shadow(0 6px 18px rgba(212,175,55,0.25)); }
.about-copy { padding: 18px; }
.about-copy p { margin: 0 0 12px; color: var(--muted); }

/* CTA Banner */
.cta-banner { padding: 40px 0; }
.cta-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 1px solid rgba(212,175,55,0.35);
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: var(--shadow);
}
.cta-lead { font-weight: 700; letter-spacing: 0.4px; }

@media (max-width: 640px) {
  .cta-box { flex-direction: column; text-align: center; }
}
.timeline { list-style: none; margin: 0; padding: 18px; display: grid; gap: 14px; }
.timeline li { position: relative; padding-left: 24px; }
.timeline .dot { position: absolute; left: 0; top: 7px; width: 10px; height: 10px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 6px rgba(212,175,55,0.12); }

/* Cards Scroller (News/Gallery) */
.cards-scroller { display: grid; grid-auto-flow: column; grid-auto-columns: 80%; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 8px; }
.cards-scroller > * { scroll-snap-align: start; }
.card { border: 1px solid rgba(212,175,55,0.25); border-radius: var(--radius); overflow: hidden; background: rgba(255,255,255,0.02); box-shadow: var(--shadow); transition: transform 0.25s ease, border-color 0.25s ease; }
.card:hover { transform: translateY(-4px); border-color: var(--gold); }
.card-body { padding: 14px; }
.card-body h3 { margin: 0 0 6px; }
.card-body time { color: var(--muted); font-size: 0.9rem; }

/* Slider Controls */
.slider-controls { display: flex; gap: 10px; justify-content: flex-end; margin-top: 10px; }
.slider-controls .prev, .slider-controls .next { width: 40px; height: 40px; border-radius: 999px; display: grid; place-items: center; }

/* Events */
.events-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.event-card { border: 1px solid rgba(212,175,55,0.25); border-radius: var(--radius); overflow: hidden; background: rgba(255,255,255,0.02); box-shadow: var(--shadow); }
.event-poster { position: relative; }
.poster-overlay { position: absolute; inset: 0; border: 2px solid rgba(212,175,55,0.35); mix-blend-mode: overlay; }
.event-body { padding: 16px; }
.countdown { color: var(--accent); font-weight: 600; padding-top: 6px; }

/* Analysis */
.analysis-grid { display: grid; grid-template-columns: 1fr; }
.analysis-card { display: grid; grid-template-columns: 140px 1fr; gap: 18px; align-items: center; border: 1px solid rgba(212,175,55,0.25); border-radius: var(--radius); padding: 16px; background: rgba(255,255,255,0.02); }
.author { position: relative; width: 140px; height: 140px; }
.author-img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.author-ring { position: absolute; inset: -4px; border-radius: 50%; border: 3px solid var(--gold); box-shadow: 0 0 0 10px rgba(212,175,55,0.15); }

/* Gallery */
.thumb { border: 1px solid rgba(212,175,55,0.25); border-radius: var(--radius); overflow: hidden; position: relative; }
.thumb img { transition: transform 0.25s ease, box-shadow 0.25s ease; }
.thumb:hover img { transform: scale(1.04); box-shadow: 0 12px 28px rgba(212,175,55,0.25); }

/* Community */
.community-cta { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 18px; border: 1px solid rgba(212,175,55,0.25); border-radius: var(--radius); padding: 18px; background: linear-gradient(180deg, rgba(212,175,55,0.08), rgba(255,255,255,0)); }
.community-art { height: 120px; border-radius: var(--radius); background: url('../assets/svg/patterns.svg') center/cover no-repeat; opacity: 0.25; }

/* Forms */
.form { display: grid; gap: 12px; }
.form-row { display: grid; gap: 6px; }
.form label { color: var(--muted); }
.form input, .form textarea { background: rgba(255,255,255,0.05); border: 1px solid rgba(212,175,55,0.3); color: var(--white); border-radius: 10px; padding: 10px 12px; outline: none; }
.form input::placeholder, .form textarea::placeholder { color: #8b8b8b; }
.form-note { color: var(--muted); font-size: 0.85rem; }
.form-actions { display: flex; gap: 10px; align-items: center; }

/* Contact page */
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 24px; }
.contact-card { border: 1px solid rgba(212,175,55,0.25); border-radius: var(--radius); overflow: hidden; background: rgba(255,255,255,0.02); box-shadow: var(--shadow); padding: 16px; }
.contact-title { margin: 0 0 10px; font-weight: 700; color: var(--gold); }

@media (max-width: 960px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* Partners */
.accent-text { color: var(--gold); }
.logos-scroller { display: grid; grid-auto-flow: column; grid-auto-columns: 200px; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 8px; }
.logo-item { scroll-snap-align: start; display: grid; place-items: center; height: 90px; border: 1px solid rgba(212,175,55,0.35); color: var(--gold); background: rgba(255,255,255,0.02); border-radius: var(--radius); font-weight: 700; letter-spacing: 0.8px; }

/* Footer */
.footer { border-top: 1px solid rgba(212,175,55,0.25); background: rgba(0,0,0,0.6); }
.footer-grid { display: grid; grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr; gap: 24px; padding: 24px 0; }
.footer-nav { display: grid; gap: 8px; }
.footer-nav a { color: var(--muted); }
.footer-nav a:hover { color: var(--gold); }
.footer-section h3, .footer-nav h3 { margin: 0 0 8px; font-weight: 700; }
.footer-section p { color: #cfcfcf; }
.feature-list { list-style: none; padding: 0; margin: 12px 0 0; display: grid; gap: 10px; }
.feature-list li strong { color: var(--gold); display: block; }
.why .section-header { text-align: center; }
.feature-title { color: var(--gold); }
/* Feature cards layout: 3 per row on desktop */
.feature-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 1024px) {
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .feature-grid { grid-template-columns: 1fr; }
}
.social { display: flex; gap: 12px; margin-top: 10px; }
.social-icon { border: 1px solid rgba(212,175,55,0.4); border-radius: 999px; padding: 6px; }
.social-icon:hover { background: var(--gold); color: var(--black); }
.footer-bottom { border-top: 1px solid rgba(212,175,55,0.25); padding: 12px 0; }
.footer-bottom .container { display: flex; align-items: center; justify-content: space-between; }
.quick-links { display: flex; gap: 12px; }

/* Responsive */
@media (max-width: 960px) {
  .about-grid { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr; }
.footer-grid { grid-template-columns: 1fr; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-art { order: -1; }
  .hero-copy { text-align: center; }
}

@media (max-width: 760px) {
  .nav-toggle { display: inline-block; }
  .nav-menu { position: absolute; right: 20px; top: 54px; background: rgba(18,18,20,0.95); border: 1px solid rgba(212,175,55,0.25); border-radius: var(--radius); padding: 10px; display: none; flex-direction: column; }
  .nav-menu.show { display: flex; }
  .cards-scroller { grid-auto-columns: 88%; }
}
/* Register (How to) */
.register { padding: 48px 0; }
.register .section-header { text-align: center; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.step-card { position: relative; overflow: hidden; background: rgba(255,255,255,0.02); color: var(--white); border: 1px solid rgba(212,175,55,0.25); border-radius: 14px; box-shadow: var(--shadow); padding: 16px; transition: transform 0.2s ease, box-shadow 0.25s ease, border-color 0.25s ease; }
.step-card::after { content: ""; position: absolute; inset: 0; background: url('../assets/svg/patterns.svg') center/cover no-repeat; opacity: 0.08; }
.step-card:hover { transform: translateY(-3px); border-color: var(--gold); box-shadow: 0 10px 24px rgba(212,175,55,0.25); }
.step-head { display: flex; align-items: center; gap: 10px; }
.step-num { display: inline-grid; place-items: center; width: 32px; height: 32px; border-radius: 999px; background: linear-gradient(90deg, var(--gold), var(--gold-strong)); color: var(--black); font-weight: 700; box-shadow: 0 6px 16px rgba(212,175,55,0.35); }
.step-title { margin: 0; font-weight: 700; }
.step-desc { margin: 8px 0 0; color: var(--muted); }

@media (max-width: 1024px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 760px) { .steps-grid { grid-template-columns: 1fr; } }
/* Bonuses: How to Bonuses section (simple list, no cards) */
.bonuses {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.bonuses .how-list {
  list-style: decimal;
  padding-left: 1.5rem;
  margin: 0;
  column-count: 1; /* single column requested */
  column-gap: 2rem;
}
.bonuses .how-list li {
  margin: 0.5rem 0 0.5rem 0.25rem;
}
.bonuses .how-list li::marker {
  color: #d4af37; /* gold accent */
  font-weight: 600;
}
.bonuses .how-note {
  margin-top: 1rem;
  color: #bdbdbd;
  font-size: 0.95rem;
}
@media (max-width: 768px) {
  .bonuses .how-list {
    column-count: 1;
  }
}
/* Funds: list-based steps (no cards) */
.funds .how-list {
  list-style: decimal;
  padding-left: 1.5rem;
  margin: 0;
}
.funds .how-list li { margin: 0.5rem 0 0.5rem 0.25rem; }
.funds .how-list li::marker { color: #d4af37; font-weight: 600; }
.funds-note { margin-top: 1rem; color: #bdbdbd; font-size: 0.95rem; }
/* ID Work: make intro paragraph use standard body color */
.id-work .section-header p { color: var(--white); }
/* Testimonials */
.testimonials { padding-top: 3rem; padding-bottom: 3rem; }
.quotes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.quote-item { background: rgba(255,255,255,0.04); border: 1px solid rgba(212,175,55,0.3); padding: 16px; border-radius: 10px; box-shadow: 0 6px 18px rgba(212,175,55,0.08); }
.quote-text { margin: 0 0 8px; font-size: 1rem; }
.quote-meta { color: #bdbdbd; font-size: 0.95rem; }
@media (max-width: 1024px) { .quotes-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 760px) { .quotes-grid { grid-template-columns: 1fr; } }

/* Reviews */
.reviews { padding-top: 3rem; padding-bottom: 3rem; }
.reviews-grid { display: flex; gap: 16px; overflow-x: auto; padding: 8px 4px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
.reviews-grid::-webkit-scrollbar { display: none; }
.reviews-grid { scrollbar-width: none; }
.review-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(212,175,55,0.25); border-radius: 12px; padding: 16px; box-shadow: var(--shadow); scroll-snap-align: start; flex: 0 0 320px; }
.review-head { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.review-head .name { margin: 0; font-size: 1.05rem; color: var(--white); }
.review-text { color: #cfcfcf; font-size: 0.98rem; }
.avatar { width: 48px; height: 48px; border-radius: 999px; display: grid; place-items: center; font-size: 1.6rem; background: rgba(255,255,255,0.06); border: 2px solid #d4af37; box-shadow: 0 4px 12px rgba(212,175,55,0.12); }
.reviews .avatar { font-size: 1rem; font-weight: 700; letter-spacing: 0.5px; color: #f2f2f2; text-transform: uppercase; }
.stars { color: #d4af37; font-size: 0.95rem; line-height: 1; }
@media (max-width: 760px) { .review-card { flex-basis: 85%; } }

/* FAQs */
.faqs { padding-top: 3rem; padding-bottom: 3rem; }
.faq-list { display: grid; gap: 10px; }
.faq-item { background: rgba(255,255,255,0.03); border: 1px solid rgba(212,175,55,0.25); border-radius: 10px; overflow: hidden; }
.faq-item summary { cursor: pointer; padding: 14px 16px; font-weight: 600; color: #f2f2f2; list-style: none; position: relative; }
.faq-item summary::marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 16px; color: #d4af37; }
.faq-item[open] summary::after { content: "–"; }
.faq-item p { padding: 0 16px 16px; color: #cfcfcf; }

/* Payments */
.payments { padding-top: 3rem; padding-bottom: 3rem; }
.payment-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.payment-badges .badge { border: 1px solid rgba(212,175,55,0.4); color: #f2f2f2; padding: 8px 12px; border-radius: 999px; background: rgba(255,255,255,0.03); box-shadow: 0 4px 12px rgba(212,175,55,0.08); }
.payment-note { margin-top: 10px; color: #bdbdbd; font-size: 0.95rem; }

/* Support */
.support { padding-top: 3rem; padding-bottom: 3rem; }
.support-box { display: flex; justify-content: space-between; align-items: center; gap: 16px; background: linear-gradient(135deg, rgba(212,175,55,0.12), rgba(255,255,255,0.04)); border: 1px solid rgba(212,175,55,0.45); padding: 20px; border-radius: 14px; box-shadow: 0 10px 28px rgba(212,175,55,0.16); position: relative; overflow: hidden; }
.support-box::before { content: ""; position: absolute; inset: 0; background-image: url('assets/svg/patterns.svg'); background-size: 240px; background-position: center; opacity: 0.08; mix-blend-mode: screen; pointer-events: none; }
.support-copy { display: flex; flex-direction: column; gap: 10px; flex: 1; }
.support-icon { width: 48px; height: 48px; border-radius: 999px; display: grid; place-items: center; background: rgba(255,255,255,0.06); border: 2px solid #d4af37; box-shadow: 0 4px 12px rgba(212,175,55,0.18); }
.support-icon-img { width: 24px; height: 24px; display: block; }
.support-desc { color: #e6e6e6; }
.support-channels { display: flex; flex-wrap: wrap; gap: 8px; }
.support-channels .channel { display: inline-flex; align-items: center; gap: 8px; border: 1px solid rgba(212,175,55,0.4); color: #f2f2f2; padding: 6px 10px; border-radius: 999px; background: rgba(255,255,255,0.05); box-shadow: 0 4px 12px rgba(212,175,55,0.1); font-size: 0.95rem; }
.support-channels .channel-icon { width: 20px; height: 20px; display: block; }
.support-actions { display: flex; align-items: center; gap: 10px; }
.support-actions .btn-gold { box-shadow: 0 6px 16px rgba(212,175,55,0.25); }
.support-actions .btn-gold:hover { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(212,175,55,0.35); }
@media (max-width: 760px) { .support-box { flex-direction: column; align-items: flex-start; } .support-actions { width: 100%; } }
.betting .how-list {
  list-style: decimal;
  padding-left: 1.5rem;
  margin: 0;
}
.betting .how-list li { margin: 0.5rem 0 0.5rem 0.25rem; }
.betting .how-list li::marker { color: #d4af37; font-weight: 600; }
.betting-note { margin-top: 1rem; color: #bdbdbd; font-size: 0.95rem; }

.withdraw .how-list {
  list-style: decimal;
  padding-left: 1.5rem;
  margin: 0;
}
.withdraw .how-list li { margin: 0.5rem 0 0.5rem 0.25rem; }
.withdraw .how-list li::marker { color: #d4af37; font-weight: 600; }
.withdraw-note { margin-top: 1rem; color: #bdbdbd; font-size: 0.95rem; }

.payments .methods-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.payments .methods-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 0.5rem 0;
}
.payments .method-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
}
.payments-note { margin-top: 1rem; color: #bdbdbd; font-size: 0.95rem; }

.payments .gateway-logos {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 0.25rem 0 0.5rem;
  scroll-snap-type: x mandatory;
}
.payments .gateway-card {
  height: 64px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.08);
  scroll-snap-align: start;
}
/* CTA Blocks */
.cta-block { position: relative; background: linear-gradient(135deg, rgba(212,175,55,0.12), rgba(11,11,12,0.92)); border-top: 1px solid rgba(212,175,55,0.35); border-bottom: 1px solid rgba(212,175,55,0.35); }
.cta-block::before { content: ""; position: absolute; inset: 0; background-image: url('assets/svg/patterns.svg'); background-size: 240px; background-position: center; opacity: 0.06; mix-blend-mode: screen; pointer-events: none; }
.cta-inner { text-align: center; padding: 36px 0; position: relative; }
.cta-title { margin: 0 0 8px; color: var(--white); font-size: 1.8rem; letter-spacing: 0.2px; }
.cta-subtitle { margin: 0 0 16px; color: #d9d9d9; font-size: 1.05rem; }
.cta-actions { display: flex; justify-content: center; }
.cta-actions .btn-gold { min-width: 160px; box-shadow: 0 8px 22px rgba(212,175,55,0.28); }
.cta-actions .btn-gold:hover { transform: translateY(-1px); box-shadow: 0 12px 28px rgba(212,175,55,0.36); }
@media (max-width: 760px) { .cta-title { font-size: 1.5rem; } }
