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

:root {
  --clr-primary: #037ce1;
  --clr-primary-dark: #025fb0;
  --clr-primary-light: #1a8ef5;
  --clr-accent-yellow: #ffed77;
  --clr-accent-yellow-dark: #f0d800;
  --clr-accent-pink: #ff018b;
  --clr-accent-pink-dark: #cc006f;
  --clr-bg: #00c2ff;
  --clr-bg-light: #33d0ff;
  --clr-bg-dark: #00a8db;
  --clr-white: #ffffff;
  --clr-dark: #0a1628;
  --clr-dark-2: #0d1f3c;
  --clr-text-light: #e8f4ff;
  --clr-text-muted: rgba(255,255,255,0.7);
  --clr-border: rgba(255,255,255,0.2);
  --clr-card-bg: rgba(3, 124, 225, 0.85);
  --clr-card-bg-light: rgba(255,255,255,0.12);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.15);
  --shadow-md: 0 6px 24px rgba(0,0,0,0.2);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.3);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --font-main: 'Inter', 'IntroLight', sans-serif;
  --transition: 0.28s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-main);
  background: var(--clr-bg);
  color: var(--clr-white);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.b7k2x { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.r9q4m { display: block; }

.x3f8n { text-align: center; }
.m2p7v { display: flex; align-items: center; }
.k5j1w { display: grid; }

.wp-content-placeholder { display: none; }
.wpe-4f2a { opacity: 0; position: absolute; pointer-events: none; width: 0; height: 0; overflow: hidden; }

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

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 16px;
}

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

.site-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.site-logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--clr-accent-yellow);
  letter-spacing: -0.5px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

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

.header-nav a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  color: var(--clr-text-light);
  font-size: 0.875rem;
  font-weight: 500;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}

.header-nav a:hover {
  background: rgba(255,255,255,0.12);
  color: var(--clr-accent-yellow);
}

.header-nav svg { width: 16px; height: 16px; flex-shrink: 0; }

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.875rem;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  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 var(--transition);
}

.btn:hover::after { background: rgba(255,255,255,0.15); }

.btn-demo {
  background: var(--clr-accent-yellow);
  color: var(--clr-dark);
  box-shadow: 0 4px 16px rgba(255,237,119,0.4);
}
.btn-demo:hover { background: var(--clr-accent-yellow-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(255,237,119,0.5); }

.btn-play {
  background: var(--clr-accent-pink);
  color: var(--clr-white);
  box-shadow: 0 4px 16px rgba(255,1,139,0.4);
}
.btn-play:hover { background: var(--clr-accent-pink-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(255,1,139,0.5); }

.btn-bonus {
  background: linear-gradient(135deg, #ff018b, #ff6b1a);
  color: var(--clr-white);
  box-shadow: 0 4px 16px rgba(255,1,139,0.35);
}
.btn-bonus:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(255,1,139,0.5); }

.btn-lg { padding: 14px 32px; font-size: 1rem; border-radius: var(--radius-md); }
.btn-xl { padding: 18px 40px; font-size: 1.1rem; border-radius: var(--radius-md); }

.burger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.burger-btn:hover { background: rgba(255,255,255,0.1); }
.burger-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--clr-white);
  border-radius: 2px;
  transition: all var(--transition);
}
.burger-btn.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-btn.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger-btn.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--clr-primary-dark);
  padding: 16px 20px;
  gap: 4px;
  border-top: 1px solid var(--clr-border);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  color: var(--clr-text-light);
  font-size: 0.9rem;
  font-weight: 500;
  transition: background var(--transition);
}
.mobile-menu a:hover { background: rgba(255,255,255,0.1); color: var(--clr-accent-yellow); }
.mobile-menu svg { width: 18px; height: 18px; }

.mobile-menu-btns { display: flex; gap: 8px; padding: 8px 0 4px; flex-wrap: wrap; }

