:root {
  --bg-base: #0b0f14;
  --bg-elevated: #111720;
  --bg-panel: #151d28;
  --bg-soft: #1a2431;
  --bg-hover: #202c3d;

  --stroke-base: #253246;
  --stroke-strong: #34455f;

  --text-primary: #f4f7fb;
  --text-secondary: #a9b6c9;
  --text-tertiary: #71829a;
  --text-disabled: #556273;

  --brand-primary: #b7ff3c;
  --brand-primary-hover: #c6ff66;
  --brand-primary-active: #98e51e;
  --brand-primary-soft: rgba(183, 255, 60, 0.12);

  --accent-cyan: #4de2ff;
  --accent-cyan-soft: rgba(77, 226, 255, 0.14);

  --reward-gold: #ffc94d;
  --danger-base: #ff5a5f;

  --shadow-1: 0 4px 12px rgba(0, 0, 0, 0.24);
  --shadow-2: 0 10px 30px rgba(0, 0, 0, 0.32);
  --shadow-3: 0 18px 48px rgba(0, 0, 0, 0.42);

  --glow-lime: 0 0 0 1px rgba(183, 255, 60, 0.20), 0 0 20px rgba(183, 255, 60, 0.22), 0 0 40px rgba(183, 255, 60, 0.10);
  --glow-cyan: 0 0 0 1px rgba(77, 226, 255, 0.20), 0 0 18px rgba(77, 226, 255, 0.20);

  --radius-xs: 8px;
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --radius-pill: 999px;

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;

  --dur-fast: 0.16s;
  --dur-normal: 0.22s;
  --dur-slow: 0.32s;
  --ease-standard: cubic-bezier(0.2, 0.8, 0.2, 1);

  --header-height-desktop: 96px;
  --header-height-mobile-top: 74px;
  --header-offset: 120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Inter", sans-serif;
  color: var(--text-primary);
  background:
    radial-gradient(circle at top center, rgba(77, 226, 255, 0.05), transparent 35%),
    radial-gradient(circle at right top, rgba(183, 255, 60, 0.04), transparent 30%),
    linear-gradient(180deg, #0b0f14 0%, #0d1219 100%);
  line-height: 1.5;
  padding-top: var(--header-offset);
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
  border: 0;
  background: transparent;
  color: inherit;
}

.container {
  width: min(100% - 32px, 1320px);
  margin-inline: auto;
}

/* Fixed header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(11, 15, 20, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(52, 69, 95, 0.4);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.22);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(183, 255, 60, 0.32), transparent);
}

.header-inner {
  position: relative;
  padding: 12px 0 14px;
}

.header-top {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: var(--header-height-desktop);
}

.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  max-width: 240px;
}

.brand-logo {
  width: 190px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.nav-desktop {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex: 1 1 auto;
  min-width: 0;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 14px;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition:
    color var(--dur-normal) var(--ease-standard),
    background-color var(--dur-normal) var(--ease-standard),
    transform var(--dur-normal) var(--ease-standard),
    box-shadow var(--dur-normal) var(--ease-standard);
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--text-primary);
  background: rgba(77, 226, 255, 0.07);
  box-shadow: inset 0 0 0 1px rgba(77, 226, 255, 0.14);
  outline: none;
}

.nav-link:active {
  transform: translateY(1px);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  flex: 0 0 auto;
}

.lang-switcher {
  position: relative;
}

.lang-current {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-width: 88px;
  height: 48px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid var(--stroke-base);
  background: linear-gradient(180deg, rgba(24, 34, 49, 0.98) 0%, rgba(16, 23, 34, 0.98) 100%);
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: var(--shadow-1), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition:
    border-color var(--dur-normal) var(--ease-standard),
    transform var(--dur-normal) var(--ease-standard),
    box-shadow var(--dur-normal) var(--ease-standard),
    background-color var(--dur-normal) var(--ease-standard);
}

.lang-current:hover,
.lang-current:focus-visible {
  border-color: rgba(77, 226, 255, 0.42);
  box-shadow: var(--shadow-1), var(--glow-cyan);
  outline: none;
}

.lang-current.is-open {
  border-color: rgba(183, 255, 60, 0.42);
  box-shadow: var(--shadow-1), var(--glow-lime);
}

.lang-current-icon {
  display: inline-flex;
  align-items: center;
  color: var(--text-secondary);
  transition: transform var(--dur-normal) var(--ease-standard);
}

.lang-current.is-open .lang-current-icon {
  transform: rotate(180deg);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 220px;
  padding: 10px;
  border-radius: 18px;
  border: 1px solid rgba(52, 69, 95, 0.8);
  background: linear-gradient(180deg, rgba(21, 29, 40, 0.98) 0%, rgba(14, 20, 29, 0.98) 100%);
  box-shadow: var(--shadow-3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
  transition:
    opacity var(--dur-normal) var(--ease-standard),
    visibility var(--dur-normal) var(--ease-standard),
    transform var(--dur-normal) var(--ease-standard);
  z-index: 20;
}

.lang-switcher.is-open .lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.lang-item {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  transition:
    background-color var(--dur-fast) var(--ease-standard),
    color var(--dur-fast) var(--ease-standard),
    transform var(--dur-fast) var(--ease-standard);
}

.lang-item:hover,
.lang-item:focus-visible {
  background: rgba(183, 255, 60, 0.10);
  color: var(--text-primary);
  outline: none;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 24px;
  border-radius: 16px;
  border: 0;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-align: center;
  transition:
    transform var(--dur-normal) var(--ease-standard),
    box-shadow var(--dur-normal) var(--ease-standard),
    filter var(--dur-normal) var(--ease-standard),
    background var(--dur-normal) var(--ease-standard);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

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

.btn-accent {
  color: #0a0f14;
  background: linear-gradient(135deg, #d2ff72 0%, #b7ff3c 45%, #7cd61b 100%);
  box-shadow:
    0 10px 24px rgba(124, 214, 27, 0.22),
    0 0 0 1px rgba(183, 255, 60, 0.22),
    0 0 22px rgba(183, 255, 60, 0.16);
}

.btn-accent:hover,
.btn-accent:focus-visible {
  filter: brightness(1.05);
  box-shadow:
    0 14px 28px rgba(124, 214, 27, 0.28),
    0 0 0 1px rgba(183, 255, 60, 0.28),
    0 0 30px rgba(183, 255, 60, 0.22);
}

.btn-secondary {
  color: var(--text-primary);
  background: linear-gradient(180deg, #182231 0%, #101722 100%);
  border: 1px solid #2b3a50;
  box-shadow: var(--shadow-1);
}

.btn-play {
  min-width: 168px;
}

.header-mobile-tools,
.header-mobile-cta,
.burger,
.mobile-menu {
  display: none;
}

.burger {
  position: relative;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 14px;
  border: 1px solid var(--stroke-base);
  background: linear-gradient(180deg, rgba(24, 34, 49, 0.98) 0%, rgba(16, 23, 34, 0.98) 100%);
  box-shadow: var(--shadow-1), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition:
    border-color var(--dur-normal) var(--ease-standard),
    box-shadow var(--dur-normal) var(--ease-standard);
}

.burger:hover,
.burger:focus-visible {
  border-color: rgba(77, 226, 255, 0.42);
  box-shadow: var(--shadow-1), var(--glow-cyan);
  outline: none;
}

.burger-line {
  position: absolute;
  left: 50%;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--text-primary);
  transform: translateX(-50%);
  transition:
    transform var(--dur-normal) var(--ease-standard),
    opacity var(--dur-normal) var(--ease-standard),
    top var(--dur-normal) var(--ease-standard);
}

.burger-line:nth-child(1) { top: 16px; }
.burger-line:nth-child(2) { top: 23px; }
.burger-line:nth-child(3) { top: 30px; }

.burger.is-active .burger-line:nth-child(1) {
  top: 23px;
  transform: translateX(-50%) rotate(45deg);
}

.burger.is-active .burger-line:nth-child(2) {
  opacity: 0;
}

.burger.is-active .burger-line:nth-child(3) {
  top: 23px;
  transform: translateX(-50%) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  left: 0;
  right: 0;
  top: var(--header-offset);
  height: calc(100dvh - var(--header-offset));
  background: linear-gradient(180deg, rgba(11, 15, 20, 0.98) 0%, rgba(13, 18, 25, 0.98) 100%);
  backdrop-filter: blur(18px);
  border-top: 1px solid rgba(52, 69, 95, 0.4);
  padding: 24px 16px 32px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity var(--dur-slow) var(--ease-standard),
    visibility var(--dur-slow) var(--ease-standard),
    transform var(--dur-slow) var(--ease-standard);
  z-index: 999;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(37, 50, 70, 0.72);
  background: linear-gradient(180deg, rgba(21, 29, 40, 0.88) 0%, rgba(16, 23, 34, 0.88) 100%);
  color: var(--text-primary);
  font-size: 16px;
  font-weight: 700;
  box-shadow: var(--shadow-1);
  transition:
    border-color var(--dur-fast) var(--ease-standard),
    transform var(--dur-fast) var(--ease-standard),
    background-color var(--dur-fast) var(--ease-standard);
}

.mobile-nav-link:hover,
.mobile-nav-link:focus-visible {
  border-color: rgba(183, 255, 60, 0.32);
  background: linear-gradient(180deg, rgba(29, 40, 55, 0.96) 0%, rgba(18, 26, 38, 0.96) 100%);
  outline: none;
}

.mobile-nav-link:active {
  transform: translateY(1px);
}

body.menu-open {
  overflow: hidden;
}

/* General sections */
.site-main {
  position: relative;
}

.section {
  padding: 40px 0;
}

.section-alt {
  background:
    radial-gradient(circle at 20% 10%, rgba(77, 226, 255, 0.04), transparent 32%),
    linear-gradient(180deg, rgba(17, 23, 32, 0.62) 0%, rgba(11, 15, 20, 0.18) 100%);
}

.section-head {
  margin-bottom: 28px;
}

.section-head-hero {
  text-align: center;
  margin-bottom: 32px;
}

.section-head-compact {
  margin-top: 32px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent-cyan);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

h1, h2, h3, h4, p {
  margin-top: 0;
}

.hero-title {
  margin-bottom: 10px;
  font-size: clamp(38px, 7vw, 68px);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.hero-title span {
  background: linear-gradient(135deg, #d2ff72 0%, #b7ff3c 45%, #7cd61b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  margin: 0 auto 16px;
  max-width: 780px;
  color: var(--text-secondary);
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 600;
}

.hero-pills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-pill {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(183, 255, 60, 0.18);
  background: rgba(183, 255, 60, 0.08);
  color: var(--text-primary);
  font-size: 13px;
  font-weight: 700;
}

.section h2 {
  margin-bottom: 10px;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.h3,
.section h3 {
  margin-bottom: 12px;
  font-size: clamp(22px, 3vw, 28px);
  line-height: 1.12;
  font-weight: 800;
}

.sub {
  margin: 0;
  max-width: 860px;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.65;
}

.card {
  background: linear-gradient(180deg, rgba(24, 34, 49, 0.98) 0%, rgba(16, 23, 34, 0.98) 100%);
  border: 1px solid rgba(37, 50, 70, 0.9);
  border-radius: 22px;
  box-shadow: var(--shadow-2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Intro */
.intro-grid {
  display: grid;
  grid-template-columns: minmax(300px, 500px) 1fr;
  gap: 24px;
  align-items: stretch;
}

.intro-media {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  min-height: 100%;
}

.intro-media img {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.intro-facts {
  padding: 26px;
}

.card-head {
  margin-bottom: 18px;
}

.facts-list {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.fact-row {
  display: grid;
  grid-template-columns: minmax(120px, 160px) 1fr;
  gap: 14px;
  padding: 13px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(52, 69, 95, 0.38);
}

.fact-k {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 700;
}

.fact-v {
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 600;
}

.intro-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* Casino cards */
.casino-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.casino-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(24, 34, 49, 0.98) 0%, rgba(16, 23, 34, 0.98) 100%);
  border: 1px solid rgba(37, 50, 70, 0.9);
  box-shadow: var(--shadow-2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.casino-top {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 14px;
  align-items: center;
}

.casino-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 78px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(52, 69, 95, 0.38);
}

.casino-logo img {
  max-width: 100%;
  max-height: 48px;
  object-fit: contain;
}

.casino-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.casino-name {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.15;
}

.casino-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 700;
}

.stars {
  display: inline-flex;
  gap: 4px;
}

.star {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
}

.star.on {
  background: linear-gradient(135deg, #ffd978 0%, #ffc94d 45%, #e39e18 100%);
}

.star.half {
  background: linear-gradient(90deg, #ffc94d 50%, rgba(255, 255, 255, 0.1) 50%);
}

.star.off {
  background: rgba(255, 255, 255, 0.08);
}

.casino-bonus {
  padding: 16px;
  border-radius: 18px;
  background: rgba(183, 255, 60, 0.08);
  border: 1px solid rgba(183, 255, 60, 0.18);
  text-align: center;
}

.bonus-k {
  margin-bottom: 6px;
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.bonus-v {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

.casino-feature {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
}

.crown {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin-top: 2px;
  border-radius: 6px;
  background: linear-gradient(135deg, #ffd978 0%, #ffc94d 45%, #e39e18 100%);
  box-shadow: 0 0 14px rgba(255, 201, 77, 0.25);
}

.casino-cta {
  margin-top: auto;
  display: flex;
  justify-content: center;
}

.casino-cta .btn {
  width: 90%;
}

.section-note {
  margin: 22px 0 0;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
}

.section-note a {
  color: var(--brand-primary);
  font-weight: 700;
}

/* Demo frame */
.game-frame {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(52, 69, 95, 0.75);
  background: linear-gradient(180deg, rgba(16, 23, 34, 0.98) 0%, rgba(10, 15, 22, 0.98) 100%);
  box-shadow: var(--shadow-3);
}

.game-frame-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 64px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(52, 69, 95, 0.5);
  background: rgba(255, 255, 255, 0.02);
}

.dots {
  display: inline-flex;
  gap: 8px;
}

.dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.dots span:nth-child(1) { background: #ff5f57; }
.dots span:nth-child(2) { background: #febc2e; }
.dots span:nth-child(3) { background: #28c840; }

.frame-title {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.frame-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.frame-link {
  color: var(--accent-cyan);
  font-size: 14px;
  font-weight: 700;
}

.frame-btn {
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 12px;
  border: 1px solid rgba(52, 69, 95, 0.65);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
  font-weight: 700;
}

.game-frame-body {
  position: relative;
  min-height: 680px;
  background: #070b10;
}

#demoIframe {
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
  display: none;
}

.demo-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
}

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

.demo-placeholder-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 7, 11, 0.22) 0%, rgba(5, 7, 11, 0.55) 100%),
    radial-gradient(circle at center, rgba(183, 255, 60, 0.10), transparent 38%);
}

.demo-play-btn {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: 16px 28px;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, #d2ff72 0%, #b7ff3c 45%, #7cd61b 100%);
  color: #0a0f14;
  font-size: 16px;
  font-weight: 900;
  box-shadow: var(--glow-lime), var(--shadow-2);
}

.demo-hint {
  position: absolute;
  bottom: 28px;
  z-index: 2;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.is-loaded iframe {
  display: block !important;
}

.is-loaded .demo-placeholder {
  display: none;
}

/* Prose */
.content-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.8fr;
  gap: 24px;
}

.prose {
  padding: 28px;
}

.prose p {
  margin-bottom: 16px;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.82;
}

.prose h3 + p {
  margin-top: 0;
}

.side-note {
  padding: 26px;
  color: var(--text-secondary);
}

.side-note p,
.side-note li {
  font-size: 15px;
  line-height: 1.8;
}

.clean-list {
  margin: 0;
  padding-left: 18px;
}

.quote {
  margin: 22px 0;
  padding: 18px 20px;
  border-left: 4px solid var(--brand-primary);
  border-radius: 14px;
  background: rgba(183, 255, 60, 0.08);
  color: var(--text-primary);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.7;
}

.author-footnote {
  margin-top: 16px;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.8;
}

/* Table */
.table-card {
  margin-top: 28px;
  padding: 24px;
}

.table-wrap {
  overflow-x: auto;
  margin-top: 18px;
}

.compare-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
}

.compare-table th,
.compare-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(52, 69, 95, 0.35);
  text-align: left;
  white-space: nowrap;
}

.compare-table th {
  color: var(--text-primary);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.compare-table td {
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 600;
}

.compare-table tbody tr:hover td {
  background: rgba(77, 226, 255, 0.04);
}

/* ===== OTHER 100% RTP GAMES ===== */
.games-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.game-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(37, 50, 70, 0.9);
  background: linear-gradient(180deg, rgba(24, 34, 49, 0.98) 0%, rgba(16, 23, 34, 0.98) 100%);
  box-shadow: var(--shadow-2);
}

.game-thumb {
  display: block;
  width: 100%;
  flex: 0 0 auto;
  aspect-ratio: 265 / 199;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}

.game-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-standard);
}

.game-thumb:hover img,
.game-thumb:focus-visible img {
  transform: scale(1.04);
}

.game-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 1 auto;
  min-width: 0;
  padding: 16px;
}

.game-title {
  margin: 0 0 10px;
  width: 100%;
  min-width: 0;
  font-size: 18px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.game-link {
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  color: var(--brand-primary);
  font-weight: 700;
  line-height: 1.2;
}

/* Strategy */
.strategy-top {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: stretch;
}

.video-card {
  padding: 22px;
}

.equal-card {
  min-height: 100%;
}

.video-embed {
  position: relative;
  min-height: 680px;
  height: 100%;
  border-radius: 22px;
  overflow: hidden;
  background: #070b10;
}

.video-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.video-placeholder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-placeholder-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 7, 11, 0.22) 0%, rgba(5, 7, 11, 0.55) 100%),
    radial-gradient(circle at center, rgba(183, 255, 60, 0.10), transparent 38%);
}

.video-play-btn {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: 16px 28px;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, #d2ff72 0%, #b7ff3c 45%, #7cd61b 100%);
  color: #0a0f14;
  font-size: 16px;
  font-weight: 900;
  box-shadow: var(--glow-lime), var(--shadow-2);
}

.video-iframe {
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
  display: none;
}

.video-embed.is-loaded .video-iframe {
  display: block;
}

.video-embed.is-loaded .video-placeholder {
  display: none;
}

.howto-steps {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.howto-step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(52, 69, 95, 0.34);
}

.howto-step-num {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(183, 255, 60, 0.10);
  color: var(--brand-primary);
  font-size: 20px;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(183, 255, 60, 0.12);
}

.howto-step-copy h4 {
  margin: 0 0 6px;
  font-size: 18px;
  line-height: 1.2;
}

.howto-step-copy p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.75;
}

.strategy-note {
  margin-top: 18px;
}

.slider-card {
  margin-top: 24px;
  padding: 24px;
}

.slider-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.slider-controls {
  display: flex;
  gap: 10px;
}

.slider-btn {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(52, 69, 95, 0.65);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
  font-size: 18px;
  font-weight: 800;
}

.slider-viewport {
  overflow: hidden;
}

.slider-track {
  display: flex;
  gap: 16px;
  will-change: transform;
  transition: transform var(--dur-slow) var(--ease-standard);
}

.slide-card {
  flex: 0 0 calc((100% - 32px) / 3);
  border: 0;
  padding: 0;
  border-radius: 18px;
  overflow: hidden;
  background: transparent;
  aspect-ratio: 16 / 10;
  box-shadow: var(--shadow-1);
}

.slide-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.multiplier-card {
  margin-top: 24px;
  padding: 24px;
}

.multiplier-head {
  margin-bottom: 18px;
}

.multiplier-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.multiplier-grid-detailed {
  grid-template-columns: repeat(4, 1fr);
}

.multiplier-item {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(24, 34, 49, 0.98) 0%, rgba(16, 23, 34, 0.98) 100%);
  border: 1px solid rgba(52, 69, 95, 0.38);
  box-shadow: var(--shadow-1);
}

