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

:root {
  --clr-bg: #0e0e0e;
  --clr-nav: #1b1c1d;
  --clr-red: #e50539;
  --clr-red-hover: #cc0432;
  --clr-green: #28a909;
  --clr-green-hover: #1e8a07;
  --clr-text: #f0f0f0;
  --clr-muted: #9a9a9a;
  --clr-border: #2e2e2e;
  --clr-card: #181819;
  --clr-card2: #141415;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --shadow: 0 4px 24px rgba(0,0,0,0.5);
  --transition: 0.22s ease;
}

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

html { scroll-behavior: smooth; background: var(--clr-bg); }

body {
  font-family: 'Inter', sans-serif;
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.6;
  font-size: 15px;
  overflow-x: hidden;
}

a { color: var(--clr-red); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--clr-red-hover); }

img { max-width: 100%; display: block; }

.wrapper { min-height: 100vh; display: flex; flex-direction: column; }

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

.box { width: 100%; }

.row { display: flex; flex-wrap: wrap; align-items: center; }

.mt1 { margin-top: 8px; }
.mb1 { margin-bottom: 8px; }

h1, h2, h3, h4, h5, h6 { line-height: 1.25; font-weight: 700; color: var(--clr-text); }
h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h2 { font-size: clamp(1.3rem, 3vw, 1.9rem); margin-bottom: 20px; }
h3 { font-size: 1.15rem; }

p { margin-bottom: 12px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  outline: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), filter var(--transition);
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--transition);
}
.btn:hover::after { background: rgba(255,255,255,0.07); }
.btn:active { transform: scale(0.97); }

.btn--red { background: var(--clr-red); color: #fff; box-shadow: 0 2px 16px rgba(229,5,57,0.35); }
.btn--red:hover { background: var(--clr-red-hover); color: #fff; box-shadow: 0 4px 24px rgba(229,5,57,0.55); }

.btn--green { background: var(--clr-green); color: #fff; box-shadow: 0 2px 16px rgba(40,169,9,0.35); }
.btn--green:hover { background: var(--clr-green-hover); color: #fff; box-shadow: 0 4px 24px rgba(40,169,9,0.55); }

.btn--outline { background: transparent; color: var(--clr-text); border: 1.5px solid var(--clr-border); }
.btn--outline:hover { border-color: var(--clr-red); color: var(--clr-red); }

.btn--lg { padding: 14px 32px; font-size: 15px; border-radius: 10px; }
.btn--md { padding: 9px 18px; font-size: 13px; }
.btn--sm { padding: 6px 14px; font-size: 12px; }

.btn--pulse {
  animation: btnPulse 2.2s infinite;
}
@keyframes btnPulse {
  0%, 100% { box-shadow: 0 2px 16px rgba(40,169,9,0.35); }
  50% { box-shadow: 0 2px 32px rgba(40,169,9,0.7); }
}

.section-title {
  text-align: center;
  margin-bottom: 32px;
  position: relative;
}
.section-title span {
  color: var(--clr-red);
}
.section-title::after {
  content: '';
  display: block;
  width: 54px;
  height: 3px;
  background: var(--clr-red);
  border-radius: 2px;
  margin: 10px auto 0;
}

.site-section {
  padding: 60px 0;
}

.site-section--alt {
  background: rgba(255,255,255,0.02);
}

.site-header {
  background: var(--clr-nav);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--clr-border);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
  gap: 16px;
}

.header-logo {
  flex-shrink: 0;
}
.header-logo img {
  height: 28px;
  width: auto;
}
.header-logo-text {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
}
.header-logo-text span { color: var(--clr-red); }

.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.header-nav a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--clr-muted);
  font-size: 13.5px;
  font-weight: 500;
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
  text-decoration: none;
}
.header-nav a:hover, .header-nav a.active {
  background: rgba(255,255,255,0.07);
  color: var(--clr-text);
}
.header-nav a svg { flex-shrink: 0; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  cursor: pointer;
  border: none;
  background: transparent;
  padding: 4px;
  gap: 5px;
  border-radius: 6px;
  transition: background var(--transition);
}
.burger:hover { background: rgba(255,255,255,0.07); }
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.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;
  flex-direction: column;
  background: var(--clr-nav);
  border-top: 1px solid var(--clr-border);
  padding: 16px 0;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--clr-muted);
  font-size: 14px;
  font-weight: 500;
  padding: 11px 20px;
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}
.mobile-nav a:hover { background: rgba(255,255,255,0.05); color: var(--clr-text); }

