:root {
  --clr-nav: #003499;
  --clr-nav-dark: #002880;
  --clr-bg: #0258d8;
  --clr-bg-dark: #0147b5;
  --clr-btn-orange: #fb9c23;
  --clr-btn-orange-hover: #e88a10;
  --clr-btn-green: #539802;
  --clr-btn-green-hover: #438001;
  --clr-white: #ffffff;
  --clr-light: #e8f0ff;
  --clr-text: #ffffff;
  --clr-text-muted: #b0c8f5;
  --clr-block-bg: rgba(0, 30, 100, 0.55);
  --clr-block-border: rgba(255, 255, 255, 0.12);
  --clr-table-head: rgba(0, 52, 153, 0.85);
  --clr-table-row: rgba(0, 40, 120, 0.5);
  --clr-table-row-alt: rgba(0, 52, 153, 0.35);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --shadow: 0 4px 32px rgba(0, 0, 0, 0.35);
  --font-main: 'Roboto', 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; background: var(--clr-bg); }

body {
  font-family: var(--font-main);
  font-size: 16px;
  color: var(--clr-text);
  background: linear-gradient(160deg, #0147b5 0%, #0258d8 40%, #013da0 100%);
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

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

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

.box { width: 100%; }

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

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

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

h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); margin-bottom: 20px; }
h2 { font-size: clamp(1.3rem, 3vw, 1.9rem); margin-bottom: 16px; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); margin-bottom: 12px; }

p { margin-bottom: 14px; line-height: 1.65; color: var(--clr-light); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-size: 0.93rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity var(--transition);
}
.btn:hover::after { opacity: 1; }
.btn:active { transform: scale(0.97); }

.btn--orange {
  background: var(--clr-btn-orange);
  color: #1a0500;
  box-shadow: 0 3px 16px rgba(251, 156, 35, 0.45);
}
.btn--orange:hover { background: var(--clr-btn-orange-hover); color: #1a0500; box-shadow: 0 5px 22px rgba(251, 156, 35, 0.6); }

.btn--green {
  background: var(--clr-btn-green);
  color: #fff;
  box-shadow: 0 3px 16px rgba(83, 152, 2, 0.45);
}
.btn--green:hover { background: var(--clr-btn-green-hover); color: #fff; box-shadow: 0 5px 22px rgba(83, 152, 2, 0.6); }

.btn--outline {
  background: transparent;
  color: var(--clr-white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn--outline:hover { background: rgba(255,255,255,0.1); color: #fff; border-color: rgba(255,255,255,0.7); }

.btn--sm { padding: 7px 16px; font-size: 0.83rem; }
.btn--lg { padding: 13px 32px; font-size: 1.05rem; }
.btn--xl { padding: 16px 40px; font-size: 1.15rem; }

.btn--pulse {
  animation: btnPulse 2.5s infinite;
}
@keyframes btnPulse {
  0%, 100% { box-shadow: 0 3px 16px rgba(251, 156, 35, 0.45); }
  50% { box-shadow: 0 6px 32px rgba(251, 156, 35, 0.75); }
}

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

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

.header-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

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

.header-nav a {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--clr-light);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.header-nav a:hover { background: rgba(255,255,255,0.1); color: #fff; }
.header-nav a svg { width: 16px; height: 16px; flex-shrink: 0; }

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

.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  cursor: pointer;
  padding: 0;
  background: none;
  border: none;
  gap: 5px;
  flex-shrink: 0;
}
.burger span {
  display: block;
  height: 3px;
  background: #fff;
  border-radius: 3px;
  transition: transform var(--transition), opacity var(--transition);
  transform-origin: center;
}
.burger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 66px;
  left: 0;
  right: 0;
  background: var(--clr-nav-dark);
  z-index: 999;
  padding: 16px;
  flex-direction: column;
  gap: 6px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  max-height: calc(100vh - 66px);
  overflow-y: auto;
}
.mobile-menu.active { display: flex; }
.mobile-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--clr-light);
  font-size: 1rem;
  font-weight: 500;
  padding: 10px 12px;
  border-radius: 8px;
  transition: background var(--transition);
}
.mobile-menu a:hover { background: rgba(255,255,255,0.1); color: #fff; }
.mobile-menu a svg { width: 18px; height: 18px; flex-shrink: 0; }

.hero-section {
  padding: 48px 0 40px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/mines-slots-hero.png') center/cover no-repeat;
  opacity: 0.22;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 32px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.hero-left {
  flex: 1 1 340px;
  min-width: 280px;
}

.hero-right {
  flex: 1 1 380px;
  min-width: 300px;
}

.hero-title {
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0,0,0,0.5);
  margin-bottom: 8px;
  line-height: 1.15;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--clr-text-muted);
  margin-bottom: 24px;
  line-height: 1.55;
}

.hero-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.game-info-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--clr-block-bg);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
  border: 1px solid var(--clr-block-border);
}