.multiplier-mines {
  margin-bottom: 10px;
  color: var(--accent-cyan);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.multiplier-value {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.15;
}

.multiplier-copy {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.72;
}

.strategy-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 22px;
  margin-top: 18px;
}

.strategy-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(37, 50, 70, 0.88);
  background: linear-gradient(180deg, rgba(24, 34, 49, 0.98) 0%, rgba(16, 23, 34, 0.98) 100%);
  box-shadow: var(--shadow-1);
}

.strategy-icon {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(183, 255, 60, 0.10);
  color: var(--brand-primary);
}

.strategy-icon svg {
  width: 22px;
  height: 22px;
}

.strategy-item h4 {
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.2;
}

.strategy-item p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
}

/* Reasons */
.love-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.reason-card {
  height: 100%;
  padding: 26px 22px;
  text-align: center;
  border-radius: 22px;
  border: 1px solid rgba(37, 50, 70, 0.9);
  background: linear-gradient(180deg, rgba(24, 34, 49, 0.98) 0%, rgba(16, 23, 34, 0.98) 100%);
  box-shadow: var(--shadow-2);
}

.reason-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(77, 226, 255, 0.08);
  color: var(--accent-cyan);
}

.reason-icon svg {
  width: 34px;
  height: 34px;
}

.reason-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.reason-card p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.8;
}

