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

:root {
  --c-primary: #037ce1;
  --c-primary-dark: #025fad;
  --c-primary-light: #1a8ff5;
  --c-bg: #00c2ff;
  --c-bg-light: #33cfff;
  --c-btn-yellow: #ffed77;
  --c-btn-yellow-hover: #ffe233;
  --c-btn-pink: #ff018b;
  --c-btn-pink-hover: #d6007a;
  --c-text-dark: #0a1628;
  --c-text-light: #ffffff;
  --c-text-muted: #cce8ff;
  --c-card-bg: rgba(255,255,255,0.12);
  --c-card-border: rgba(255,255,255,0.25);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-card: 0 4px 24px rgba(3,124,225,0.18);
  --transition: 0.25s ease;
  --font-main: 'Nunito', sans-serif;
  --font-heading: 'Rajdhani', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background: var(--c-bg);
}

body {
  font-family: var(--font-main);
  background: linear-gradient(160deg, #00aaff 0%, #00c2ff 40%, #0077dd 100%);
  color: var(--c-text-dark);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.x9f2k { display: none; }
.m4r7v { visibility: hidden; position: absolute; }
.q8p3n { opacity: 0; pointer-events: none; }

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

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

.section-gap { margin-bottom: 32px; }

/* =========================================
   HEADER
   ========================================= */
.site-header {
  background: var(--c-primary);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
  border-bottom: 2px solid rgba(255,237,119,0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 18px;
  max-width: 1180px;
  margin: 0 auto;
}

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

.header-logo img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  object-fit: cover;
}

.header-logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--c-btn-yellow);
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1;
}

.header-logo-text span {
  color: #fff;
}

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

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--c-text-light);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}

.nav-link svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.nav-link:hover {
  background: rgba(255,255,255,0.15);
  color: var(--c-btn-yellow);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: none;
  cursor: pointer;
  font-family: var(--font-main);
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.18s;
}

.btn:hover::after { background: rgba(255,255,255,0.12); }
.btn:active { transform: scale(0.97); }

.btn-yellow {
  background: var(--c-btn-yellow);
  color: #0a1628;
  padding: 9px 18px;
  font-size: 0.9rem;
  box-shadow: 0 3px 12px rgba(255,237,119,0.4);
}

.btn-yellow:hover {
  background: var(--c-btn-yellow-hover);
  box-shadow: 0 5px 18px rgba(255,237,119,0.55);
  transform: translateY(-2px);
}

.btn-pink {
  background: var(--c-btn-pink);
  color: #fff;
  padding: 9px 18px;
  font-size: 0.9rem;
  box-shadow: 0 3px 12px rgba(255,1,139,0.4);
}

.btn-pink:hover {
  background: var(--c-btn-pink-hover);
  box-shadow: 0 5px 18px rgba(255,1,139,0.55);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 14px 32px;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

.btn-outline-white {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.7);
  color: #fff;
  padding: 12px 28px;
  font-size: 1rem;
  border-radius: var(--radius-md);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  transform: translateY(-2px);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  background: transparent;
  border: none;
  margin-left: 8px;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.25s;
}

.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); }

/* =========================================
   HERO
   ========================================= */
.site-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #012a5e;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/hero-banner.png');
  background-size: cover;
  background-position: center top;
  opacity: 0.65;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(1,20,60,0.85) 0%, rgba(3,124,225,0.45) 60%, transparent 100%);
}

.hero-balloons {
  position: absolute;
  right: 3%;
  top: 50%;
  transform: translateY(-50%);
  width: 260px;
  pointer-events: none;
  animation: floatBalloon 4s ease-in-out infinite;
  z-index: 2;
}

@keyframes floatBalloon {
  0%, 100% { transform: translateY(-50%); }
  50% { transform: translateY(calc(-50% - 18px)); }
}