.hero-section {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--clr-dark-2) 0%, #0a2a5c 50%, #023876 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/balloon-hero.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.45;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3,30,80,0.88) 0%, rgba(3,30,80,0.5) 60%, rgba(0,0,0,0.1) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,237,119,0.15);
  border: 1px solid rgba(255,237,119,0.4);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--clr-accent-yellow);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--clr-white);
  line-height: 1.15;
  margin-bottom: 16px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.5);
}

.hero-content h1 span { color: var(--clr-accent-yellow); }

.hero-spoiler-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: var(--clr-text-muted);
  font-size: 0.875rem;
  cursor: pointer;
  padding: 4px 0;
  margin-bottom: 10px;
  transition: color var(--transition);
}
.hero-spoiler-toggle:hover { color: var(--clr-accent-yellow); }
.hero-spoiler-toggle svg { transition: transform var(--transition); }
.hero-spoiler-toggle.open svg { transform: rotate(180deg); }

.hero-intro {
  max-width: 560px;
  color: var(--clr-text-light);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 14px;
  display: none;
}
.hero-intro.visible { display: block; animation: fadeIn 0.3s ease; }

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

.hero-stat {
  display: flex;
  flex-direction: column;
}
.hero-stat strong {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--clr-accent-yellow);
  line-height: 1;
}
.hero-stat span {
  font-size: 0.75rem;
  color: var(--clr-text-muted);
  margin-top: 2px;
}

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

.breadcrumbs-section {
  padding: 12px 0;
  background: rgba(0,0,0,0.15);
  border-bottom: 1px solid var(--clr-border);
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.breadcrumbs a, .breadcrumbs span {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  transition: color var(--transition);
}
.breadcrumbs a:hover { color: var(--clr-accent-yellow); }
.breadcrumbs .bc-sep { color: rgba(255,255,255,0.3); font-size: 0.75rem; }
.breadcrumbs .bc-current { color: var(--clr-text-light); font-weight: 500; }

.main-content { padding: 40px 0 60px; }

.section-block {
  background: var(--clr-card-bg);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin: 0 0 28px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
}

.section-block-alt {
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin: 0 0 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255,255,255,0.12);
}

.section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--clr-accent-yellow);
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 2px solid rgba(255,237,119,0.2);
}
.section-title svg { width: 24px; height: 24px; flex-shrink: 0; }

.toc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px;
}

.toc-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--clr-text-light);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all var(--transition);
  cursor: pointer;
}
.toc-item:hover {
  background: rgba(255,237,119,0.15);
  border-color: rgba(255,237,119,0.4);
  color: var(--clr-accent-yellow);
  transform: translateY(-2px);
}
.toc-item svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--clr-accent-yellow); }

.game-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--clr-dark-2);
  border: 2px solid rgba(255,255,255,0.15);
  box-shadow: var(--shadow-lg);
  position: relative;
}

.game-iframe-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: var(--clr-dark);
}

.game-iframe-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.game-actions {
  display: flex;
  gap: 12px;
  padding: 16px;
  background: rgba(0,0,0,0.3);
  justify-content: center;
  flex-wrap: wrap;
}