/* Author */
.author-card {
  padding: 28px;
  border-radius: 26px;
  border: 1px solid rgba(37, 50, 70, 0.9);
  background: linear-gradient(180deg, rgba(24, 34, 49, 0.98) 0%, rgba(16, 23, 34, 0.98) 100%);
  box-shadow: var(--shadow-3);
}

.author-top {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  align-items: center;
}

.author-avatar img {
  width: 100%;
  border-radius: 26px;
  object-fit: cover;
}

.author-name {
  margin-bottom: 6px;
  font-size: 32px;
}

.author-role {
  margin-bottom: 16px;
  color: var(--brand-primary);
  font-weight: 700;
}

.author-bio {
  margin-bottom: 22px;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.85;
}

.author-feats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.author-feat {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(52, 69, 95, 0.34);
}

.author-feat-icn {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(183, 255, 60, 0.10);
  color: var(--brand-primary);
}

.author-feat-icn svg {
  width: 24px;
  height: 24px;
}

.author-feat-k {
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.author-feat-v {
  font-size: 15px;
  font-weight: 700;
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(37, 50, 70, 0.9);
  background: linear-gradient(180deg, rgba(24, 34, 49, 0.98) 0%, rgba(16, 23, 34, 0.98) 100%);
  box-shadow: var(--shadow-1);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 20px 22px;
  border: 0;
  background: transparent;
  color: var(--text-primary);
  text-align: left;
  font-size: 18px;
  font-weight: 800;
}

.faq-plus {
  font-size: 28px;
  line-height: 1;
  color: var(--brand-primary);
  transition: transform var(--dur-normal) var(--ease-standard);
}

.faq-item.is-open .faq-plus {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 22px 20px;
}

.faq-answer p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.85;
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(52, 69, 95, 0.4);
  background: linear-gradient(180deg, rgba(10, 14, 20, 0.98) 0%, rgba(8, 11, 16, 0.98) 100%);
}