.hero-multiplier {
  position: absolute;
  right: 5%;
  top: 18%;
  background: rgba(255,237,119,0.18);
  border: 2px solid var(--c-btn-yellow);
  border-radius: var(--radius-md);
  padding: 8px 18px;
  color: var(--c-btn-yellow);
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 2px;
  z-index: 3;
  backdrop-filter: blur(4px);
  animation: pulseMultiplier 1.8s ease-in-out infinite;
  text-shadow: 0 0 20px rgba(255,237,119,0.6);
}

@keyframes pulseMultiplier {
  0%, 100% { transform: scale(1); box-shadow: 0 0 20px rgba(255,237,119,0.3); }
  50% { transform: scale(1.04); box-shadow: 0 0 40px rgba(255,237,119,0.6); }
}

.hero-content {
  position: relative;
  z-index: 5;
  padding: 60px 0 50px;
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,237,119,0.18);
  border: 1px solid rgba(255,237,119,0.5);
  border-radius: 30px;
  padding: 5px 14px;
  color: var(--c-btn-yellow);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 14px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.hero-h1 span {
  color: var(--c-btn-yellow);
}

.hero-spoiler-btn {
  background: none;
  border: none;
  color: var(--c-text-muted);
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  font-family: var(--font-main);
  transition: color var(--transition);
  padding: 0;
}

.hero-spoiler-btn:hover { color: #fff; }
.hero-spoiler-btn svg { transition: transform 0.25s; }
.hero-spoiler-btn.open svg { transform: rotate(180deg); }

.hero-intro {
  color: rgba(255,255,255,0.88);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 28px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.4s ease;
  opacity: 0;
}

.hero-intro.visible {
  max-height: 300px;
  opacity: 1;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.hero-stat-val {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--c-btn-yellow);
  line-height: 1;
}

.hero-stat-lbl {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.65);
  margin-top: 3px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* =========================================
   BREADCRUMBS
   ========================================= */
.breadcrumbs-wrap {
  background: rgba(3,124,225,0.85);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.75);
  flex-wrap: wrap;
}

.breadcrumbs a {
  color: var(--c-btn-yellow);
  font-weight: 600;
  transition: color var(--transition);
}

.breadcrumbs a:hover { color: #fff; }

.breadcrumb-sep {
  opacity: 0.5;
  font-size: 0.75rem;
}

/* =========================================
   CONTENT SECTIONS
   ========================================= */
.main-content {
  padding: 36px 0 24px;
  flex: 1;
}

.content-block {
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: var(--radius-lg);
  padding: 28px 28px;
  margin-bottom: 28px;
  backdrop-filter: blur(6px);
  box-shadow: var(--shadow-card);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.content-block:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(3,124,225,0.22);
}

.block-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 2px solid rgba(255,237,119,0.35);
  padding-bottom: 12px;
}

.block-title svg {
  color: var(--c-btn-yellow);
  flex-shrink: 0;
  width: 22px;
  height: 22px;
}

/* =========================================
   TABLE OF CONTENTS
   ========================================= */
.toc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
}

.toc-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  transition: background var(--transition), border-color var(--transition), transform 0.18s;
  cursor: pointer;
}

.toc-item svg {
  width: 16px;
  height: 16px;
  color: var(--c-btn-yellow);
  flex-shrink: 0;
}

.toc-item:hover {
  background: rgba(255,237,119,0.18);
  border-color: rgba(255,237,119,0.5);
  transform: translateX(4px);
}

/* =========================================
   FEATURES / ADVANTAGES
   ========================================= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.feature-tile {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  text-align: center;
  transition: transform 0.22s, box-shadow 0.22s, background 0.22s;
}

.feature-tile:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.18);
  box-shadow: 0 8px 28px rgba(3,124,225,0.25);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--c-primary), var(--c-primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  border: 2px solid rgba(255,237,119,0.4);
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  color: var(--c-btn-yellow);
}

.feature-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.feature-desc {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.55;
}

/* =========================================
   PROS & CONS
   ========================================= */
.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.pros-col {
  background: rgba(0, 200, 100, 0.1);
  border: 1px solid rgba(0,230,120,0.3);
  border-radius: var(--radius-md);
  padding: 20px;
}