.game-info-table tr {
  border-bottom: 1px solid var(--clr-block-border);
  transition: background var(--transition);
}
.game-info-table tr:last-child { border-bottom: none; }
.game-info-table tr:hover { background: rgba(255,255,255,0.05); }

.game-info-table td {
  padding: 11px 16px;
  font-size: 0.92rem;
  color: var(--clr-light);
  line-height: 1.4;
  vertical-align: middle;
}

.game-info-table td:first-child {
  color: var(--clr-text-muted);
  font-weight: 500;
  width: 140px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.game-info-table td:last-child { font-weight: 600; color: #fff; }

.game-info-table .td-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--clr-btn-orange);
}

.demo-frame-wrap {
  background: var(--clr-block-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--clr-block-border);
  box-shadow: var(--shadow);
  aspect-ratio: 16/10;
  width: 100%;
  position: relative;
  backdrop-filter: blur(8px);
  min-height: 530px;
}

.demo-frame-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.demo-frame-cover {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,52,153,0.9), rgba(2,88,216,0.8));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  cursor: pointer;
  transition: opacity var(--transition);
  z-index: 2;
}
.demo-frame-cover.hidden { opacity: 0; pointer-events: none; }
.demo-frame-cover img {
  width: 120px;
  height: auto;
  filter: drop-shadow(0 4px 16px rgba(251,156,35,0.5));
  animation: floatAnim 3s ease-in-out infinite;
}
@keyframes floatAnim {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.section {
  padding: 48px 0;
}

.section-title {
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 28px;
  position: relative;
  padding-bottom: 14px;
}

.section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 54px;
  height: 4px;
  background: var(--clr-btn-orange);
  border-radius: 2px;
}

.block-card {
  background: var(--clr-block-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-block-border);
  padding: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
  margin-bottom: 28px;
}

.app-section-inner {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.app-phone-wrap {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
}

.phone-frame {
  position: relative;
  width: 200px;
  flex-shrink: 0;
}

.phone-outer {
  background: #111;
  border-radius: 36px;
  padding: 12px 10px;
  box-shadow: 0 0 0 3px #333, 0 16px 48px rgba(0,0,0,0.6);
  position: relative;
}
.phone-outer::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 6px;
  background: #222;
  border-radius: 3px;
}
.phone-screen {
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 9/19;
  width: 100%;
  background: #000;
}
.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.app-info { flex: 1 1 320px; }

.app-data-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--clr-block-border);
}

.app-data-table th {
  background: var(--clr-table-head);
  color: #fff;
  padding: 10px 14px;
  font-size: 0.88rem;
  text-align: left;
  font-weight: 700;
}

.app-data-table td {
  padding: 9px 14px;
  font-size: 0.88rem;
  color: var(--clr-light);
  border-bottom: 1px solid var(--clr-block-border);
  vertical-align: middle;
}
.app-data-table tr:nth-child(even) td { background: var(--clr-table-row-alt); }
.app-data-table td:first-child { color: var(--clr-text-muted); font-weight: 500; }

.dl-buttons { display: flex; gap: 10px; flex-wrap: wrap; }

.btn-dl {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 10px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
  text-decoration: none;
}
.btn-dl:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.5); color: #fff; }
.btn-dl svg { width: 20px; height: 20px; flex-shrink: 0; }

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

.review-block {
  line-height: 1.75;
}