.footer-top,
.footer-middle,
.footer-bottom {
  padding: 26px 0;
}

.footer-top {
  border-bottom: 1px solid rgba(52, 69, 95, 0.24);
}

.footer-middle {
  border-bottom: 1px solid rgba(52, 69, 95, 0.24);
}

.footer-top-main {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1.05fr;
  gap: 24px;
  align-items: start;
}

.footer-brand-main,
.footer-rtp,
.footer-responsible,
.footer-note {
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(37, 50, 70, 0.9);
  background: linear-gradient(180deg, rgba(24, 34, 49, 0.55) 0%, rgba(16, 23, 34, 0.55) 100%);
  box-shadow: var(--shadow-1);
  height: 100%;
}

.footer-logo-centered {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.footer-brand-main .footer-disclaimer {
  text-align: left;
  margin: 0;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.85;
}

.footer-rtp h3,
.footer-responsible h3,
.footer-note h3 {
  margin-bottom: 14px;
  font-size: 16px;
}

.footer-rtp-links {
  display: grid;
  gap: 12px;
}

.footer-rtp-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 52px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(77, 226, 255, 0.18);
  background: linear-gradient(180deg, rgba(21, 29, 40, 0.92) 0%, rgba(14, 20, 29, 0.92) 100%);
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 700;
  box-shadow: var(--shadow-1), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition:
    transform var(--dur-normal) var(--ease-standard),
    border-color var(--dur-normal) var(--ease-standard),
    box-shadow var(--dur-normal) var(--ease-standard),
    color var(--dur-normal) var(--ease-standard);
}