.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0a0a0a;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/img/aviatorkz-hero.webp');
  background-size: cover;
  background-position: center top;
  filter: brightness(0.55);
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(14,14,14,0.9) 0%, rgba(14,14,14,0.5) 60%, rgba(14,14,14,0.15) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 60px 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(229,5,57,0.18);
  border: 1px solid rgba(229,5,57,0.35);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  color: #ff6b8a;
  margin-bottom: 18px;
  letter-spacing: 0.3px;
}
.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--clr-red);
  animation: dotBlink 1.4s infinite;
}
@keyframes dotBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}
.hero h1 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
  color: #fff;
}
.hero h1 span { color: var(--clr-red); }
.hero-intro {
  font-size: 15.5px;
  color: rgba(240,240,240,0.8);
  margin-bottom: 28px;
  line-height: 1.65;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 8px;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-stat-val {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
}
.hero-stat-val span { color: var(--clr-red); }
.hero-stat-lbl {
  font-size: 11.5px;
  color: var(--clr-muted);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.spoiler-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--clr-border);
  border-radius: 6px;
  padding: 7px 14px;
  font-size: 12.5px;
  color: var(--clr-muted);
  cursor: pointer;
  margin-top: 16px;
  transition: background var(--transition), color var(--transition);
  user-select: none;
}
.spoiler-toggle:hover { background: rgba(255,255,255,0.09); color: var(--clr-text); }
.spoiler-body {
  display: none;
  margin-top: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 16px;
  font-size: 14px;
  color: rgba(240,240,240,0.75);
  line-height: 1.7;
  animation: fadeIn 0.3s ease;
}
.spoiler-body.open { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }

.game-section .container > .row {
  gap: 20px;
  align-items: flex-start;
}
.game-frame-wrap {
  flex: 1 1 560px;
  min-width: 280px;
}
.frame-box {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.frame-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: var(--clr-nav);
  border-bottom: 1px solid var(--clr-border);
  gap: 10px;
  flex-wrap: wrap;
}
.frame-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--clr-text);
  display: flex;
  align-items: center;
  gap: 8px;
}
.frame-title svg { color: var(--clr-red); }
.game-iframe {
  width: 100%;
  height: 460px;
  border: none;
  display: block;
}
.frame-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  border-top: 1px solid var(--clr-border);
  background: var(--clr-nav);
  flex-wrap: wrap;
  gap: 10px;
}
.frame-info {
  font-size: 12px;
  color: var(--clr-muted);
  display: flex;
  gap: 14px;
}
.frame-info strong { color: var(--clr-text); }

.leaderboard-wrap {
  flex: 0 0 320px;
  min-width: 280px;
}
.leaderboard-box {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 100%;
}
.leaderboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: var(--clr-nav);
  border-bottom: 1px solid var(--clr-border);
}
.leaderboard-title {
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 7px;
}
.live-dot {
  width: 8px;
  height: 8px;
  background: #27c93f;
  border-radius: 50%;
  animation: dotBlink 1.2s infinite;
}
.live-lbl { font-size: 11px; color: #27c93f; font-weight: 600; }
.leaderboard-body { max-height: 490px; overflow-y: auto; }
.leaderboard-body::-webkit-scrollbar { width: 4px; }
.leaderboard-body::-webkit-scrollbar-track { background: transparent; }
.leaderboard-body::-webkit-scrollbar-thumb { background: var(--clr-border); border-radius: 4px; }

.lb-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background var(--transition);
  animation: slideIn 0.4s ease;
}
.lb-item:hover { background: rgba(255,255,255,0.03); }
.lb-item:last-child { border-bottom: none; }
@keyframes slideIn { from { opacity: 0; transform: translateX(-10px); } to { opacity: 1; transform: translateX(0); } }