.review-block h2,
.review-block h3,
.review-block h4 { color: #fff; margin: 22px 0 10px; }
.review-block p { color: var(--clr-light); margin-bottom: 14px; }
.review-block ul, .review-block ol { margin: 0 0 16px 22px; color: var(--clr-light); line-height: 1.75; }
.review-block li { margin-bottom: 6px; }
.review-block a { color: var(--clr-btn-orange); }
.review-block a:hover { color: var(--clr-btn-orange-hover); }
.review-block strong { color: #fff; }
.review-block em { font-style: italic; color: var(--clr-text-muted); }
.review-block blockquote {
  border-left: 4px solid var(--clr-btn-orange);
  padding: 10px 18px;
  background: rgba(251,156,35,0.08);
  border-radius: 0 8px 8px 0;
  margin: 16px 0;
  color: var(--clr-light);
  font-style: italic;
}
.review-block table {
  width: auto;
  min-width: 60%;
  margin: 0 auto 18px;
  border-collapse: collapse;
  text-align: left;
}
.review-block table th {
  background: var(--clr-table-head);
  color: #fff;
  padding: 9px 14px;
  font-size: 0.9rem;
  border: 1px solid var(--clr-block-border);
}
.review-block table td {
  padding: 8px 14px;
  border: 1px solid var(--clr-block-border);
  color: var(--clr-light);
  font-size: 0.9rem;
  vertical-align: middle;
}
.review-block table tr:nth-child(even) td { background: var(--clr-table-row-alt); }

.author-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(0,52,153,0.6);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  border: 1px solid var(--clr-block-border);
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.author-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--clr-btn-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
}
.author-info { flex: 1; min-width: 180px; }
.author-name { font-weight: 700; color: #fff; font-size: 1rem; margin-bottom: 3px; }
.author-role { font-size: 0.85rem; color: var(--clr-text-muted); margin-bottom: 6px; }
.author-link { font-size: 0.85rem; color: var(--clr-btn-orange); }
.author-link:hover { color: var(--clr-btn-orange-hover); }

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

.game-card {
  flex: 1 1 160px;
  background: var(--clr-block-bg);
  border: 1px solid var(--clr-block-border);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: pointer;
}
.game-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  border-color: var(--clr-btn-orange);
}
.game-card-logo {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
}
.game-card-logo img{
  width: 90px;
  height: 60px;
  border-radius: 10px;
 
}
.game-card-name { font-weight: 700; font-size: 0.95rem; color: #fff; margin-bottom: 4px; }
.game-card-provider { font-size: 0.78rem; color: var(--clr-text-muted); margin-bottom: 10px; }
.game-card-btns { display: flex; gap: 6px; justify-content: center; flex-wrap: wrap; }

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

.faq-item {
  background: var(--clr-block-bg);
  border: 1px solid var(--clr-block-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: rgba(251,156,35,0.5); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.98rem;
  color: #fff;
  gap: 12px;
  user-select: none;
}

.faq-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--clr-btn-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition);
  color: #fff;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding var(--transition);
}
.faq-item.open .faq-answer { max-height: 500px; }

.faq-answer-inner {
  padding: 0 20px 18px;
  color: var(--clr-light);
  font-size: 0.93rem;
  line-height: 1.7;
}

.site-footer {
  background: var(--clr-nav);
  margin-top: auto;
  padding: 0;
  box-shadow: 0 -2px 20px rgba(0,0,0,0.3);
}

.footer-top {
  padding: 36px 0 20px;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid var(--clr-block-border);
}

.footer-logo-col { flex: 0 0 auto; }
.footer-logo-col a{ display: flex;width: fit-content; }
.footer-logo-col img { height: 60px; width: auto; margin-bottom: 12px; }
.footer-tagline { font-size: 0.83rem; color: var(--clr-text-muted); max-width: 220px; line-height: 1.55; }

.footer-nav-col { flex: 1 1 150px; }
.footer-nav-col h4 { font-size: 0.88rem; color: var(--clr-btn-orange); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 12px; }
.footer-nav-col a {
  display: block;
  color: var(--clr-text-muted);
  font-size: 0.86rem;
  margin-bottom: 7px;
  transition: color var(--transition);
}
.footer-nav-col a:hover { color: #fff; }

.footer-social { flex: 0 0 auto; }
.footer-social h4 { font-size: 0.88rem; color: var(--clr-btn-orange); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 12px; }
.social-links { display: flex; gap: 10px; flex-wrap: wrap; }
.social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid var(--clr-block-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), border-color var(--transition);
}
.social-link:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.4); }
.social-link svg { width: 18px; height: 18px; color: #fff; }

.footer-middle {
  padding: 20px 0;
  border-bottom: 1px solid var(--clr-block-border);
}

.footer-badges {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-badges-group { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.footer-badges-group span {
  font-size: 0.7rem;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 6px;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--clr-block-border);
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.badge-pill svg { width: 14px; height: 14px; color: var(--clr-btn-orange); }

.provider-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.75;
  transition: opacity var(--transition);
}
.provider-badge:hover { opacity: 1; }
.provider-badge img { height: 28px; width: auto; filter: brightness(0) invert(1); opacity: 0.7; }

.payment-methods { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.payment-pill {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 6px;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--clr-block-border);
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.footer-bottom {
  padding: 18px 0;
  text-align: center;
}

.footer-legal {
  font-size: 0.76rem;
  color: var(--clr-text-muted);
  line-height: 1.65;
  max-width: 860px;
  margin: 0 auto 10px;
}

.footer-copyright {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
}

.breadcrumbs {
  padding: 12px 0;
  font-size: 0.84rem;
  color: var(--clr-text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.breadcrumbs a { color: var(--clr-text-muted); transition: color var(--transition); }
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs span { color: var(--clr-btn-orange); }

.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--clr-btn-orange);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(251,156,35,0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
  z-index: 500;
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { transform: translateY(-3px); }
.scroll-top svg { width: 20px; height: 20px; }

.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.tag-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: rgba(251,156,35,0.18);
  color: var(--clr-btn-orange);
  border: 1px solid rgba(251,156,35,0.35);
}

.rtp-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  background: rgba(83,152,2,0.2);
  color: #7ed321;
  border: 1px solid rgba(83,152,2,0.4);
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 700;
}

.separator {
  height: 1px;
  background: var(--clr-block-border);
  margin: 32px 0;
}

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

.el-noop-xf7b2 { display: none !important; }
.wp-block-group { display: block; }
.wp-content-wrapper { overflow: hidden; }
.wpcf7-spinner { display: none; }

.info-page-content {
  padding: 40px 0 60px;
}
.info-page-content h1 { margin-bottom: 24px; }
.info-page-content h2 { font-size: 1.3rem; margin: 24px 0 10px; }
.info-page-content p { color: var(--clr-light); margin-bottom: 14px; }
.info-page-content ul, .info-page-content ol { margin: 0 0 16px 22px; color: var(--clr-light); }
.info-page-content li { margin-bottom: 6px; }
.info-page-content a { color: var(--clr-btn-orange); }

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

  .hero-inner { gap: 24px; }
  .hero-left, .hero-right { flex: 1 1 100%; min-width: 0; }

  .app-section-inner { flex-direction: column; align-items: center; }
  .app-info { min-width: 0; }

  .footer-top { gap: 24px; }
  .footer-badges { gap: 14px; }
}

@media (max-width: 600px) {
  .hero-btns .btn--xl { padding: 12px 22px; font-size: 1rem; }
  .block-card { padding: 18px 14px; }
  .game-info-table td:first-child { width: 110px; font-size: 0.83rem; }
  .game-info-table td:last-child { font-size: 0.88rem; }
  .section { padding: 32px 0; }
  .similar-games-grid { gap: 10px; }
  .game-card { flex: 1 1 130px; padding: 14px 10px; }
  .footer-top {flex-direction: column;}
}

@media (max-width: 400px) {
  .header-buttons .btn { padding: 7px 10px; font-size: 0.78rem; }
}

.wpb3f2a19e { display: block; }
.ec7a4d6b82 { position: relative; }
.a9f1c305d7 { overflow: hidden; }
.b84e2f17ac { visibility: visible; }
.c3d9a04e51 { opacity: 1; }
.d51b8c7a02 { pointer-events: auto; }
.f07ea3c918 { user-select: none; }
.e29d0b6f43 { -webkit-tap-highlight-color: transparent; }
.a7c04e2b19 { touch-action: manipulation; }
.b2f8d31a05 { backface-visibility: hidden; }
.wp-block-columns { display: flex; gap: 24px; flex-wrap: wrap; }
.wp-block-column { flex: 1 1 0; min-width: 0; }
.has-text-align-center { text-align: center; }
.is-layout-flex { display: flex; flex-wrap: wrap; }
.wp-container-core-1 { gap: 16px; }
.elementor-section { position: relative; }
.elementor-container { display: flex; flex-wrap: wrap; }
.elementor-widget-wrap { display: flex; position: relative; }
.elementor-widget { position: relative; }
.e-con-inner { padding: 0; width: 100%; }
.c9e3b7f204 { grid-area: unset; }
.a1d8f25c63 { transform: translateZ(0); }
.f3a2e19b47 { will-change: auto; }
.d70c1b4e92 { contain: layout; }
.b59f30a817 { isolation: isolate; }
.entry-content { display: block; }
.site-main { display: block; }
.wp-site-blocks { display: flow-root; }
.has-global-padding { padding-inline: var(--wp--style--root--padding-right, 0); }
.alignwide { margin-inline: -24px; }
.alignfull { margin-inline: calc(-1 * var(--wp--style--root--padding-right, 0)); }
.is-root-container { display: flow-root; }
.wp-element-caption { font-size: 0.8em; color: var(--clr-text-muted); }
.e8b3c1d0f7 { list-style: none; margin: 0; padding: 0; }
.a4d7e2f591 { border-radius: 0; }
.wpcf7 { display: block; }
.wpcf7-form { display: block; }
.screen-reader-text { clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%); height: 1px; margin: -1px; overflow: hidden; position: absolute; width: 1px; word-wrap: normal !important; }