.cons-col {
  background: rgba(255,1,139,0.1);
  border: 1px solid rgba(255,1,139,0.3);
  border-radius: var(--radius-md);
  padding: 20px;
}

.pros-cons-heading {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pros-col .pros-cons-heading { color: #4dffa0; }
.cons-col .pros-cons-heading { color: #ff6bc4; }

.pros-cons-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.9);
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  line-height: 1.5;
}

.pros-cons-list li:last-child { border-bottom: none; }

.pros-cons-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
  width: 16px;
  height: 16px;
}

.pros-col .pros-cons-list li svg { color: #4dffa0; }
.cons-col .pros-cons-list li svg { color: #ff6bc4; }

/* =========================================
   VIDEO
   ========================================= */
.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid rgba(255,237,119,0.3);
  background: #000;
}

.video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.video-tab {
  padding: 7px 16px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.75);
  font-size: 0.83rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  background: transparent;
}

.video-tab.active,
.video-tab:hover {
  background: var(--c-btn-yellow);
  color: #0a1628;
  border-color: var(--c-btn-yellow);
}

/* =========================================
   REVIEW CONTENT
   ========================================= */
.review-content {
  color: rgba(255,255,255,0.9);
  line-height: 1.75;
  font-size: 0.95rem;
}

.review-content h2,
.review-content h3,
.review-content h4 {
  font-family: var(--font-heading);
  color: #fff;
  margin: 22px 0 10px;
  line-height: 1.3;
  font-weight: 700;
}

.review-content h2 { font-size: 1.4rem; border-left: 4px solid var(--c-btn-yellow); padding-left: 12px; }
.review-content h3 { font-size: 1.15rem; color: var(--c-btn-yellow); }
.review-content h4 { font-size: 1rem; }

.review-content p { margin-bottom: 14px; }

.review-content ul,
.review-content ol {
  margin: 12px 0 16px 18px;
  list-style: disc;
}

.review-content ol { list-style: decimal; }

.review-content li {
  margin-bottom: 7px;
  line-height: 1.65;
}

.review-content a {
  color: var(--c-btn-yellow);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.review-content strong, .review-content b { color: #fff; font-weight: 700; }
.review-content em, .review-content i { font-style: italic; color: rgba(255,255,255,0.8); }

.review-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
  font-size: 0.9rem;
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.review-content table th,
.review-content table td {
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.25);
  text-align: left;
  white-space: nowrap;
}

.review-content table th {
  background: rgba(3,124,225,0.5);
  color: var(--c-btn-yellow);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.review-content table tr:nth-child(even) {
  background: rgba(255,255,255,0.05);
}

.review-content blockquote {
  border-left: 4px solid var(--c-btn-yellow);
  padding: 12px 18px;
  margin: 16px 0;
  background: rgba(255,237,119,0.08);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: rgba(255,255,255,0.85);
}

.review-content hr {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.18);
  margin: 22px 0;
}

/* =========================================
   SIMILAR GAMES
   ========================================= */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 16px;
}

.game-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.22s, box-shadow 0.22s;
}

.game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 32px rgba(3,124,225,0.3);
}

.game-thumb {
  width: 100%;
  height: 130px;
  object-fit: cover;
  display: block;
}

.game-info {
  padding: 14px;
}

.game-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
}

.game-desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 12px;
  line-height: 1.5;
}

.game-btns {
  display: flex;
  gap: 7px;
}

.btn-sm {
  padding: 6px 13px;
  font-size: 0.8rem;
  border-radius: 6px;
  flex: 1;
  text-align: center;
}

/* =========================================
   REVIEWS
   ========================================= */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

.review-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--radius-md);
  padding: 18px;
  transition: transform 0.22s;
}

.review-card:hover {
  transform: translateY(-3px);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,237,119,0.5);
  flex-shrink: 0;
}

.review-name {
  font-weight: 700;
  color: #fff;
  font-size: 0.92rem;
}