.lb-rank {
  width: 22px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--clr-muted);
  text-align: center;
  flex-shrink: 0;
}
.lb-rank.top1 { color: #ffd700; }
.lb-rank.top2 { color: #c0c0c0; }
.lb-rank.top3 { color: #cd7f32; }
.lb-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-red), #7b0020);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.lb-user { flex: 1; min-width: 0; }
.lb-nick {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--clr-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lb-amount { font-size: 11px; color: var(--clr-muted); }
.lb-multi {
  font-size: 12.5px;
  font-weight: 800;
  color: #27c93f;
  flex-shrink: 0;
}
.lb-multi.high { color: #ffd700; }

.strategies-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.strategy-card {
  flex: 1 1 280px;
  max-width: 380px;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
}
.strategy-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(229,5,57,0.2);
  border-color: rgba(229,5,57,0.4);
}
.strategy-img { width: 100%; height: 180px; object-fit: cover; }
.strategy-body { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.strategy-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--clr-text);
}
.strategy-desc {
  font-size: 13.5px;
  color: var(--clr-muted);
  line-height: 1.6;
  flex: 1;
}
.strategy-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 4px;
}
.strategy-tag--safe { background: rgba(40,169,9,0.15); color: #4dd62d; border: 1px solid rgba(40,169,9,0.3); }
.strategy-tag--risk { background: rgba(229,5,57,0.12); color: #ff6b8a; border: 1px solid rgba(229,5,57,0.3); }
.strategy-tag--med { background: rgba(255,165,0,0.12); color: #ffb347; border: 1px solid rgba(255,165,0,0.3); }

.review-block {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  box-shadow: var(--shadow);
  margin: 0 auto;
}
.author-card {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
}
.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e50539, #7b0020);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  border: 2px solid var(--clr-red);
}
.author-info { flex: 1; }
.author-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--clr-text);
}
.author-bio {
  font-size: 12.5px;
  color: var(--clr-muted);
  margin-top: 3px;
  line-height: 1.5;
}
.author-link {
  font-size: 12px;
  color: var(--clr-red);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 5px;
}

.review-content { line-height: 1.75; color: rgba(240,240,240,0.88); }
.review-content h2, .review-content h3, .review-content h4 {
  margin: 24px 0 12px;
  color: var(--clr-text);
}
.review-content h2 { font-size: 1.4rem; }
.review-content h3 { font-size: 1.15rem; }
.review-content p { margin-bottom: 14px; }
.review-content ul, .review-content ol {
  margin: 10px 0 16px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.review-content li { padding-left: 4px; }
.review-content ul li::marker { color: var(--clr-red); }
.review-content ol li::marker { color: var(--clr-red); font-weight: 600; }
.review-content a { color: var(--clr-red); text-decoration: underline; text-underline-offset: 2px; }
.review-content strong { color: var(--clr-text); font-weight: 700; }
.review-content em { color: rgba(240,240,240,0.7); }
.review-content blockquote {
  border-left: 3px solid var(--clr-red);
  padding: 10px 18px;
  background: rgba(255,255,255,0.03);
  border-radius: 0 8px 8px 0;
  margin: 16px 0;
  font-style: italic;
  color: rgba(240,240,240,0.7);
}
.review-content table {
  width: auto;
  min-width: 60%;
  margin: 16px auto;
  border-collapse: collapse;
  font-size: 14px;
}
.review-content table th {
  background: var(--clr-nav);
  padding: 10px 16px;
  text-align: left;
  font-weight: 700;
  border: 1px solid var(--clr-border);
  color: var(--clr-text);
}
.review-content table td {
  padding: 9px 16px;
  text-align: left;
  border: 1px solid var(--clr-border);
  color: rgba(240,240,240,0.85);
}
.review-content table tr:nth-child(even) td { background: rgba(255,255,255,0.02); }
.review-content hr { border: none; border-top: 1px solid var(--clr-border); margin: 24px 0; }
.review-content img { border-radius: var(--radius-sm); margin: 10px auto; max-width: 100%; }
.review-content code { background: rgba(255,255,255,0.07); padding: 2px 7px; border-radius: 4px; font-size: 0.9em; }
.review-content pre { background: var(--clr-nav); padding: 16px; border-radius: var(--radius-sm); overflow-x: auto; margin: 14px 0; }
.review-content pre code { background: none; padding: 0; }

.games-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.game-card {
  flex: 1 1 200px;
  max-width: 240px;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 22px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), border-color var(--transition);
}
.game-card:hover { transform: translateY(-3px); border-color: rgba(229,5,57,0.35); }
.game-logo {
  width: 56px;
  height: 56px;
  background: var(--clr-nav);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  border: 1px solid var(--clr-border);
  overflow: hidden;
}
.game-logo-text {
  font-size: 18px;
  font-weight: 900;
  color: var(--clr-red);
}
.game-name { font-size: 14px; font-weight: 700; color: var(--clr-text); }
.game-desc { font-size: 12px; color: var(--clr-muted); line-height: 1.5; }
.game-btns { display: flex; gap: 7px; flex-wrap: wrap; justify-content: center; margin-top: 4px; }

.reviews-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin-bottom: 40px;
}
.review-card {
  flex: 1 1 260px;
  max-width: 360px;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow);
  transition: border-color var(--transition);
}
.review-card:hover { border-color: rgba(229,5,57,0.3); }
.review-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  background: linear-gradient(135deg, #e50539, #7b0020);
}
.review-name { font-size: 14px; font-weight: 700; color: var(--clr-text); }
.review-date { font-size: 11px; color: var(--clr-muted); margin-top: 2px; }
.review-stars {
  display: flex;
  gap: 2px;
  margin-top: 2px;
}
.review-stars svg { fill: #ffd700; }
.review-text { font-size: 13.5px; color: rgba(240,240,240,0.8); line-height: 1.65; }

.review-form-wrap {
  max-width: 560px;
  margin: 0 auto;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  box-shadow: var(--shadow);
}
.form-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 22px; color: var(--clr-text); text-align: center; }
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--clr-muted);
}
.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--clr-text);
  outline: none;
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--clr-red); background: rgba(255,255,255,0.06); }
.form-group textarea { min-height: 100px; resize: vertical; }
.form-msg {
  display: none;
  text-align: center;
  padding: 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  margin-top: 12px;
}
.form-msg.success { background: rgba(40,169,9,0.12); color: #4dd62d; border: 1px solid rgba(40,169,9,0.3); display: block; }

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item:hover { border-color: rgba(229,5,57,0.3); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--clr-text);
  text-align: left;
  gap: 12px;
}
.faq-q svg {
  flex-shrink: 0;
  transition: transform 0.28s ease;
  color: var(--clr-red);
}
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a {
  display: none;
  padding: 0 20px 16px;
  font-size: 14px;
  color: rgba(240,240,240,0.75);
  line-height: 1.7;
}
.faq-item.open .faq-a { display: block; animation: fadeIn 0.25s ease; }

