:root {
  --color-header: #fe87d7;
  --color-header-dark: #e870c4;
  --color-btn-green: #73d245;
  --color-btn-green-hover: #5bb834;
  --color-btn-orange: #ff8603;
  --color-btn-orange-hover: #e67500;
  --color-bg: #07a3fe;
  --color-bg-dark: #0591e5;
  --color-surface: #ffffff;
  --color-surface-alt: #f0f9ff;
  --color-text: #1a1a2e;
  --color-text-light: #ffffff;
  --color-text-muted: #4a5568;
  --color-border: #bee3f8;
  --color-accent: #fe87d7;
  --color-shadow: rgba(7, 163, 254, 0.25);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.25s ease;
  --font-main: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

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

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

.box {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: 0 4px 24px var(--color-shadow);
}

main {
  flex: 1;
  padding: 20px 0;
}

a {
  color: var(--color-btn-green);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-btn-green-hover);
}

img {
  max-width: 100%;
  height: auto;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-main);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-text);
}

h1 { font-size: clamp(1.5rem, 4vw, 2.25rem); margin-bottom: 16px; }
h2 { font-size: clamp(1.25rem, 3vw, 1.75rem); margin-bottom: 14px; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.35rem); margin-bottom: 12px; }

p { margin-bottom: 14px; line-height: 1.7; }

li { margin-bottom: 6px; line-height: 1.6; }

.header.box {
  background: var(--color-header);
  border-radius: 0;
  margin-bottom: 0;
  padding: 0;
  box-shadow: 0 2px 16px rgba(254, 135, 215, 0.4);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header.box .container {
  max-width: 1200px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  gap: 12px;
  flex-wrap: nowrap;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  height: 48px;
  width: auto;
  border-radius: var(--radius-sm);
  object-fit: contain;
}

.logo-text {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-text-light);
  text-shadow: 0 1px 4px rgba(0,0,0,0.2);
  white-space: nowrap;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.header-nav li a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-light);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}

.header-nav li a:hover {
  background: rgba(255,255,255,0.2);
  color: var(--color-text-light);
}

.header-nav li a svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 18px;
  font-family: var(--font-main);
  font-size: 0.875rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.btn:active {
  transform: translateY(0);
}

.btn--green {
  background: var(--color-btn-green);
  color: #ffffff;
  box-shadow: 0 3px 12px rgba(115, 210, 69, 0.4);
}

.btn--green:hover {
  background: var(--color-btn-green-hover);
  color: #ffffff;
}

.btn--orange {
  background: var(--color-btn-orange);
  color: #ffffff;
  box-shadow: 0 3px 12px rgba(255, 134, 3, 0.4);
}

.btn--orange:hover {
  background: var(--color-btn-orange-hover);
  color: #ffffff;
}

.btn--sm {
  padding: 7px 14px;
  font-size: 0.8rem;
}

.btn--lg {
  padding: 13px 28px;
  font-size: 1rem;
}

.btn--pulse {
  animation: btn-pulse 2.5s infinite;
}

@keyframes btn-pulse {
  0%, 100% { box-shadow: 0 3px 12px rgba(255, 134, 3, 0.4); }
  50% { box-shadow: 0 6px 28px rgba(255, 134, 3, 0.7); }
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: rgba(255,255,255,0.15);
  border: none;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text-light);
  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-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
}

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

.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0; right: 0;
  width: 280px;
  height: 100vh;
  background: var(--color-header-dark);
  padding: 70px 20px 30px;
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
}

.mobile-menu.active {
  display: flex;
  transform: translateX(0);
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 20px;
}

.mobile-menu ul li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-light);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.mobile-menu ul li a:hover {
  background: rgba(255,255,255,0.15);
}

.mobile-menu ul li a svg {
  width: 16px;
  height: 16px;
}

.mobile-menu-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-menu-btns .btn {
  width: 100%;
  justify-content: center;
}

.hero-section {
  padding: 30px 0 10px;
}

.hero-grid {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.hero-info {
  flex: 1;
  min-width: 0;
}

.hero-demo {
  flex: 0 0 340px;
  max-width: 340px;
}

.hero-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  color: var(--color-text);
  margin-bottom: 6px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}

.hero-stats-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 22px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 2px 12px var(--color-shadow);
}

.hero-stats-table tr:nth-child(odd) td {
  background: var(--color-surface-alt);
}

.hero-stats-table tr:nth-child(even) td {
  background: var(--color-surface);
}

.hero-stats-table td {
  padding: 10px 14px;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--color-border);
}

.hero-stats-table td:first-child {
  font-weight: 700;
  color: var(--color-text-muted);
  width: 48%;
  white-space: nowrap;
}

.hero-stats-table td:last-child {
  font-weight: 600;
  color: var(--color-text);
}

.hero-stats-table .stat-icon {
  margin-right: 6px;
  font-size: 1rem;
  display: inline-block;
}

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