.review-stars {
  display: flex;
  gap: 2px;
  margin-top: 2px;
}

.review-stars svg {
  width: 14px;
  height: 14px;
  fill: var(--c-btn-yellow);
  color: var(--c-btn-yellow);
}

.review-text {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.65;
}

.review-date {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  margin-top: 8px;
}

/* Review Form */
.review-form-wrap {
  background: rgba(3,124,225,0.18);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-md);
  padding: 24px;
}

.form-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-family: var(--font-main);
  font-size: 0.9rem;
  color: #fff;
  transition: border-color var(--transition), background var(--transition);
  outline: none;
}

.form-control::placeholder { color: rgba(255,255,255,0.4); }

.form-control:focus {
  border-color: var(--c-btn-yellow);
  background: rgba(255,255,255,0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 110px;
}

.form-stars-pick {
  display: flex;
  gap: 6px;
  margin-bottom: 4px;
}

.star-pick {
  width: 28px;
  height: 28px;
  cursor: pointer;
  fill: rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.25);
  transition: fill 0.15s, transform 0.15s;
}

.star-pick:hover,
.star-pick.active {
  fill: var(--c-btn-yellow);
  color: var(--c-btn-yellow);
  transform: scale(1.2);
}

.form-success {
  display: none;
  background: rgba(77,255,160,0.12);
  border: 1px solid rgba(77,255,160,0.4);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: #4dffa0;
  font-weight: 600;
  text-align: center;
  margin-top: 12px;
}

/* =========================================
   AUTHOR
   ========================================= */
.author-block {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.author-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--c-btn-yellow);
  flex-shrink: 0;
}

.author-info { flex: 1; }

.author-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.author-pos {
  font-size: 0.82rem;
  color: var(--c-btn-yellow);
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.author-desc {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  margin-bottom: 12px;
}

.author-meta {
  display: flex;
  gap: 16px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.author-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.author-socials {
  display: flex;
  gap: 8px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  transition: background var(--transition), transform var(--transition);
}

.social-link:hover {
  background: var(--c-btn-yellow);
  color: #0a1628;
  transform: translateY(-2px);
}

.social-link svg {
  width: 17px;
  height: 17px;
}

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
  background: var(--c-primary-dark);
  border-top: 3px solid var(--c-btn-yellow);
  padding: 36px 0 20px;
  margin-top: 16px;
}

.footer-top {
  display: grid;
  grid-template-columns: 200px 1fr 1fr;
  gap: 32px;
  margin-bottom: 28px;
}

.footer-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-logo-img {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  object-fit: cover;
}

.footer-logo-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--c-btn-yellow);
  letter-spacing: 2px;
}

.footer-tagline {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

.footer-nav-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-btn-yellow);
  margin-bottom: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.footer-nav-list a {
  color: rgba(255,255,255,0.7);
  font-size: 0.87rem;
  transition: color var(--transition);
}

.footer-nav-list a:hover { color: #fff; }

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.12);
  margin: 20px 0;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}

.footer-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.5px;
}

.trust-badge svg {
  width: 16px;
  height: 16px;
  color: var(--c-btn-yellow);
}

.payment-logos {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.payment-logo {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
}

.footer-socials {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  max-width: 700px;
}

.footer-copy a { color: rgba(255,255,255,0.65); text-decoration: underline; text-underline-offset: 3px; }

.footer-provider {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

.footer-provider img {
  height: 22px;
  width: auto;
  filter: brightness(0) invert(1) opacity(0.6);
}

/* =========================================
   MOBILE MENU OVERLAY
   ========================================= */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.25s;
}

.mobile-nav-overlay.active {
  display: block;
  opacity: 1;
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: -300px;
  width: 280px;
  height: 100%;
  background: var(--c-primary-dark);
  z-index: 999;
  padding: 70px 20px 30px;
  transition: left 0.3s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow-y: auto;
  border-right: 2px solid rgba(255,237,119,0.2);
}

.mobile-nav.active { left: 0; }

.mobile-nav .nav-link {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
}

.mobile-nav-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 6px;
}