.game-mobile-play {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 40px 20px;
  background: linear-gradient(135deg, #0a1628 0%, #023876 100%);
  text-decoration: none;
  color: var(--clr-white);
  cursor: pointer;
  transition: background var(--transition);
}
.game-mobile-play:hover { background: linear-gradient(135deg, #0d1f3c 0%, #034a9e 100%); }
.game-mobile-play-icon {
  width: 80px;
  height: 80px;
  background: var(--clr-accent-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-dark);
  box-shadow: 0 0 30px rgba(255,237,119,0.5);
}
.game-mobile-play-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--clr-accent-yellow);
}
.game-mobile-play-sub {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
}

.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.pros-col, .cons-col {
  border-radius: var(--radius-md);
  padding: 24px;
}

.pros-col {
  background: rgba(0, 200, 100, 0.1);
  border: 1px solid rgba(0, 200, 100, 0.25);
}
.cons-col {
  background: rgba(255, 60, 60, 0.1);
  border: 1px solid rgba(255, 60, 60, 0.25);
}

.pros-cons-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid currentColor;
  opacity: 0.9;
}
.pros-col .pros-cons-title { color: #4ade80; }
.cons-col .pros-cons-title { color: #f87171; }
.pros-cons-title svg { width: 20px; height: 20px; }

.pros-cons-list { display: flex; flex-direction: column; gap: 10px; }

.pros-cons-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--clr-text-light);
}
.pros-cons-item svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; }
.pros-col .pros-cons-item svg { color: #4ade80; }
.cons-col .pros-cons-item svg { color: #f87171; }

.review-content { line-height: 1.8; color: var(--clr-text-light); }
.review-content h2, .review-content h3, .review-content h4 {
  color: var(--clr-accent-yellow);
  margin: 24px 0 12px;
  font-weight: 700;
  line-height: 1.3;
}
.review-content h2 { font-size: 1.4rem; }
.review-content h3 { font-size: 1.2rem; }
.review-content h4 { font-size: 1rem; }
.review-content p { margin-bottom: 14px; }
.review-content a { color: var(--clr-accent-yellow); border-bottom: 1px solid rgba(255,237,119,0.4); transition: border-color var(--transition); }
.review-content a:hover { border-color: var(--clr-accent-yellow); }
.review-content ul, .review-content ol { margin: 12px 0 16px 20px; display: flex; flex-direction: column; gap: 6px; }
.review-content ul { list-style: disc; }
.review-content ol { list-style: decimal; }
.review-content li { font-size: 0.9rem; line-height: 1.6; }
.review-content blockquote {
  border-left: 4px solid var(--clr-accent-yellow);
  padding: 12px 20px;
  margin: 16px 0;
  background: rgba(255,237,119,0.05);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
}
.review-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: block;
  overflow-x: auto;
}
.review-content table th, .review-content table td {
  padding: 10px 14px;
  text-align: left;
  border: 1px solid rgba(255,255,255,0.15);
  font-size: 0.875rem;
  white-space: nowrap;
}
.review-content table th { background: rgba(3,124,225,0.5); font-weight: 700; color: var(--clr-accent-yellow); }
.review-content table tr:nth-child(even) { background: rgba(255,255,255,0.04); }
.review-content img { border-radius: var(--radius-sm); margin: 12px 0; max-width: 100%; }
.review-content strong { color: var(--clr-white); font-weight: 700; }
.review-content em { font-style: italic; color: var(--clr-text-muted); }
.review-content hr { border: none; border-top: 1px solid var(--clr-border); margin: 20px 0; }

.faq-list { display: flex; flex-direction: column; gap: 10px; }

.faq-item {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: rgba(255,237,119,0.4); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--clr-white);
  cursor: pointer;
  gap: 12px;
  user-select: none;
  transition: color var(--transition);
}
.faq-item.open .faq-question { color: var(--clr-accent-yellow); }
.faq-question svg { width: 18px; height: 18px; flex-shrink: 0; transition: transform var(--transition); color: var(--clr-accent-yellow); }
.faq-item.open .faq-question svg { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding var(--transition);
  padding: 0 20px;
  color: var(--clr-text-light);
  font-size: 0.9rem;
  line-height: 1.7;
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 20px 16px;
}

.author-card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.author-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--clr-accent-yellow);
  box-shadow: 0 0 0 4px rgba(255,237,119,0.15);
}