.site-footer {
  background: var(--clr-nav);
  border-top: 1px solid var(--clr-border);
  margin-top: auto;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 48px 0 32px;
  border-bottom: 1px solid var(--clr-border);
}
.footer-brand { flex: 1 1 220px; }
.footer-brand-logo { margin-bottom: 14px; }
.footer-brand-logo a{ display: block;width: fit-content; }
.footer-brand-logo img { height: 28px;width: auto; }
.footer-desc { font-size: 13px; color: var(--clr-muted); line-height: 1.65; margin-bottom: 18px; }
.footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-muted);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.social-link:hover { background: rgba(229,5,57,0.15); color: var(--clr-red); border-color: rgba(229,5,57,0.4); }

.footer-col { flex: 1 1 160px; }
.footer-col-title { font-size: 13px; font-weight: 700; color: var(--clr-text); margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  font-size: 13px;
  color: var(--clr-muted);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--clr-text); }

.footer-col-email a { font-size: 13px; color: var(--clr-muted); word-break: break-all; }
.footer-col-email a:hover { color: var(--clr-red); }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}
.footer-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.footer-logo-item {
  height: 30px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--clr-border);
  border-radius: 6px;
  padding: 4px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10.5px;
  font-weight: 700;
  color: var(--clr-muted);
  letter-spacing: 0.3px;
  white-space: nowrap;
}
.footer-logo-item img { height: 18px; filter: brightness(0.7) grayscale(0.4); }
.footer-copyright { font-size: 12px; color: var(--clr-muted); line-height: 1.6; max-width: 600px; }
.footer-legal { font-size: 11px; color: rgba(154,154,154,0.6); margin-top: 10px; line-height: 1.65; }
.footer-age {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--clr-muted);
  color: var(--clr-muted);
  font-size: 10px;
  font-weight: 800;
  flex-shrink: 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: var(--clr-muted);
  padding: 12px 0;
}
.breadcrumb a { color: var(--clr-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--clr-text); }
.breadcrumb-sep { color: var(--clr-border); }

