@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;600;700;900&display=swap');

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

:root {
  --clr-header: #0F442E;
  --clr-header-dark: #0a3022;
  --clr-bg: #1C724D;
  --clr-bg-dark: #155a3c;
  --clr-btn-primary: #F9CB16;
  --clr-btn-primary-hover: #e6b800;
  --clr-btn-secondary: #0F442E;
  --clr-btn-secondary-hover: #0a3022;
  --clr-text-light: #ffffff;
  --clr-text-muted: rgba(255,255,255,0.75);
  --clr-text-dark: #1a1a1a;
  --clr-card-bg: rgba(255,255,255,0.07);
  --clr-card-border: rgba(255,255,255,0.12);
  --clr-gold: #F9CB16;
  --clr-green-light: #27ae6a;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow: 0 4px 24px rgba(0,0,0,0.28);
  --transition: 0.22s ease;
  --font: 'Roboto', Arial, sans-serif;
}

html { scroll-behavior: smooth; background: var(--clr-bg); }
body { font-family: var(--font); color: var(--clr-text-light); background: var(--clr-bg); line-height: 1.6; font-size: 16px; overflow-x: hidden; }

a { color: var(--clr-gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--clr-btn-primary-hover); }
img { max-width: 100%; height: auto; }
ul, ol { padding-left: 1.4em; }
table { border-collapse: collapse; }

.wrapper { display: flex; flex-direction: column; min-height: 100vh; }
.container { width: 100%; max-width: 1220px; margin: 0 auto; padding: 0 18px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 10px 22px; border-radius: var(--radius-sm); font-family: var(--font);
  font-weight: 700; font-size: 14px; cursor: pointer; border: none; outline: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap; text-decoration: none; letter-spacing: 0.3px;
}
.btn--primary { background: var(--clr-btn-primary); color: var(--clr-text-dark); }
.btn--primary:hover { background: var(--clr-btn-primary-hover); transform: translateY(-2px); box-shadow: 0 6px 18px rgba(249,203,22,0.35); color: var(--clr-text-dark); }
.btn--secondary { background: var(--clr-btn-secondary); color: var(--clr-text-light); border: 1.5px solid rgba(255,255,255,0.22); }
.btn--secondary:hover { background: var(--clr-btn-secondary-hover); transform: translateY(-2px); color: var(--clr-text-light); }
.btn--lg { padding: 14px 32px; font-size: 16px; border-radius: var(--radius-md); }
.btn--sm { padding: 7px 16px; font-size: 13px; }
.btn--block { width: 100%; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ====== HEADER ====== */
.site-header { background: var(--clr-header); position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 16px rgba(0,0,0,0.32); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 0; flex-wrap: nowrap; }
.header-logo img { height: 48px; width: auto; display: block; }
.header-nav { display: flex; align-items: center; gap: 6px; }
.header-nav a { color: rgba(255,255,255,0.88); font-size: 14px; font-weight: 500; padding: 6px 10px; border-radius: 6px; transition: background var(--transition), color var(--transition); }
.header-nav a:hover { background: rgba(255,255,255,0.1); color: #fff; }
.header-actions { display: flex; align-items: center; gap: 8px; }
.online-count { font-size: 12px; color: var(--clr-gold); background: rgba(249,203,22,0.1); border: 1px solid rgba(249,203,22,0.25); border-radius: 30px; padding: 4px 12px; white-space: nowrap; display: flex; align-items: center; gap: 5px; }
.online-dot { width: 7px; height: 7px; border-radius: 50%; background: #3edb6a; animation: pulse-dot 1.5s infinite; display: inline-block; }
@keyframes pulse-dot { 0%,100%{opacity:1;} 50%{opacity:0.4;} }

.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 6px; }
.burger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: transform var(--transition), opacity var(--transition); }
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav { display: none; background: var(--clr-header-dark); padding: 12px 18px; flex-direction: column; gap: 6px; }
.mobile-nav a { color: rgba(255,255,255,0.88); font-size: 15px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.08); display: block; }
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav.open { display: flex; }