.author-info { flex: 1; }
.author-name { font-size: 1.15rem; font-weight: 800; color: var(--clr-white); margin-bottom: 2px; }
.author-position { font-size: 0.85rem; color: var(--clr-accent-yellow); margin-bottom: 10px; font-weight: 600; }
.author-bio { font-size: 0.875rem; color: var(--clr-text-light); line-height: 1.7; margin-bottom: 14px; }
.author-meta { display: flex; flex-wrap: wrap; gap: 14px; font-size: 0.8rem; color: var(--clr-text-muted); margin-bottom: 14px; }
.author-meta span { display: flex; align-items: center; gap: 5px; }
.author-meta svg { width: 14px; height: 14px; }
.author-socials { display: flex; gap: 8px; }
.author-socials a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(255,255,255,0.1);
  color: var(--clr-text-light);
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.15);
  transition: all var(--transition);
}
.author-socials a:hover { background: rgba(255,237,119,0.15); border-color: rgba(255,237,119,0.4); color: var(--clr-accent-yellow); }
.author-socials svg { width: 16px; height: 16px; }

.site-footer {
  background: var(--clr-primary);
  border-top: 3px solid var(--clr-primary-light);
  padding: 48px 0 0;
}

.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--clr-border);
}

.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-logo img { height: 40px; width: auto; object-fit: contain; }
.footer-logo-text { font-size: 1.3rem; font-weight: 800; color: var(--clr-accent-yellow); }
.footer-desc { font-size: 0.82rem; color: var(--clr-text-muted); line-height: 1.6; margin-bottom: 16px; }

.footer-nav-title { font-size: 0.8rem; font-weight: 700; color: var(--clr-accent-yellow); letter-spacing: 0.8px; text-transform: uppercase; margin-bottom: 14px; }
.footer-nav-list { display: flex; flex-direction: column; gap: 8px; }
.footer-nav-list a { font-size: 0.85rem; color: var(--clr-text-muted); transition: color var(--transition); }
.footer-nav-list a:hover { color: var(--clr-accent-yellow); }

.footer-trust-section { padding: 24px 0; border-bottom: 1px solid var(--clr-border); }
.footer-trust-title { font-size: 0.75rem; font-weight: 700; color: var(--clr-text-muted); letter-spacing: 0.8px; text-transform: uppercase; text-align: center; margin-bottom: 16px; }

.trust-logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; align-items: center; }
.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--clr-text-light);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  min-width: 80px;
  text-align: center;
}
.trust-badge strong { font-size: 0.85rem; color: var(--clr-accent-yellow); }

.payment-logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; align-items: center; margin-bottom: 20px; }
.payment-badge {
  background: rgba(255,255,255,0.9);
  color: var(--clr-dark);
  border-radius: var(--radius-sm);
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  box-shadow: var(--shadow-sm);
}

.footer-socials { display: flex; gap: 10px; margin-bottom: 16px; }
.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: var(--clr-text-light);
  border: 1px solid rgba(255,255,255,0.15);
  transition: all var(--transition);
}
.footer-social-link:hover { background: var(--clr-accent-yellow); color: var(--clr-dark); transform: translateY(-2px); }
.footer-social-link svg { width: 16px; height: 16px; }

.footer-provider { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.footer-provider img { height: 28px; width: auto; object-fit: contain; filter: brightness(0) invert(1); opacity: 0.7; transition: opacity var(--transition); }
.footer-provider img:hover { opacity: 1; }

.footer-bottom {
  text-align: center;
  padding: 20px;
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
}

.footer-bottom p { margin-bottom: 4px; }
.footer-bottom a { color: var(--clr-text-muted); border-bottom: 1px dotted rgba(255,255,255,0.3); }
.footer-bottom a:hover { color: var(--clr-accent-yellow); }

.footer-email { color: var(--clr-accent-yellow); }

.game-info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
}
.game-info-table td {
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 0.875rem;
  vertical-align: top;
  line-height: 1.5;
}
.game-info-table td:first-child {
  font-weight: 700;
  color: var(--clr-accent-yellow);
  background: rgba(0,0,0,0.15);
  white-space: nowrap;
  width: 40%;
}
.game-info-table tr:nth-child(even) td:last-child { background: rgba(255,255,255,0.03); }