.info-content {
  max-width: 840px;
  margin: 40px auto;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  box-shadow: var(--shadow);
}
.info-content h1 { margin-bottom: 24px; }
.info-content h2 { margin: 28px 0 12px; font-size: 1.25rem; }
.info-content h3 { margin: 20px 0 10px; font-size: 1rem; color: rgba(240,240,240,0.85); }
.info-content p { font-size: 14px; color: rgba(240,240,240,0.8); line-height: 1.75; margin-bottom: 14px; }
.info-content ul, .info-content ol { margin: 10px 0 16px 22px; display: flex; flex-direction: column; gap: 6px; font-size: 14px; color: rgba(240,240,240,0.8); }
.info-content li::marker { color: var(--clr-red); }
.info-content a { color: var(--clr-red); }
.info-content table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 14px; }
.info-content th { background: var(--clr-nav); padding: 10px 14px; text-align: left; border: 1px solid var(--clr-border); }
.info-content td { padding: 9px 14px; border: 1px solid var(--clr-border); color: rgba(240,240,240,0.8); }
.info-content tr:nth-child(even) td { background: rgba(255,255,255,0.02); }

.game-info-table {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  border-collapse: collapse;
  font-size: 14px;
  background: var(--clr-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--clr-border);
}
.game-info-table td {
  padding: 11px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.game-info-table td:first-child { color: var(--clr-muted); font-weight: 500; width: 45%; }
.game-info-table td:last-child { color: var(--clr-text); font-weight: 600; }
.game-info-table tr:last-child td { border-bottom: none; }
.game-info-table tr:hover td { background: rgba(255,255,255,0.025); }

.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 24px;
  width: 42px;
  height: 42px;
  background: var(--clr-red);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
  z-index: 999;
  box-shadow: 0 4px 18px rgba(229,5,57,0.45);
}
.scroll-top.show { opacity: 1; visibility: visible; }
.scroll-top:hover { transform: translateY(-3px); }
.scroll-top svg { color: #fff; }

.wp-x7b2-wrap { display: none; }
.elementor-c9f3-hidden { visibility: hidden; height: 0; overflow: hidden; }
.wc-x2d8-placeholder { position: absolute; left: -9999px; }

@media (max-width: 900px) {
  .header-nav { display: none; }
  .burger { display: flex; }
  .game-section .container > .row { flex-direction: column; }
  .leaderboard-wrap { width: 100%; flex: 1 1 100%; }
  .leaderboard-body { max-height: 320px; }
  .review-block { padding: 24px 20px; }
  .review-form-wrap { padding: 24px 20px; }
  .footer-top { gap: 28px; }
  .info-content { padding: 28px 20px; }
  .game-frame-wrap {width: 100%;}
}

@media (max-width: 640px) {
  .hero-content { padding: 40px 0; }
  .hero-btns { gap: 10px; }
  .btn--lg { padding: 12px 22px; font-size: 14px; }
  .hero-stats { gap: 16px; }
  .site-section { padding: 40px 0; }
  .game-iframe { height: 360px; }
  .strategy-card { max-width: 100%; }
  .review-card { max-width: 100%; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .game-card { max-width: 100%; }
  table { display: block; overflow-x: auto; }
}
@media (max-width: 480px) {
  .header-actions .btn--outline {display: none;}
  .review-block { padding: 20px 16px; }
}