.demo-frame-wrap {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 6px 32px var(--color-shadow);
  border: 3px solid var(--color-header);
}

.demo-frame-header {
  background: var(--color-header);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.demo-frame-header span {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-text-light);
}

.demo-badge {
  background: var(--color-btn-green);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.demo-frame-body {
  position: relative;
  aspect-ratio: 4/3;
  background: #000;
}

.demo-frame-body img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.demo-frame-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: linear-gradient(135deg, rgba(254,135,215,0.85) 0%, rgba(7,163,254,0.85) 100%);
}

.play-icon-btn {
  width: 70px;
  height: 70px;
  background: var(--color-btn-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  box-shadow: 0 4px 20px rgba(115,210,69,0.6);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: play-pulse 2s infinite;
}

.play-icon-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(115,210,69,0.7);
}

@keyframes play-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(115,210,69,0.6); }
  50% { box-shadow: 0 8px 40px rgba(115,210,69,0.9); }
}

.play-icon-btn svg {
  width: 30px;
  height: 30px;
  fill: #fff;
  margin-left: 4px;
}

.demo-overlay-text {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.breadcrumbs-section {
  padding: 4px 0 0;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  list-style: none;
  font-size: 0.82rem;
}

.breadcrumbs li {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
}

.breadcrumbs li a {
  color: var(--color-btn-green);
  font-weight: 600;
}

.breadcrumbs li span {
  color: var(--color-text-muted);
}

.breadcrumbs .bc-sep {
  color: var(--color-text-muted);
  font-size: 0.8rem;
}

.section-title {
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-weight: 800;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--color-header);
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-title::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 22px;
  background: var(--color-btn-orange);
  border-radius: 3px;
  flex-shrink: 0;
}

.info-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-md);
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
  font-size: 0.9rem;
}

.info-table th {
  background: var(--color-header);
  color: var(--color-text-light);
  padding: 11px 16px;
  text-align: left;
  font-weight: 700;
  font-size: 0.85rem;
}

.info-table td {
  padding: 10px 16px;
  border-bottom: 1px solid var(--color-border);
  text-align: left;
  vertical-align: middle;
}

.info-table tr:nth-child(odd) td {
  background: var(--color-surface-alt);
}

.info-table tr:nth-child(even) td {
  background: var(--color-surface);
}

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

.info-table td:first-child {
  font-weight: 700;
  color: var(--color-text-muted);
  white-space: nowrap;
}

.info-table .badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
}

.badge--green { background: rgba(115,210,69,0.15); color: #3d8b1e; }
.badge--orange { background: rgba(255,134,3,0.15); color: #c06200; }
.badge--blue { background: rgba(7,163,254,0.15); color: #0572b0; }
.badge--pink { background: rgba(254,135,215,0.3); color: #a03880; }

.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 20px var(--color-shadow);
}

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

.content-block {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--color-text);
}

.content-block h1,
.content-block h2,
.content-block h3,
.content-block h4,
.content-block h5,
.content-block h6 {
  margin-top: 24px;
  margin-bottom: 12px;
  color: var(--color-text);
}

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

.content-block ul,
.content-block ol {
  padding-left: 22px;
  margin-bottom: 16px;
}

.content-block li {
  margin-bottom: 8px;
}

.content-block a {
  color: var(--color-btn-green);
  text-decoration: underline;
}

.content-block table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  overflow-x: auto;
  display: block;
  border-radius: var(--radius-sm);
}

.content-block table th {
  background: var(--color-header);
  color: var(--color-text-light);
  padding: 10px 14px;
  text-align: left;
  font-weight: 700;
}

.content-block table td {
  padding: 9px 14px;
  border-bottom: 1px solid var(--color-border);
  text-align: left;
}

.content-block table tr:nth-child(even) td {
  background: var(--color-surface-alt);
}

.content-block blockquote {
  border-left: 4px solid var(--color-header);
  padding: 12px 18px;
  margin: 16px 0;
  background: var(--color-surface-alt);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
}

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

.author-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--color-header);
  flex-shrink: 0;
  box-shadow: 0 3px 12px var(--color-shadow);
}

.author-info { flex: 1; }

.author-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 2px;
}

.author-position {
  font-size: 0.85rem;
  color: var(--color-btn-orange);
  font-weight: 600;
  margin-bottom: 8px;
}

.author-bio {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 10px;
}

.author-meta {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 10px;
}

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

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

.author-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: var(--color-surface-alt);
  border-radius: 50%;
  color: var(--color-btn-green);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.author-socials a:hover {
  background: var(--color-btn-green);
  color: #fff;
  transform: scale(1.1);
}

.author-socials a svg {
  width: 16px;
  height: 16px;
}

.games-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.game-card {
  flex: 1 1 200px;
  min-width: 180px;
  background: var(--color-surface);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
}