@keyframes fadeIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,1,139,0.4); }
  50% { box-shadow: 0 0 0 8px rgba(255,1,139,0); }
}
@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.btn-play { animation: pulse 2.5s ease-in-out infinite; }
.btn-play:hover { animation: none; }

.animate-float { animation: float 4s ease-in-out infinite; }

.fade-in-up {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-up.animate-ready {
  opacity: 0;
  transform: translateY(24px);
}
.fade-in-up.visible { opacity: 1; transform: translateY(0); }

.rating-stars { color: #ffed77; letter-spacing: 2px; font-size: 1.1rem; }

.game-badge-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.game-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--clr-text-light);
}
.game-badge.hot { background: rgba(255,1,139,0.2); border-color: rgba(255,1,139,0.4); color: #ff6ab0; }
.game-badge.rtp { background: rgba(0,200,100,0.15); border-color: rgba(0,200,100,0.3); color: #4ade80; }

.scroll-top-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  width: 44px;
  height: 44px;
  background: var(--clr-accent-pink);
  color: var(--clr-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(255,1,139,0.4);
  cursor: pointer;
  border: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition);
}
.scroll-top-btn.visible { opacity: 1; transform: translateY(0); }
.scroll-top-btn:hover { background: var(--clr-accent-pink-dark); transform: translateY(-3px); }
.scroll-top-btn svg { width: 20px; height: 20px; }

.section-divider {
  height: 40px;
  position: relative;
  overflow: hidden;
}

.similar-games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 10px;
}

.similar-game-item {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 12px;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--clr-text-light);
  transition: all var(--transition);
}
.similar-game-item:hover {
  background: rgba(255,237,119,0.1);
  border-color: rgba(255,237,119,0.3);
  color: var(--clr-accent-yellow);
  transform: translateY(-2px);
}

.wp-block-button__link { display: none; }
.woocommerce-product-gallery { display: none; }
.entry-header { display: none !important; }
.wp-caption { display: none; }
.screen-reader-text { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

#wpadminbar { display: none !important; }
.wp-image-placeholder { display: none; }
.entry-header.page-template-default { display: none; }

@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .pros-cons-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .header-nav { display: none; }
  .burger-btn { display: flex; }
  .header-actions .btn { display: none; }
  .section-block { padding: 20px; }
  .section-block-alt { padding: 20px; }
  .pros-cons-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .author-card { flex-direction: column; align-items: center; text-align: center; }
  .author-socials { justify-content: center; }
  .author-meta { justify-content: center; }
  .hero-content { padding: 40px 20px; }
  .hero-stats { gap: 16px; }
  .toc-grid { grid-template-columns: 1fr 1fr; }
  .game-desktop-only { display: none; }
  .game-mobile-play { display: flex; }
  .game-actions { flex-direction: column; }
  .game-actions .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .toc-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .header-actions .btn-bonus { display: none; }
  .header-actions .btn { padding: 7px 10px; font-size: 0.78rem; }
}

.n3x7p { display: none; }
.q8r2t { display: none; }
.f6m4k::after { content: ''; display: none; }

.multiplier-display {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(255,237,119,0.15), rgba(255,1,139,0.15));
  border: 1px solid rgba(255,237,119,0.3);
  border-radius: 20px;
  padding: 3px 12px;
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--clr-accent-yellow);
  margin-left: 8px;
}

.info-callout {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255,237,119,0.08);
  border: 1px solid rgba(255,237,119,0.2);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 0.875rem;
  color: var(--clr-text-light);
  line-height: 1.6;
  margin-top: 16px;
}
.info-callout svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; color: var(--clr-accent-yellow); }

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--clr-accent-pink);
  color: var(--clr-white);
  font-size: 0.7rem;
  font-weight: 900;
  border: 2px solid rgba(255,255,255,0.3);
}