.footer-rtp-btn:hover,
.footer-rtp-btn:focus-visible {
  border-color: rgba(183, 255, 60, 0.34);
  box-shadow: var(--shadow-1), var(--glow-cyan);
  transform: translateY(-1px);
  outline: none;
}

.footer-rtp-arrow {
  color: var(--brand-primary);
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  flex: 0 0 auto;
}

.footer-responsible p {
  margin: 0 0 14px;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.85;
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 28px;
  margin-left: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(183, 255, 60, 0.12);
  border: 1px solid rgba(183, 255, 60, 0.24);
  color: var(--brand-primary);
  font-size: 13px;
  font-weight: 900;
  vertical-align: middle;
}

.footer-safe-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-cyan);
  font-size: 14px;
  font-weight: 700;
}

.footer-safe-link:hover,
.footer-safe-link:focus-visible {
  color: var(--text-primary);
  outline: none;
}

.footer-nav-row {
  padding: 18px 0;
  border-bottom: 1px solid rgba(52, 69, 95, 0.24);
}

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

.footer-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 14px;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 700;
  transition:
    color var(--dur-normal) var(--ease-standard),
    background-color var(--dur-normal) var(--ease-standard),
    box-shadow var(--dur-normal) var(--ease-standard),
    transform var(--dur-normal) var(--ease-standard);
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--text-primary);
  background: rgba(77, 226, 255, 0.07);
  box-shadow: inset 0 0 0 1px rgba(77, 226, 255, 0.14);
  outline: none;
}