.game-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px var(--color-shadow);
  border-color: var(--color-header);
}

.game-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.game-card-body {
  padding: 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.game-card-name {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--color-text);
}

.game-card-desc {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  flex: 1;
}

.game-card-btns {
  display: flex;
  gap: 6px;
  margin-top: 8px;
}

.game-card-btns .btn {
  flex: 1;
  font-size: 0.75rem;
  padding: 6px 8px;
}

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

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.faq-item:hover {
  box-shadow: 0 4px 16px var(--color-shadow);
}

.faq-question {
  width: 100%;
  background: var(--color-surface-alt);
  border: none;
  padding: 14px 18px;
  text-align: left;
  font-family: var(--font-main);
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--color-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  transition: background var(--transition);
}

.faq-question:hover {
  background: rgba(254,135,215,0.15);
}

.faq-question.active {
  background: rgba(254,135,215,0.2);
  color: var(--color-text);
}

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--color-btn-orange);
}

.faq-question.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 14px 18px;
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
}

.faq-answer.open {
  display: block;
  animation: fadeInDown 0.25s ease;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

.footer-box {
  background: var(--color-header);
  border-radius: 0;
  margin-top: auto;
  padding: 0;
  box-shadow: 0 -2px 16px rgba(254,135,215,0.4);
}

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

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.footer-brand {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-brand a{
  display: block;width: fit-content;
}
.footer-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.footer-brand-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-text-light);
}

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

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  color: var(--color-text-light);
  transition: background var(--transition), transform var(--transition);
}

.footer-socials a:hover {
  background: rgba(255,255,255,0.4);
  transform: scale(1.1);
  color: var(--color-text-light);
}

.footer-socials a svg {
  width: 14px;
  height: 14px;
}

.footer-nav-col {
  flex: 1;
  min-width: 140px;
}

.footer-nav-title {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 10px;
}

.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-nav-list li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color var(--transition);
}

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

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
  align-items: center;
}

.footer-badge {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-text-light);
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.footer-provider {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.3);
}

.footer-provider img {
  height: 24px;
  width: auto;
  object-fit: contain;
}

.footer-provider span {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-text-light);
}

.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.2);
  margin: 16px 0;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.footer-copyright {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  max-width: 600px;
}

.footer-legal {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-top: 6px;
}

.footer-contact {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.8);
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-end;
}

.footer-contact a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color var(--transition);
}

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

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

.rtp-bar-track {
  flex: 1;
  height: 8px;
  background: var(--color-border);
  border-radius: 4px;
  overflow: hidden;
}

.rtp-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-btn-green), #a8e83a);
  border-radius: 4px;
  transition: width 1.2s cubic-bezier(0.4,0,0.2,1);
  width: 0;
}

.rtp-bar-fill.animated {
  width: 96.5%;
}

.rtp-label {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--color-btn-green-hover);
  white-space: nowrap;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}

.tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(7,163,254,0.12);
  color: #0572b0;
  border: 1px solid rgba(7,163,254,0.25);
}

.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 20px;
  width: 42px;
  height: 42px;
  background: var(--color-btn-orange);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(255,134,3,0.4);
  z-index: 900;
  transition: transform var(--transition), box-shadow var(--transition);
}

.scroll-top.visible { display: flex; }
.scroll-top:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(255,134,3,0.5); }
.scroll-top svg { width: 18px; height: 18px; color: #fff; }

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

.xp8r3a { display: none; visibility: hidden; }
.wp-block-x7f2k { display: none; }
.e9m1p4 { position: absolute; overflow: hidden; clip: rect(0,0,0,0); }

@media (max-width: 960px) {
  .hero-grid { flex-direction: column; }
  .hero-demo { flex: none; max-width: 100%; }
}

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

  .hero-cta-row .btn--lg { padding: 11px 20px; font-size: 0.9rem; }

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

  .games-grid { gap: 12px; }
  .game-card { flex: 1 1 160px; min-width: 150px; }

  .footer-top { flex-direction: column; gap: 20px; }
  .footer-bottom { flex-direction: column; }
  .footer-contact { align-items: flex-start; }

  .box { padding: 18px 14px; }
}

@media (max-width: 480px) {
  .header-inner { padding: 10px 12px; }
  .logo-text { font-size: 0.95rem; }
  .btn { padding: 8px 14px; font-size: 0.82rem; }
  .hero-title { font-size: 1.4rem; }
  .game-card { min-width: unset; }
}
@media (max-width: 420px) {
.header-buttons .btn--green {display: none;}
}
.d4b9c2-hidden { display: none; height: 0; overflow: hidden; }
.wp-block-group { display: block; }
.entry-meta { display: none; }
.wp-post-image { display: none; }
.screen-reader-text { position: absolute; clip: rect(0,0,0,0); }
.f7x2z9-container { display: none; overflow: hidden; }