@media(max-width:900px) {
  .header-nav { display: none; }
  .burger { display: flex; }
  .online-count { display: none; }
}
@media(max-width:480px) {
  .header-actions .btn--secondary { font-size: 12px; padding: 8px 12px; }
  .header-actions .btn--primary { font-size: 12px; padding: 8px 14px; }
}

/* ====== HERO SLIDER ====== */
.hero-slider { position: relative; overflow: hidden; background: var(--clr-header-dark); }
.slider-track { display: flex; transition: transform 0.55s cubic-bezier(0.4,0,0.2,1); }
.slide { min-width: 100%; position: relative; height: 420px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.slide-bg { position: absolute; inset: 0; object-fit: cover; width: 100%; height: 100%; }
.slide-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,48,34,0.82) 0%, rgba(10,48,34,0.35) 100%); }
.slide-content { position: relative; z-index: 2; max-width: 580px; padding: 32px 48px; }
.slide-content h2 { font-size: clamp(24px, 4vw, 42px); font-weight: 900; color: #fff; line-height: 1.18; margin-bottom: 12px; text-shadow: 0 2px 12px rgba(0,0,0,0.4); }
.slide-content p { font-size: clamp(14px, 1.8vw, 18px); color: rgba(255,255,255,0.88); margin-bottom: 24px; line-height: 1.55; }
.slider-prev, .slider-next { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; background: rgba(15,68,46,0.75); border: none; cursor: pointer; width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 20px; transition: background var(--transition); }
.slider-prev:hover, .slider-next:hover { background: rgba(249,203,22,0.85); color: #1a1a1a; }
.slider-prev { left: 16px; }
.slider-next { right: 16px; }
.slider-dots { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
.slider-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.4); border: none; cursor: pointer; transition: background var(--transition), transform var(--transition); }
.slider-dot.active { background: var(--clr-gold); transform: scale(1.25); }
@media(max-width:680px) {
  .slide { height: 300px; }
  .slide-content { padding: 20px 22px; }
}

/* ====== MAIN CONTENT AREA ====== */
.main-wrap { padding: 32px 0; }
.section-gap { margin-bottom: 36px; }

/* ====== CARD BOX ====== */
.card-box {
  background: var(--clr-card-bg);
  border: 1px solid var(--clr-card-border);
  border-radius: var(--radius-md);
  padding: 28px;
  margin-bottom: 32px;
  backdrop-filter: blur(4px);
}
.card-box + .card-box { margin-top: 0; }
.section-title { font-size: clamp(18px, 2.5vw, 26px); font-weight: 800; color: #fff; margin-bottom: 18px; padding-bottom: 12px; border-bottom: 2px solid rgba(249,203,22,0.25); display: flex; align-items: center; gap: 10px; }
.section-title::before { content: ''; display: inline-block; width: 4px; height: 1.1em; background: var(--clr-gold); border-radius: 3px; flex-shrink: 0; }

/* ====== TABLE OF CONTENTS ====== */
.toc-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.toc-item { background: rgba(249,203,22,0.08); border: 1px solid rgba(249,203,22,0.2); border-radius: var(--radius-sm); padding: 8px 16px; font-size: 14px; font-weight: 500; transition: background var(--transition), border-color var(--transition); }
.toc-item:hover { background: rgba(249,203,22,0.18); border-color: var(--clr-gold); color: var(--clr-gold); }
.toc-item a { color: inherit; text-decoration: none; }

/* ====== CASINO INFO TABLE ====== */
.info-table-wrap { overflow-x: auto; }
.info-table { width: 100%; border-collapse: separate; border-spacing: 0; font-size: 14px; }
.info-table thead th { background: var(--clr-header); color: var(--clr-gold); font-weight: 700; padding: 12px 16px; text-align: left; font-size: 13px; text-transform: uppercase; letter-spacing: 0.5px; }
.info-table tbody tr { border-bottom: 1px solid rgba(255,255,255,0.06); transition: background var(--transition); }
.info-table tbody tr:hover { background: rgba(255,255,255,0.04); }
.info-table td { padding: 11px 16px; vertical-align: top; line-height: 1.5; }
.info-table td:first-child { font-weight: 600; color: rgba(255,255,255,0.7); width: 220px; white-space: nowrap; }
.info-table td:last-child { color: #fff; }
.info-table tr:first-child th:first-child { border-radius: var(--radius-sm) 0 0 0; }
.info-table tr:first-child th:last-child { border-radius: 0 var(--radius-sm) 0 0; }
.info-table tr:last-child td:first-child { border-radius: 0 0 0 var(--radius-sm); }
.info-table tr:last-child td:last-child { border-radius: 0 0 var(--radius-sm) 0; }
.badge { display: inline-block; background: rgba(249,203,22,0.15); border: 1px solid rgba(249,203,22,0.3); color: var(--clr-gold); border-radius: 30px; padding: 2px 10px; font-size: 12px; font-weight: 600; }

/* ====== WINNERS LEADERBOARD ====== */
.winners-list { display: flex; flex-direction: column; gap: 6px; }
.winner-item { display: flex; align-items: center; gap: 12px; padding: 10px 14px; background: rgba(255,255,255,0.04); border-radius: 8px; border: 1px solid rgba(255,255,255,0.07); transition: background var(--transition); }
.winner-item:hover { background: rgba(255,255,255,0.08); }
.winner-rank { font-size: 13px; font-weight: 800; width: 28px; text-align: center; color: var(--clr-gold); flex-shrink: 0; }
.winner-rank.top3 { font-size: 18px; }
.winner-avatar { width: 34px; height: 34px; border-radius: 50%; background: var(--clr-header); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px; color: var(--clr-gold); flex-shrink: 0; border: 1px solid rgba(249,203,22,0.3); }
.winner-name { flex: 1; font-size: 14px; font-weight: 500; }
.winner-amount { font-size: 15px; font-weight: 800; color: var(--clr-gold); flex-shrink: 0; }
.winner-game { font-size: 12px; color: rgba(255,255,255,0.5); }

/* ====== TOURNAMENTS ====== */
.tournaments-grid { display: flex; gap: 20px; flex-wrap: wrap; }
.tournament-card { flex: 1; min-width: 260px; background: linear-gradient(145deg, rgba(15,68,46,0.9), rgba(10,48,34,0.95)); border: 1px solid rgba(249,203,22,0.2); border-radius: var(--radius-md); padding: 24px; display: flex; flex-direction: column; gap: 12px; transition: transform var(--transition), box-shadow var(--transition); }
.tournament-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.35); }
.tournament-badge { display: inline-flex; align-items: center; gap: 5px; background: rgba(249,203,22,0.12); color: var(--clr-gold); border-radius: 30px; font-size: 12px; font-weight: 700; padding: 3px 12px; width: fit-content; text-transform: uppercase; letter-spacing: 0.4px; }
.tournament-name { font-size: 18px; font-weight: 800; color: #fff; line-height: 1.25; }
.tournament-desc { font-size: 13px; color: rgba(255,255,255,0.72); line-height: 1.55; }
.tournament-prize { font-size: 24px; font-weight: 900; color: var(--clr-gold); }
.tournament-prize span { font-size: 13px; font-weight: 400; color: rgba(255,255,255,0.55); display: block; }
.tournament-timer { font-size: 13px; color: rgba(255,255,255,0.6); display: flex; align-items: center; gap: 6px; }
.timer-display { display: inline-flex; gap: 4px; }
.timer-unit { background: rgba(255,255,255,0.08); border-radius: 5px; padding: 2px 7px; font-weight: 700; font-size: 14px; color: #fff; }

@media(max-width:700px) {
  .tournaments-grid { flex-direction: column; }
  .tournament-card { min-width: 0; }
}

/* ====== APP INFO ====== */
.app-info-wrap { display: flex; gap: 28px; flex-wrap: wrap; }
.app-table-side { flex: 1; min-width: 260px; overflow-x: auto; }
.app-btns-side { display: flex; flex-direction: column; gap: 14px; justify-content: center; min-width: 180px; }
.app-dl-btn { display: flex; align-items: center; gap: 12px; background: var(--clr-header); border: 1.5px solid rgba(255,255,255,0.14); border-radius: var(--radius-sm); padding: 12px 18px; color: #fff; font-size: 14px; font-weight: 600; transition: background var(--transition), transform var(--transition); cursor: pointer; text-decoration: none; }
.app-dl-btn:hover { background: var(--clr-header-dark); transform: translateX(4px); color: #fff; }
.app-dl-icon { width: 28px; height: 28px; fill: var(--clr-gold); flex-shrink: 0; }
.app-dl-label { display: flex; flex-direction: column; }
.app-dl-label small { font-size: 10px; font-weight: 400; opacity: 0.65; }

/* ====== WHEEL OF FORTUNE ====== */
.wheel-section-inner { display: flex; gap: 40px; align-items: center; flex-wrap: wrap; justify-content: center; }
.wheel-container { position: relative; width: 280px; height: 280px; flex-shrink: 0; }
canvas#wheel-canvas { border-radius: 50%; box-shadow: 0 0 0 6px rgba(249,203,22,0.25), 0 0 0 10px rgba(249,203,22,0.08); }
.wheel-pointer { position: absolute; top: -18px; left: 50%; transform: translateX(-50%); width: 0; height: 0; border-left: 12px solid transparent; border-right: 12px solid transparent; border-top: 26px solid var(--clr-gold); filter: drop-shadow(0 2px 6px rgba(249,203,22,0.5)); }
.wheel-controls { text-align: center; }
.wheel-controls h3 { font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.wheel-controls p { font-size: 14px; color: rgba(255,255,255,0.7); margin-bottom: 20px; }
.wheel-result { display: none; background: rgba(249,203,22,0.1); border: 1px solid rgba(249,203,22,0.35); border-radius: var(--radius-md); padding: 18px 24px; margin-top: 18px; text-align: center; animation: fadeInUp 0.4s ease; }
.wheel-result.show { display: block; }
.wheel-result.win .result-title { color: var(--clr-gold); font-size: 20px; font-weight: 800; margin-bottom: 6px; }
.wheel-result.loss .result-title { color: rgba(255,255,255,0.7); font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.wheel-result p { font-size: 14px; color: rgba(255,255,255,0.8); }
@media(max-width:620px) {
  .wheel-section-inner { flex-direction: column; }
  .wheel-container { width: 240px; height: 240px; }
}

/* ====== REVIEW CONTENT ====== */
.review-content-block { line-height: 1.75; font-size: 15.5px; color: rgba(255,255,255,0.92); }
.review-content-block h2 { font-size: clamp(18px, 2.5vw, 24px); font-weight: 800; color: #fff; margin: 28px 0 12px; padding-bottom: 8px; border-bottom: 1.5px solid rgba(249,203,22,0.18); }
.review-content-block h3 { font-size: clamp(16px, 2vw, 20px); font-weight: 700; color: var(--clr-gold); margin: 22px 0 10px; }
.review-content-block h4 { font-size: 16px; font-weight: 700; color: rgba(255,255,255,0.9); margin: 18px 0 8px; }
.review-content-block p { margin-bottom: 14px; }
.review-content-block ul, .review-content-block ol { margin: 10px 0 16px 20px; }
.review-content-block li { margin-bottom: 6px; }
.review-content-block a { color: var(--clr-gold); border-bottom: 1px dotted rgba(249,203,22,0.4); }
.review-content-block a:hover { border-bottom-style: solid; }
.review-content-block table { width: 100%; border-collapse: collapse; margin: 18px 0; font-size: 14px; border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-sm); overflow: hidden; display: block; overflow-x: auto; }
.review-content-block table th { background: var(--clr-header); color: var(--clr-gold); padding: 10px 14px; text-align: left; font-weight: 700; font-size: 13px; }
.review-content-block table td { padding: 9px 14px; border-top: 1px solid rgba(255,255,255,0.07); vertical-align: top; }
.review-content-block table tr:hover td { background: rgba(255,255,255,0.03); }
.review-content-block blockquote { border-left: 3px solid var(--clr-gold); background: rgba(249,203,22,0.06); padding: 14px 18px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin: 16px 0; font-style: italic; color: rgba(255,255,255,0.82); }
.review-content-block img { border-radius: var(--radius-sm); margin: 12px 0; }
.review-content-block strong { color: #fff; font-weight: 700; }
.review-content-block em { color: rgba(255,255,255,0.85); }
.review-content-block hr { border: none; border-top: 1px solid rgba(255,255,255,0.1); margin: 24px 0; }
.review-content-block code { background: rgba(0,0,0,0.3); border-radius: 4px; padding: 2px 6px; font-size: 13px; font-family: monospace; }
.review-content-block pre { background: rgba(0,0,0,0.4); border-radius: 8px; padding: 16px; overflow-x: auto; margin: 14px 0; }

/* ====== AUTHOR BIO ====== */
.author-card { display: flex; gap: 24px; align-items: flex-start; flex-wrap: wrap; }
.author-photo { width: 90px; height: 90px; border-radius: 50%; object-fit: cover; border: 3px solid rgba(249,203,22,0.4); flex-shrink: 0; }
.author-info { flex: 1; min-width: 200px; }
.author-name { font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 4px; }
.author-title { font-size: 13px; color: var(--clr-gold); font-weight: 500; margin-bottom: 10px; }
.author-bio { font-size: 14px; color: rgba(255,255,255,0.78); line-height: 1.65; margin-bottom: 14px; }
.author-links { display: flex; gap: 10px; flex-wrap: wrap; }
.author-link { display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; border-radius: 30px; font-size: 13px; font-weight: 600; border: 1px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.85); transition: background var(--transition), border-color var(--transition); }
.author-link:hover { background: rgba(249,203,22,0.1); border-color: rgba(249,203,22,0.4); color: var(--clr-gold); }

/* ====== FOOTER ====== */
.site-footer { background: var(--clr-header); padding: 40px 0 0; margin-top: auto; }
.footer-top { display: flex; gap: 36px; flex-wrap: wrap; padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand { flex: 0 0 200px; }
.footer-logo img { height: 44px; width: auto; display: block; margin-bottom: 12px; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.6; }
.footer-links { flex: 1; display: flex; gap: 28px; flex-wrap: wrap; min-width: 200px; }
.footer-links-group h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; color: var(--clr-gold); margin-bottom: 10px; letter-spacing: 0.5px; }
.footer-links-group ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 7px; }
.footer-links-group ul li a { font-size: 13px; color: rgba(255,255,255,0.65); transition: color var(--transition); }
.footer-links-group ul li a:hover { color: #fff; }
.footer-providers { padding: 20px 0 16px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-providers h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 12px; letter-spacing: 0.5px; }
.logos-row { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.logo-badge { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 6px; padding: 5px 12px; font-size: 12px; color: rgba(255,255,255,0.6); font-weight: 500; transition: background var(--transition); }
.logo-badge:hover { background: rgba(255,255,255,0.12); }
.footer-bottom { padding: 18px 0; }
.footer-bottom-inner { display: flex; flex-direction: column; gap: 10px; }
.copyright { font-size: 12px; color: rgba(255,255,255,0.4); line-height: 1.7; }
.legal-text { font-size: 11px; color: rgba(255,255,255,0.3); line-height: 1.65; }

/* ====== STICKY WIDGET ====== */
.sticky-widget { position: fixed; bottom: 0; left: 0; right: 0; z-index: 999; background: linear-gradient(90deg, #0a3022, #0F442E); border-top: 2px solid rgba(249,203,22,0.35); display: flex; align-items: center; justify-content: center; gap: 14px; padding: 10px 20px; box-shadow: 0 -4px 20px rgba(0,0,0,0.32); }
.widget-text { font-size: 14px; font-weight: 600; color: #fff; }
.widget-text strong { color: var(--clr-gold); }
.widget-close { background: none; border: none; color: rgba(255,255,255,0.5); cursor: pointer; font-size: 20px; line-height: 1; padding: 0 4px; margin-left: 8px; flex-shrink: 0; transition: color var(--transition); }
.widget-close:hover { color: #fff; }
@media(max-width:580px) {
  .sticky-widget { flex-wrap: wrap; gap: 8px; }
  .widget-text { font-size: 12px; text-align: center; }
}

/* ====== ANIMATIONS ====== */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.fade-in { animation: fadeInUp 0.5s ease both; }

.section-animate { opacity: 0; transform: translateY(24px); transition: opacity 0.55s ease, transform 0.55s ease; }
.section-animate.visible { opacity: 1; transform: none; }

/* ====== INFO PAGE ====== */
.info-content { max-width: 860px; margin: 0 auto; padding: 32px 0; }
.info-content h1 { font-size: clamp(22px, 3vw, 34px); font-weight: 900; color: #fff; margin-bottom: 20px; }
.info-content h2 { font-size: clamp(16px, 2vw, 22px); font-weight: 800; color: var(--clr-gold); margin: 28px 0 10px; }
.info-content p, .info-content li { font-size: 15px; color: rgba(255,255,255,0.85); line-height: 1.75; margin-bottom: 12px; }
.info-content ul, .info-content ol { margin: 10px 0 16px 22px; }
.info-content a { color: var(--clr-gold); }
.info-content a:hover { text-decoration: underline; }
.info-content table { width: 100%; border-collapse: collapse; margin: 16px 0; }
.info-content table th { background: var(--clr-header); color: var(--clr-gold); padding: 10px 14px; text-align: left; font-size: 13px; }
.info-content table td { padding: 9px 14px; border-top: 1px solid rgba(255,255,255,0.08); font-size: 14px; color: rgba(255,255,255,0.8); }
.info-content strong { color: #fff; }
.info-content .box-inner { background: var(--clr-card-bg); border: 1px solid var(--clr-card-border); border-radius: var(--radius-md); padding: 22px 28px; margin-bottom: 24px; }

/* ====== FAQ ====== */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09); border-radius: var(--radius-sm); overflow: hidden; }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 14px 18px; cursor: pointer; font-weight: 600; font-size: 15px; color: #fff; user-select: none; transition: background var(--transition); gap: 10px; }
.faq-q:hover { background: rgba(255,255,255,0.04); }
.faq-icon { flex-shrink: 0; width: 20px; height: 20px; background: rgba(249,203,22,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--clr-gold); transition: transform var(--transition); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 18px 14px; font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.65; }
.faq-item.open .faq-a { display: block; animation: fadeInUp 0.25s ease; }

/* ====== WP-STYLE DUMMY ====== */
.wp-block-group { display: block; }
.entry-content { display: block; }
.wp-site-blocks { display: block; }
.elementor-section { display: none; }
.wp-block-spacer { height: 0; overflow: hidden; width: 0; }
.yoast-schema-graph { display: none; }
.screen-reader-text { clip: rect(1px, 1px, 1px, 1px); height: 1px; overflow: hidden; position: absolute; white-space: nowrap; width: 1px; }
.woocommerce-product-gallery { display: none; }
.elementor-kit-6 { --e-global-color-primary: #6EC1E4; }

/* ====== SCROLLBAR ====== */
::-webkit-scrollbar { width: 7px; height: 7px; }
::-webkit-scrollbar-track { background: rgba(0,0,0,0.15); }
::-webkit-scrollbar-thumb { background: rgba(249,203,22,0.35); border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: rgba(249,203,22,0.6); }

/* ====== RESPONSIVE ====== */
@media(max-width:900px) {
  .card-box { padding: 20px 16px; }
  .app-info-wrap { flex-direction: column; }
}
@media(max-width:680px) {
  .tournaments-grid { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 8px; }
  .tournament-card { min-width: 260px; }
  .footer-top { flex-direction: column; gap: 24px; }
  .footer-brand { flex: none; }
  .winner-game { display: none; }
}
@media(max-width:480px) {
  .winner-item { padding: 8px 10px; }
  .winner-avatar { width: 28px; height: 28px; font-size: 11px; }
  .slide-content { padding: 16px; }
}