.footer-middle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.footer-middle-grid-custom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contacts a {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 600;
}

.footer-contacts a:hover,
.footer-contacts a:focus-visible {
  color: var(--text-primary);
  outline: none;
}

.footer-note p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.85;
}

.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom-row p {
  margin: 0;
  color: var(--text-tertiary);
  font-size: 13px;
}

/* To top */
.to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1100;
  width: 50px;
  height: 50px;
  border-radius: 16px;
  border: 1px solid rgba(183, 255, 60, 0.26);
  background: linear-gradient(180deg, rgba(24, 34, 49, 0.98) 0%, rgba(16, 23, 34, 0.98) 100%);
  color: var(--brand-primary);
  font-size: 24px;
  font-weight: 900;
  box-shadow: var(--shadow-2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity var(--dur-normal) var(--ease-standard),
    visibility var(--dur-normal) var(--ease-standard),
    transform var(--dur-normal) var(--ease-standard);
}

.to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(5, 8, 12, 0.84);
  backdrop-filter: blur(12px);
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: min(96vw, 1400px);
  max-height: 90vh;
  border-radius: 18px;
  box-shadow: var(--shadow-3);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 30px;
  line-height: 1;
}

/* Section action button */
.section-head-with-action {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.section-head-main {
  flex: 1 1 auto;
  min-width: 0;
}

.section-link-btn {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  margin-top: 4px;
  border-radius: 14px;
  border: 1px solid rgba(77, 226, 255, 0.22);
  background: linear-gradient(180deg, rgba(24, 34, 49, 0.92) 0%, rgba(16, 23, 34, 0.92) 100%);
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: var(--shadow-1), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition:
    transform var(--dur-normal) var(--ease-standard),
    border-color var(--dur-normal) var(--ease-standard),
    box-shadow var(--dur-normal) var(--ease-standard),
    color var(--dur-normal) var(--ease-standard),
    background var(--dur-normal) var(--ease-standard);
}

.section-link-btn:hover,
.section-link-btn:focus-visible {
  color: var(--text-primary);
  border-color: rgba(183, 255, 60, 0.34);
  box-shadow: var(--shadow-1), var(--glow-cyan);
  transform: translateY(-1px);
  outline: none;
}

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

/* INFO SECTION */
.content-grid-single {
  grid-template-columns: 1fr;
}

.info-intro-block {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 30px;
  padding: 22px;
  border-radius: 22px;
  background:
    radial-gradient(circle at top left, rgba(183, 255, 60, 0.08), transparent 38%),
    radial-gradient(circle at right center, rgba(77, 226, 255, 0.08), transparent 34%),
    rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(52, 69, 95, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.info-intro-media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-intro-media img {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.28));
}

.info-intro-copy h3 {
  margin-bottom: 14px;
}

.info-intro-copy p:last-child {
  margin-bottom: 0;
}

.content-accent-block {
  position: relative;
  margin-top: 28px;
  margin-bottom: 28px;
  padding-inline: 28px;
}

.content-accent-block::before,
.content-accent-block::after {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  width: 3px;
  border-radius: 999px;
  pointer-events: none;
}

.content-accent-block::before {
  left: 0;
  background:
    linear-gradient(180deg, rgba(77, 226, 255, 0.12) 0%, rgba(77, 226, 255, 0.85) 50%, rgba(77, 226, 255, 0.12) 100%);
  box-shadow: 0 0 18px rgba(77, 226, 255, 0.22);
}

.content-accent-block::after {
  right: 0;
  background:
    linear-gradient(180deg, rgba(183, 255, 60, 0.12) 0%, rgba(183, 255, 60, 0.85) 50%, rgba(183, 255, 60, 0.12) 100%);
  box-shadow: 0 0 18px rgba(183, 255, 60, 0.18);
}

.content-accent-inner {
  padding: 22px 8px;
}

.accent-kicker {
  margin: 0 0 8px;
  color: var(--accent-cyan);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.content-accent-inner h3 {
  margin-bottom: 8px;
  font-size: clamp(24px, 3.4vw, 32px);
  line-height: 1.08;
}

.accent-sub {
  margin: 0 0 16px;
  color: var(--text-primary);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
}

.content-accent-inner p {

  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.82;
}

.table-note {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.015) 100%);
  border: 1px solid rgba(52, 69, 95, 0.34);
}