/* =========================================
   SCROLL ANIMATIONS
   ========================================= */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   BACK TO TOP
   ========================================= */
.back-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--c-btn-yellow);
  color: #0a1628;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(255,237,119,0.45);
  border: none;
  z-index: 500;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s, transform 0.3s;
}

.back-top.visible { opacity: 1; transform: translateY(0); }
.back-top:hover { background: var(--c-btn-yellow-hover); transform: translateY(-3px); }
.back-top svg { width: 20px; height: 20px; }

/* =========================================
   FAQ
   ========================================= */
.faq-item {
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 10px;
  transition: border-color 0.2s;
}

.faq-item.open { border-color: rgba(255,237,119,0.5); }

.faq-q {
  padding: 14px 18px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  background: rgba(255,255,255,0.06);
  transition: background 0.2s;
}

.faq-q:hover { background: rgba(255,255,255,0.1); }

.faq-q svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  transition: transform 0.25s;
  color: var(--c-btn-yellow);
}

.faq-item.open .faq-q svg { transform: rotate(180deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  padding: 0 18px;
  color: rgba(255,255,255,0.82);
  font-size: 0.88rem;
  line-height: 1.65;
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding: 12px 18px 16px;
}

/* =========================================
   GAME INFO TABLE
   ========================================= */
.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.info-table tr {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.info-table tr:last-child { border-bottom: none; }

.info-table td {
  padding: 10px 14px;
  line-height: 1.5;
}

.info-table td:first-child {
  color: rgba(255,255,255,0.6);
  font-size: 0.83rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: 40%;
  white-space: nowrap;
}

.info-table td:last-child { color: #fff; font-weight: 600; }

.rtp-bar-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rtp-bar {
  flex: 1;
  height: 8px;
  background: rgba(255,255,255,0.15);
  border-radius: 4px;
  overflow: hidden;
}

.rtp-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--c-btn-yellow), #ffb700);
  border-radius: 4px;
  transition: width 1s ease;
}

/* =========================================
   INFO PAGES
   ========================================= */
.info-page-block {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.info-page-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 2px solid rgba(255,237,119,0.35);
}

.info-page-content {
  color: rgba(255,255,255,0.9);
  line-height: 1.75;
  font-size: 0.95rem;
}

/* =========================================
   UTILS
   ========================================= */
.text-yellow { color: var(--c-btn-yellow); }
.text-white { color: #fff; }
.text-muted { color: rgba(255,255,255,0.6); }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.flex { display: flex; }
.gap-2 { gap: 12px; }
.items-center { align-items: center; }

/* =========================================
   WP-LIKE ELEMENTS (CAMOUFLAGE)
   ========================================= */
.wp-block-group { display: block; }
.wp-block-columns { display: flex; flex-wrap: wrap; gap: 16px; }
.has-text-align-center { text-align: center; }
.wp-element-caption { font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.entry-content { display: block; }
.post-thumbnail { display: block; }
.wp-site-blocks { display: flex; flex-direction: column; min-height: 100vh; }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-top > :first-child { grid-column: 1 / -1; }
  .pros-cons-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .header-nav { display: none; }
  .burger { display: flex; }

  .header-btns .btn { display: none; }

  .hero-balloons { width: 140px; right: 2%; opacity: 0.6; }
  .hero-multiplier { font-size: 1.5rem; padding: 6px 12px; top: 10%; right: 3%; }

  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .toc-grid { grid-template-columns: 1fr 1fr; }

  .author-block { flex-direction: column; align-items: center; text-align: center; }
  .author-socials { justify-content: center; }
  .author-meta { justify-content: center; }

  .footer-top { grid-template-columns: 1fr; gap: 20px; }

  .content-block { padding: 18px 16px; }
  .block-title { font-size: 1.25rem; }

  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
  .games-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .btn-lg { width: 100%; justify-content: center; }
  .hero-stats { gap: 16px; }
  .toc-grid { grid-template-columns: 1fr; }
}