.table-note .author-footnote {
  margin: 0;
}

.compare-table td br {
  content: "";
}

/* RTP accent block */
.content-accent-block-rtp {
  margin-top: 28px;
  margin-bottom: 32px;
}

.accent-list {
  margin: 0 0 18px;
  padding-left: 20px;
  display: grid;
  gap: 14px;
}

.accent-list li {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.8;
}

.accent-list li strong {
  color: var(--text-primary);
  font-weight: 800;
}

.accent-note {
  margin-top: 18px;
}

/* Responsive */
@media (max-width: 1180px) {
  .nav-desktop {
    gap: 2px;
  }

  .nav-link {
    padding-inline: 10px;
    font-size: 13px;
  }

  .btn-play {
    min-width: 148px;
  }

  .brand-logo {
    width: 170px;
  }

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

  .games-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .multiplier-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .multiplier-grid-detailed {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-top-main {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  .site-header {
    background: rgba(11, 15, 20, 0.9);
  }

  .header-inner {
    padding: 10px 0 12px;
  }

  .header-top {
    min-height: auto;
    gap: 12px;
  }

  .nav-desktop,
  .header-actions-desktop {
    display: none;
  }

  .header-mobile-tools {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
  }

  .header-mobile-cta {
    display: flex;
    justify-content: center;
    margin-top: 12px;
  }

  .btn-play-mobile {
    width: 80%;
    min-width: 0;
  }

  .burger,
  .mobile-menu {
    display: block;
  }

  .brand {
    max-width: 150px;
  }

  .brand-logo {
    width: 132px;
  }

  .lang-switcher-mobile .lang-current {
    min-width: 82px;
    height: 46px;
    padding-inline: 12px;
  }

  .section {
    padding: 74px 0;
  }

  .intro-grid,
  .content-grid,
  .strategy-top,
  .author-top,
  .footer-middle-grid,
  .footer-middle-grid-custom,
  .content-grid-single {
    grid-template-columns: 1fr;
  }

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

  .strategy-points,
  .casino-grid,
  .love-grid {
    grid-template-columns: 1fr;
  }

  .game-frame-body,
  .video-embed {
    min-height: 560px;
  }

  .author-avatar {
    max-width: 260px;
  }

  .author-feats {
    grid-template-columns: 1fr;
  }

  .info-intro-block {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 20px;
  }

  .info-intro-media {
    justify-content: flex-start;
  }

  .info-intro-media img {
    max-width: 240px;
  }

  .content-accent-block {
    padding-inline: 20px;
  }

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

@media (max-width: 767px) {
  .container {
    width: min(100% - 24px, 1320px);
  }

  .section {
    padding: 62px 0;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-sub {
    font-size: 16px;
  }

  .intro-facts,
  .prose,
  .side-note,
  .table-card,
  .slider-card,
  .author-card,
  .multiplier-card {
    padding: 20px;
  }

  .intro-actions {
    grid-template-columns: 1fr;
  }

  .fact-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .frame-actions {
    display: none;
  }

  .game-frame-body,
  .video-embed {
    min-height: 420px;
  }

  .slide-card {
    flex-basis: 100%;
  }

  .games-grid {
    grid-template-columns: 1fr;
  }

  .brand {
    max-width: 124px;
  }

  .brand-logo {
    width: 118px;
  }

  .lang-switcher-mobile .lang-current {
    min-width: 76px;
    height: 44px;
    font-size: 13px;
  }

  .burger {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .burger-line:nth-child(1) { top: 14px; }
  .burger-line:nth-child(2) { top: 21px; }
  .burger-line:nth-child(3) { top: 28px; }

  .burger.is-active .burger-line:nth-child(1),
  .burger.is-active .burger-line:nth-child(3) {
    top: 21px;
  }

  .btn-play-mobile {
    width: 80%;
    min-height: 50px;
    padding: 13px 18px;
    font-size: 14px;
  }

  .lang-menu {
    width: 210px;
    right: 0;
  }

  .mobile-menu {
    padding: 60px 12px 24px;
  }

  .mobile-nav-link {
    min-height: 50px;
    padding: 12px 14px;
    font-size: 15px;
  }

  .section-head-with-action {
    flex-direction: column;
    align-items: stretch;
  }

  .section-link-btn {
    width: fit-content;
    max-width: 100%;
    margin-top: 2px;
  }

  .info-intro-block {
    padding: 18px;
    border-radius: 20px;
  }

  .content-accent-block {
    padding-inline: 16px;
  }

  .content-accent-inner {
    padding: 16px 2px;
  }

  .accent-sub {
    font-size: 16px;
  }

  .content-accent-inner p {
    font-size: 15px;
    line-height: 1.78;
  }

  .table-note {
    padding: 14px 14px;
  }

  .video-card {
    padding: 20px;
  }

  .howto-step {
    grid-template-columns: 44px 1fr;
    gap: 12px;
    padding: 14px;
  }

  .howto-step-num {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    font-size: 18px;
  }

  .multiplier-grid,
  .multiplier-grid-detailed {
    grid-template-columns: 1fr;
  }

  .multiplier-item {
    padding: 16px;
  }

  .footer-nav {
    gap: 8px 10px;
  }

  .footer-nav a {
    min-height: 38px;
    padding: 8px 12px;
    font-size: 13px;
  }

  .footer-brand-main,
  .footer-rtp,
  .footer-responsible,
  .footer-note {
    padding: 18px;
    border-radius: 20px;
  }

  .footer-bottom-row {
    flex-direction: column;
    align-items: flex-start;
  }
}