:root {
  --bg-page: #eef4ff;
  --bg-page-alt: #e6efff;
  --surface-page: #ffffff;
  --surface-muted: #f7faff;
  --surface-soft: #eef4ff;
  --surface-strong: #dbe7ff;

  --line-soft: #dbe5f4;
  --line-mid: #c3d2ea;
  --line-strong: #8ea4c7;

  --text-primary: #0b1220;
  --text-secondary: #334155;
  --text-muted: #64748b;
  --text-inverse: #ffffff;

  --brand-primary: #14213d;
  --brand-secondary: #1e2f57;
  --brand-accent: #2563eb;
  --brand-accent-hover: #1d4ed8;
  --brand-accent-soft: #dbeafe;

  --success: #16a34a;
  --warning: #d97706;
  --danger: #dc2626;

  --radius-xs: 10px;
  --radius-sm: 14px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 30px;

  --shadow-xs: 0 1px 2px rgba(37, 99, 235, 0.06);
  --shadow-sm: 0 10px 30px rgba(37, 99, 235, 0.10);
  --shadow-md: 0 20px 50px rgba(20, 33, 61, 0.14);
  --shadow-lg: 0 30px 80px rgba(20, 33, 61, 0.18);

  --header-height: 94px;
  --header-height-mobile: 136px;

  --container-main: 1240px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  margin: 0;
  min-width: 320px;
  background: linear-gradient(180deg, #f8fbff 0%, #eef4ff 42%, #e7f0ff 100%);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

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

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

.container {
  width: min(var(--container-main), calc(100% - 48px));
  margin: 0 auto;
}

.page-main {
  padding-top: var(--header-height);
}

.section-spacing {
  padding: 45px 0;
}

.section-head {
  display: grid;
  gap: 14px;
  margin-bottom: 32px;
}

.section-head-inline {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 20px;
}

.section-head-copy {
  display: grid;
  gap: 12px;
}

.section-head h2,
.intro-facts h1,
.faq-shell h2,
.cta-shell h2 {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text-primary);
  letter-spacing: -0.045em;
}

.section-head h2 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.02;
  font-weight: 900;
}

.intro-facts h1 {
  font-size: clamp(36px, 4vw, 54px);
  line-height: 0.98;
  font-weight: 900;
}

.faq-shell h2,
.cta-shell h2 {
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.04;
  font-weight: 900;
}

.section-head p,
.intro-lead,
.content-copy p,
.footer-modern-brand p,
.footer-block p,
.faq-answer,
.biography-content p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.72;
}

.section-chip {
  display: inline-flex;
  align-items: center;
  width: max-content;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line-mid);
  border-radius: 999px;
  background: var(--surface-page);
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease,
    color 0.18s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-accent {
  background: var(--brand-primary);
  color: var(--text-inverse);
  box-shadow: var(--shadow-sm);
}

.btn-accent:hover {
  background: var(--brand-secondary);
  box-shadow: var(--shadow-md);
}

.section-inline-btn {
  align-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 14px;
  background: var(--surface-page);
  border: 1px solid var(--line-mid);
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: var(--shadow-xs);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease;
}

.section-inline-btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
  border-color: var(--line-strong);
  background: var(--surface-muted);
}

.fake-link {
  cursor: pointer;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.82);
border-bottom: 1px solid rgba(37, 99, 235, 0.10);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

}

.header-row {
  display: grid;
  grid-template-columns: 300px 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: var(--header-height);
}

.site-logo {
  display: inline-flex;
  align-items: center;
  width: 300px;
  max-width: 100%;
  margin-left: 30px;
}

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

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

.desktop-nav a,
.mobile-nav a,
.footer-block a {
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 700;
  transition: color 0.18s ease, opacity 0.18s ease;
}

.desktop-nav a:hover,
.mobile-nav a:hover,
.footer-block a:hover {
  color: var(--text-primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: var(--surface-page);
}

.lang-option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  user-select: none;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.lang-option:hover {
  transform: translateY(-1px);
}

.lang-option.is-active {
  background: var(--brand-primary);
  color: #fff;
}

.burger {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: var(--surface-page);
}

.burger span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--text-primary);
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.mobile-cta-row,
.mobile-menu {
  display: none;
}

.mobile-menu {
  border-top: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.98);
  height: calc(100dvh - var(--header-height-mobile));
  overflow: auto;
}

.mobile-menu-inner {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 100%;
  padding: 28px 0 36px;
}

.mobile-nav {
  display: grid;
  gap: 14px;
  width: 100%;
}

.mobile-nav a {
  display: block;
  padding: 18px 18px;
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  background: var(--surface-page);
  color: var(--text-primary);
}

.mobile-menu.is-open {
  display: block;
}

/* INTRO */

.intro-section {
  min-height: calc(100dvh - var(--header-height));
  padding: 28px 0 24px;
  display: flex;
  align-items: stretch;
}

.intro-shell {
  width: min(var(--container-main), calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  align-content: start;
  gap: 20px;
  min-height: calc(100dvh - var(--header-height) - 40px);
}

.intro-top {
  display: grid;
  grid-template-columns: minmax(300px, 360px) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
  min-height: 0;
}

.intro-photo,
.intro-facts,
.intro-timeline-block,
.biography-shell,
.direction-card,
.casino-card,
.video-card,
.media-info-card,
.slot-card,
.cta-shell,
.promo-card,
.faq-shell,
.footer-modern,
.footer-block {
  border: 1px solid var(--line-soft);
  background: var(--surface-page);
  box-shadow: var(--shadow-sm);
}

.intro-photo,
.intro-facts,
.intro-timeline-block,
.biography-shell,
.video-card,
.media-info-card,
.promo-card,
.cta-shell,
.faq-shell,
.footer-modern {
  border-radius: 24px;
}

.intro-photo,
.intro-facts,
.intro-timeline-block,
.biography-shell,
.direction-card,
.casino-card,
.slot-card,
.footer-block {
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.intro-photo:hover,
.intro-facts:hover,
.intro-timeline-block:hover,
.biography-shell:hover,
.direction-card:hover,
.casino-card:hover,
.slot-card:hover,
.footer-block:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-mid);
}

.intro-photo {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 0;
  cursor: zoom-in;
  background: #e5e7eb;
}

.intro-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.zoom-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: inline-flex;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.88);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
}

.intro-facts {
  position: relative;
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 28px;
  overflow: hidden;
}

.intro-facts::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, #0f172a 0%, #334155 100%);
}

.intro-facts h1 {
  margin: 0;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 0.96;
  letter-spacing: -0.05em;
  font-weight: 900;
}

.intro-lead {
  margin: 0;
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1.72;
}

.facts-table {
  display: grid;
  gap: 0;
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  overflow: hidden;
  background: var(--surface-muted);
}

.fact-row {
  display: grid;
  grid-template-columns: minmax(180px, 220px) minmax(0, 1fr);
  gap: 12px;
  padding: 13px 16px;
  border-bottom: 1px solid var(--line-soft);
}

.fact-row:last-child {
  border-bottom: 0;
}

.fact-key {
  color: var(--text-muted);
  font-weight: 700;
}

.fact-value {
  color: var(--text-primary);
  font-weight: 800;
}

.social-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 2px;
}

.social-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  background: var(--surface-page);
  color: var(--text-primary);
  font-weight: 700;
}

.social-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: inline-grid;
  place-items: center;
  background: var(--surface-soft);
}

.social-icon svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.intro-timeline-block {
  display: grid;
  gap: 18px;
  padding: 24px 24px 26px;
}

.intro-timeline-grid,
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.timeline-item,
.direction-card,
.slot-card,
.casino-card {
  border-radius: 20px;
}

.timeline-item,
.intro-timeline-block .timeline-item {
  padding: 10px;
  background: var(--surface-muted);
  border: 1px solid var(--line-soft);
}

.timeline-year,
.intro-timeline-block .timeline-year {
  color: var(--brand-accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.timeline-head,
.intro-timeline-block .timeline-head {
  margin-top: 8px;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-primary);
}

.timeline-item p,
.intro-timeline-block .timeline-item p {
  margin: 8px 0 0;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.58;
}

.intro-down {
  display: inline-flex;
  justify-self: center;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid var(--line-mid);
  border-radius: 14px;
  background: var(--surface-page);
  box-shadow: var(--shadow-xs);
  font-size: 14px;
  font-weight: 800;
  color: var(--text-primary);
}

.intro-bio-down {
  justify-self: center;
  margin-top: auto;
  min-height: 56px;
  padding: 0 22px;
}

.intro-down-strong i {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: var(--brand-primary);
  position: relative;
}

.intro-down-strong i::before,
.intro-down-strong i::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 9px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
}

.intro-down-strong i::before {
  transform: translateX(-6px) rotate(45deg);
}

.intro-down-strong i::after {
  transform: translateX(-1px) rotate(-45deg);
}

/* BIOGRAPHY */

.biography-section {
  position: relative;
  padding-top: 48px;
}

.biography-section::before,
.directions-section::before,
.content-section::before,
.cta-section::before,
.faq-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(var(--container-main), calc(100% - 48px));
  transform: translateX(-50%);
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.biography-shell {
  width: 100%;
  margin: 0 auto;
  padding: 34px;
}

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

.biography-head h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 900;
}

.biography-content {
  columns: 2;
  column-gap: 36px;
}

.biography-content p {
  margin: 0 0 18px;
  break-inside: avoid;
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.82;
}

.biography-content p:last-child {
  margin-bottom: 0;
}

/* COMMON SECTIONS */

.directions-section,
.content-section,
.cta-section,
.faq-section {
  position: relative;
}

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

.direction-card {
  display: grid;
  gap: 14px;
  padding: 22px 20px;
  background: var(--surface-page);
}

.direction-card-compact {
  grid-template-columns: 52px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
}

.direction-copy {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.direction-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--surface-soft);
  color: var(--text-primary);
  border: 1px solid var(--line-soft);
}

.direction-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.direction-title {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.16;
  color: var(--text-primary);
}

.direction-card p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.55;
}

.content-copy {
  display: grid;
  gap: 16px;
  margin-bottom: 30px;
}

.watches-copy-strong p {
  font-size: 18px;
}

.casino-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.casino-card {
  padding: 24px;
  display: grid;
  gap: 20px;
  background: var(--surface-page);
}

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

.casino-logo {
  display: grid;
  place-items: center;
  min-height: 70px;
  border-radius: 16px;
  background: var(--surface-muted);
  border: 1px solid var(--line-soft);
}

.casino-logo img{
    max-width: 120px;
    height: 40px;
}

.casino-meta {
  display: grid;
  gap: 8px;
}

.casino-name {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
}

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

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

.star {
  width: 12px;
  height: 12px;
  display: inline-block;
  background: linear-gradient(90deg, #d97706 50%, rgba(15, 23, 42, 0.14) 50%);
  clip-path: polygon(50% 0, 63% 36%, 100% 38%, 72% 60%, 82% 100%, 50% 77%, 18% 100%, 28% 60%, 0 38%, 37% 36%);
}

.star.on {
  background: #d97706;
}

.star.half {
  background: linear-gradient(90deg, #d97706 50%, rgba(15, 23, 42, 0.14) 50%);
}

.rating-num {
  font-size: 14px;
  color: var(--text-primary);
  font-weight: 800;
}

.casino-bonus {
  padding: 18px;
  border-radius: 18px;
  background: var(--surface-muted);
  border: 1px solid var(--line-soft);
  text-align: center;
  min-height: 112px;
  display: grid;
  align-content: center;
}

.bonus-k {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.bonus-v {
  margin-top: 8px;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.08;
  color: var(--text-primary);
}

.casino-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  padding: 14px 16px;
  border-radius: 16px;
  background: var(--surface-muted);
  border: 1px solid var(--line-soft);
  font-weight: 700;
  color: var(--text-primary);
}

.feature-icon {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--surface-soft);
  position: relative;
  border: 1px solid var(--line-soft);
}

.crown-icon::before,
.rocket-icon::before,
.gift-icon::before {
  content: "";
  position: absolute;
  inset: 8px;
  background: currentColor;
  color: var(--text-primary);
}

.crown-icon::before {
  clip-path: polygon(0 65%, 10% 25%, 34% 55%, 50% 20%, 66% 55%, 90% 25%, 100% 65%, 100% 82%, 0 82%);
}

.rocket-icon::before {
  clip-path: polygon(50% 0, 76% 28%, 62% 62%, 62% 100%, 50% 88%, 38% 100%, 38% 62%, 24% 28%);
}

.gift-icon::before {
  clip-path: polygon(0 35%, 100% 35%, 100% 100%, 0 100%, 0 35%, 44% 35%, 44% 0, 56% 0, 56% 35%);
}

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

.media-split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 20px;
}

.video-card,
.media-info-card {
  padding: 24px;
}

.video-embed {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  aspect-ratio: 16 / 9;
  background: #0b1120;
}

.video-poster,
.video-embed iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
  display: block;
}

.video-play {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--text-primary);
  font-weight: 800;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.play-icon {
  width: 18px;
  height: 18px;
  background: var(--text-primary);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.media-info-card h3,
.slot-info h3 {
  margin: 0 0 16px;
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}

.fancy-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.fancy-list li {
  position: relative;
  padding-left: 18px;
  color: var(--text-secondary);
  line-height: 1.65;
}

.fancy-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--text-primary);
}

.slot-list {
  display: grid;
  gap: 18px;
}

.slot-card {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  overflow: hidden;
  background: var(--surface-page);
}

.slot-media {
  min-height: 220px;
  padding: 0;
  cursor: zoom-in;
  background: #e5e7eb;
}

.slot-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slot-info {
  padding: 24px;
  display: grid;
  align-content: center;
}

.spec-table {
  display: grid;
  gap: 0;
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  overflow: hidden;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line-soft);
  background: var(--surface-muted);
}

.spec-row:last-child {
  border-bottom: 0;
}

.spec-row span {
  color: var(--text-muted);
  font-weight: 700;
}

.spec-row strong {
  font-size: 15px;
  text-align: right;
  color: var(--text-primary);
}

.cta-shell {
  padding: 34px;
  background: var(--surface-page);
}

.section-head-center {
  text-align: center;
  justify-items: center;
}

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

.promo-card {
  padding: 26px;
  background: var(--surface-muted);
}

.promo-top {
  width: 100%;
  display: grid;
  gap: 18px;
  align-items: stretch;
}

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

.promo-logo-box,
.promo-code-box,
.promo-center {
  min-height: 148px;
  border-radius: 18px;
  border: 1px solid var(--line-soft);
  background: var(--surface-page);
}

.promo-logo-box {
  display: grid;
  place-items: center;
}

.promo-center {
  display: grid;
  place-content: center;
  padding: 20px;
  text-align: center;
}

.promo-code-box {
  padding: 18px;
  display: grid;
  align-content: center;
  gap: 14px;
}

.promo-code-box-center {
  align-content: center;
}

.promo-label {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.promo-value {
  margin-top: 10px;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 900;
  line-height: 1;
  color: var(--text-primary);
}

.promo-copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 0 16px;
  border-radius: 14px;
  background: var(--surface-muted);
  border: 1px solid var(--line-mid);
  color: var(--text-primary);
  font-size: 20px;
  font-weight: 900;
  cursor: pointer;
}

.copy-icon {
  width: 20px;
  height: 20px;
  display: inline-grid;
  place-items: center;
  color: var(--text-secondary);
}

.copy-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.promo-hint {
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 700;
}

.promo-bottom {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.promo-bottom-full .btn {
  width: 100%;
}

.cta-lucky-btn-full {
  width: 100%;
  min-height: 58px;
}

.faq-shell {
  padding: 32px;
  background: var(--surface-page);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border-radius: 18px;
  background: var(--surface-muted);
  border: 1px solid var(--line-soft);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 22px;
  font-size: 19px;
  line-height: 1.35;
  font-weight: 800;
  position: relative;
  color: var(--text-primary);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: var(--text-muted);
}

.faq-item[open] summary::after {
  content: "–";
}

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

.site-footer {
  padding: 38px 0 28px;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  background: transparent;
}

.footer-modern {
  padding: 28px;
  border-radius: 26px;
  background: var(--surface-page);
  box-shadow: var(--shadow-sm);
}

.footer-modern-top {
  display: grid;
  grid-template-columns: minmax(280px, 1.05fr) minmax(0, 1.4fr);
  gap: 26px;
  align-items: start;
}

.footer-modern-brand {
  display: grid;
  gap: 14px;
  padding-right: 12px;
}

.footer-logo {
  display: inline-flex;
}

.footer-modern-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.footer-block {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 20px;
  border-radius: 18px;
  background: var(--surface-muted);
}

.footer-title {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.footer-modern-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  margin-top: 18px;
  color: var(--text-muted);
  font-size: 13px;
  border-top: 1px solid var(--line-soft);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
}

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

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.8);
}

.lightbox-panel {
  position: relative;
  z-index: 1;
  width: min(92vw, 980px);
  max-height: 88dvh;
  margin: 4dvh auto 0;
  padding: 16px;
  border-radius: 22px;
  background: var(--surface-page);
  box-shadow: var(--shadow-lg);
}

.lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.06);
  color: var(--text-primary);
  font-size: 20px;
  cursor: pointer;
}

.lightbox-img {
  width: 100%;
  max-height: calc(88dvh - 32px);
  object-fit: contain;
  border-radius: 14px;
}

.copy-toast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  z-index: 1300;
  transform: translateX(-50%) translateY(20px);
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.copy-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1150;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--brand-primary);
  color: #fff;
  box-shadow: var(--shadow-md);
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
}

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

.to-top span {
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}

@media (max-width: 1180px) {
  .header-row {
    grid-template-columns: 240px 1fr auto;
    gap: 18px;
  }

  .site-logo,
  .site-logo img {
    width: 240px;
  }

  .desktop-nav {
    gap: 18px;
  }
}

@media (max-width: 960px) {
  .page-main {
    padding-top: var(--header-height-mobile);
  }

  .site-header .header-row {
    grid-template-columns: 1fr auto;
    gap: 14px;
    min-height: 84px;
  }

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

  .burger {
    display: inline-flex;
  }

  .site-logo,
  .site-logo img {
    width: 220px;
  }

  .header-actions {
    gap: 10px;
  }

  .mobile-cta-row {
    display: flex;
    justify-content: center;
    padding: 0 0 16px;
  }

  .mobile-lucky-btn {
    width: 80%;
    min-height: 52px;
  }

  .intro-section {
    min-height: auto;
    padding: 20px 0 28px;
  }

  .intro-shell {
    min-height: auto;
    width: min(var(--container-main), calc(100% - 48px));
    gap: 18px;
  }

  .intro-top,
  .media-split,
  .section-head-inline,
  .footer-modern-top,
  .footer-modern-nav,
  .promo-top-equal {
    grid-template-columns: 1fr;
  }

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

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

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

  .slot-card {
    grid-template-columns: 1fr;
  }

  .slot-media {
    min-height: 240px;
  }

  .biography-shell {
    width: 100%;
    padding: 24px;
  }

  .biography-content {
    columns: 1;
    column-gap: 0;
  }

  .intro-bio-down {
    display: none;
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 156px;
  }

  .container {
    width: min(100%, calc(100% - 32px));
  }

  .section-spacing {
    padding: 33px 0;
  }

  .intro-facts,
  .intro-timeline-block,
  .biography-shell,
  .video-card,
  .media-info-card,
  .cta-shell,
  .promo-card,
  .faq-shell,
  .footer-modern {
    padding: 20px;
  }

  .timeline-grid,
  .intro-timeline-grid,
  .direction-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

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

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

  .promo-logo-box,
  .promo-center,
  .promo-code-box {
    min-height: auto;
  }

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

  .section-head h2 {
    font-size: 34px;
  }

  .intro-facts h1 {
    font-size: 38px;
  }

  .intro-lead {
    font-size: 17px;
    line-height: 1.7;
  }

  .biography-head h2 {
    font-size: 32px;
  }

  .biography-content p {
    font-size: 16px;
    line-height: 1.78;
  }
}

@media (max-width: 460px) {
  .timeline-grid,
  .intro-timeline-grid,
  .direction-grid {
    grid-template-columns: 1fr;
  }

  .site-logo,
  .site-logo img {
    width: 180px;
    margin-left: 0;
  }

  .lang-option {
    min-width: 42px;
    padding: 0 12px;
  }

  .mobile-lucky-btn {
    width: 100%;
  }

  .intro-facts,
  .intro-timeline-block,
  .biography-shell,
  .video-card,
  .media-info-card,
  .cta-shell,
  .promo-card,
  .faq-shell,
  .footer-modern {
    padding: 18px;
  }

  .section-head h2,
  .intro-facts h1,
  .faq-shell h2,
  .cta-shell h2 {
    font-size: 30px;
  }
}

/* INTRO */

.intro-section {
  display: flex;
  align-items: stretch;
  min-height: calc(100dvh - var(--header-height));
  padding: 24px 0;
}

.intro-shell {
  width: min(var(--container-main), calc(100% - 48px));
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 18px;
  min-height: calc(100dvh - var(--header-height) - 48px);
}

.intro-top {
  display: grid;
  grid-template-columns: minmax(320px, 360px) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
  min-height: 0;
}

.intro-photo,
.intro-facts {
  min-height: 0;
  height: 100%;
}

.intro-photo {
  position: relative;
  overflow: hidden;
  padding: 0;
  cursor: zoom-in;
  background: #e5e7eb;
  border-radius: 24px;
}

.intro-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-facts {
  position: relative;
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 28px;
  overflow: hidden;
  border-radius: 24px;
}

.intro-facts::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, #0f172a 0%, #334155 100%);
}

.intro-facts h1 {
  margin: 0;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 0.96;
  letter-spacing: -0.05em;
  font-weight: 900;
}

.intro-lead {
  margin: 0;
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1.72;
}

.intro-timeline-block {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 24px 24px 26px;
  border-radius: 24px;
}

.intro-timeline-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.intro-bio-down {
  justify-self: center;
  align-self: end;
  min-height: 56px;
  padding: 0 22px;
  margin-top: 0;
}

.intro-down {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid var(--line-mid);
  border-radius: 14px;
  background: var(--surface-page);
  box-shadow: var(--shadow-xs);
  font-size: 14px;
  font-weight: 800;
  color: var(--text-primary);
}

.intro-down-strong i {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: var(--brand-primary);
  position: relative;
}

.intro-down-strong i::before,
.intro-down-strong i::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 9px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
}

.intro-down-strong i::before {
  transform: translateX(-6px) rotate(45deg);
}

.intro-down-strong i::after {
  transform: translateX(-1px) rotate(-45deg);
}

@media (max-height: 860px) {
  .intro-section {
    min-height: calc(100dvh - var(--header-height));
    padding: 18px 0;
  }

  .intro-shell {
    min-height: calc(100dvh - var(--header-height) - 36px);
    gap: 14px;
  }

  .intro-top {
    gap: 16px;
  }

  .intro-facts {
    padding: 22px;
    gap: 14px;
  }

  .intro-timeline-block {
    padding: 20px;
    gap: 14px;
  }

  .timeline-item,
  .intro-timeline-block .timeline-item {
    padding: 10px;
  }

  .intro-lead {
    font-size: 16px;
    line-height: 1.6;
  }

  .fact-row {
    padding: 10px 14px;
  }
}

@media (max-width: 960px) {
  .intro-section {
    min-height: auto;
    padding: 20px 0 28px;
  }

  .intro-shell {
    min-height: auto;
    grid-template-rows: auto;
    gap: 18px;
  }

  .intro-top {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .intro-photo,
  .intro-facts {
    height: auto;
  }

  .intro-photo {
    min-height: 340px;
  }

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

  .intro-bio-down {
    display: none;
  }
}

@media (max-width: 640px) {
  .intro-section {
    padding: 18px 0 24px;
  }

  .intro-photo {
    min-height: 280px;
  }

  .intro-facts,
  .intro-timeline-block {
    padding: 20px;
  }
}

@media (max-width: 460px) {
  .intro-timeline-grid {
    grid-template-columns: 1fr;
  }

  .intro-photo {
    min-height: 240px;
  }

  .intro-facts,
  .intro-timeline-block {
    padding: 18px;
  }
}

.biography-nav-section {
  position: relative;
  padding-top: 48px;
}

.biography-nav-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(var(--container-main), calc(100% - 48px));
  transform: translateX(-50%);
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.biography-nav-shell {
  display: grid;
  gap: 28px;
}

.biography-nav-top,
.biography-unified, .wrapper-unified {
  border: 1px solid var(--line-soft);
  background: var(--surface-page);
  box-shadow: var(--shadow-sm);
  border-radius: 24px;
}

.biography-nav-top {
  padding: 28px;
}

.biography-nav-head {
  margin-bottom: 22px;
}

.biography-direction-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.biography-unified, .wrapper-unified {
  padding: 34px;
}

.biography-head-unified {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}

.biography-head-unified h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 900;
  color: var(--text-primary);
}

.biography-head-unified > p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.78;
}

.biography-flow {
  display: grid;
  gap: 18px;
}

.bio-block {
  padding: 24px 24px 26px;
  border: 1px solid var(--line-soft);
  border-radius: 20px;
  background: var(--surface-muted);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.bio-block:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  border-color: var(--line-mid);
}

.bio-block h3 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.16;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}

.bio-block p {
  margin: 0 0 14px;
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.82;
}

.bio-block p:last-child {
  margin-bottom: 0;
}

@media (max-width: 960px) {
  .biography-direction-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .biography-nav-top,
  .biography-unified, .wrapper-unified {
    padding: 24px;
  }

  .bio-block {
    padding: 20px;
  }

  .bio-block h3 {
    font-size: 22px;
  }
}

@media (max-width: 640px) {
  .biography-nav-section {
    padding-top: 36px;
  }

  .biography-nav-top,
  .biography-unified, .wrapper-unified {
    padding: 20px;
    border-radius: 20px;
  }

  .biography-head-unified {
    margin-bottom: 22px;
  }

  .biography-head-unified h2 {
    font-size: 32px;
  }

  .biography-head-unified > p,
  .bio-block p {
    font-size: 16px;
    line-height: 1.76;
  }

  .bio-block h3 {
    font-size: 20px;
  }
}

@media (max-width: 460px) {
  .biography-direction-grid {
    grid-template-columns: 1fr;
  }

  .biography-nav-top,
  .biography-unified, .wrapper-unified {
    padding: 18px;
  }

  .bio-block {
    padding: 18px;
    border-radius: 18px;
  }

  .biography-head-unified h2 {
    font-size: 30px;
  }

  .bio-block h3 {
    font-size: 18px;
    line-height: 1.22;
  }
}

.section-bottom-link {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.section-bottom-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid var(--line-mid);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  box-shadow: var(--shadow-xs);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease;
}

.section-bottom-btn:hover {
  transform: translateY(-1px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-sm);
  background: var(--surface-page);
}

.section-bottom-btn i {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--surface-soft);
  border: 1px solid var(--line-soft);
  position: relative;
  flex: 0 0 auto;
}

.section-bottom-btn i::before,
.section-bottom-btn i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 999px;
  background: var(--text-primary);
}

.section-bottom-btn i::before {
  width: 10px;
  height: 2px;
  transform: translate(-55%, -50%);
}

.section-bottom-btn i::after {
  width: 6px;
  height: 6px;
  border-top: 2px solid var(--text-primary);
  border-right: 2px solid var(--text-primary);
  background: transparent;
  border-radius: 0;
  transform: translate(-10%, -50%) rotate(45deg);
}

@media (max-width: 640px) {
  .section-bottom-link {
    margin-top: 24px;
  }

  .section-bottom-btn {
    width: 100%;
    justify-content: center;
    padding: 0 18px;
  }
}

.site-footer {
  padding: 38px 0 28px;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  background: transparent;
}

.footer-modern {
  padding: 30px;
  border-radius: 26px;
  background: var(--surface-page);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line-soft);
}

.footer-top {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 26px;
  text-align: center;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.18s ease,
    opacity 0.18s ease;
}

.footer-logo:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.footer-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 100%;
  padding: 22px;
  border-radius: 20px;
  background: var(--surface-muted);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-xs);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease;
}

.footer-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  border-color: var(--line-mid);
  background: var(--surface-page);
}

.footer-title {
  margin: 0;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.footer-card p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.72;
}

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

.footer-links a {
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
  transition:
    color 0.18s ease,
    transform 0.18s ease;
}

.footer-links a:hover {
  color: var(--text-primary);
  transform: translateX(3px);
}

.footer-divider {
  height: 1px;
  margin: 22px 0 18px;
  background: var(--line-soft);
}

.footer-bottom {
  display: grid;
  gap: 10px;
}

.footer-disclaimer {
  margin: 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.65;
}

.footer-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

@media (max-width: 960px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-card {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .site-footer {
    padding: 30px 0 24px;
  }

  .footer-modern {
    padding: 20px;
    border-radius: 20px;
  }

  .footer-top {
    margin-bottom: 20px;
  }

  .footer-grid {
    gap: 14px;
  }

  .footer-card {
    padding: 18px;
    border-radius: 18px;
  }

  .footer-card p {
    font-size: 15px;
    line-height: 1.68;
  }

  .footer-links a {
    font-size: 15px;
  }

  .footer-divider {
    margin: 18px 0 16px;
  }

  .footer-meta {
    flex-direction: column;
    gap: 6px;
  }
}

/* Internal section pages for zubarefff.top */
:root{
  --page-hero-overlay: linear-gradient(135deg, rgba(20,33,61,.96) 0%, rgba(37,99,235,.92) 100%);
  --page-shell: #ffffff;
  --page-shell-soft: #f5f9ff;
  --page-shell-strong: #e8f0ff;
  --page-accent: #2563eb;
  --page-accent-soft: rgba(37,99,235,.1);
  --page-dark: #0f172a;
  --page-text: #1e293b;
  --page-muted: #64748b;
  --page-border: #d7e2f2;
  --page-shadow: 0 24px 70px rgba(20,33,61,.12);
}

.page-main--inner{
  padding-top: var(--header-height);
}

.inner-hero{
  position: relative;
  overflow: hidden;
  padding: 34px 0 28px;
}

.inner-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,.16), transparent 34%),
    radial-gradient(circle at bottom left, rgba(255,255,255,.09), transparent 24%),
    var(--page-hero-overlay);
}

.inner-hero .container{
  position:relative;
  z-index:1;
}

.hero-shell{
  display:grid;
  grid-template-columns: minmax(0,1.15fr) minmax(340px,.85fr);
  gap:24px;
  align-items:stretch;
}

.hero-copy,
.hero-aside{
  border-radius:28px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--page-shadow);
}

.hero-copy{
  padding:34px;
  color:#fff;
  display:grid;
  align-content:start;
  gap:18px;
}

.hero-kicker{
  display:inline-flex;
  align-items:center;
  width:max-content;
  min-height:36px;
  padding:0 14px;
  border-radius:999px;
  background: rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.86);
  font-size:12px;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.breadcrumbs{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  color: rgba(255,255,255,.78);
  font-size:13px;
  font-weight:700;
}

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

.hero-copy h1{
  margin:0;
  font-size: clamp(38px, 5vw, 66px);
  line-height: .95;
  letter-spacing: -.05em;
  color:#fff;
  font-weight:900;
}

.hero-lead{
  margin:0;
  font-size:18px;
  line-height:1.8;
  color: rgba(255,255,255,.9);
  max-width: 92%;
}

.hero-stats{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:14px;
}

.hero-stat{
  padding:16px 16px 18px;
  border-radius:18px;
  background: rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.13);
}

.hero-stat-label{
  color: rgba(255,255,255,.72);
  font-size:11px;
  font-weight:800;
  letter-spacing:.1em;
  text-transform:uppercase;
}

.hero-stat-value{
  margin-top:8px;
  color:#fff;
  font-size:24px;
  line-height:1.1;
  font-weight:900;
}

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

.btn-light{
  background:#fff;
  color:var(--page-dark);
  box-shadow: 0 14px 30px rgba(15,23,42,.18);
}

.btn-ghost-light{
  border:1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.06);
  color:#fff;
}

.hero-aside{
  padding:22px;
  display:grid;
  gap:16px;
  align-content:start;
  color:#fff;
}

.hero-card{
  padding:20px;
  border-radius:22px;
  background: rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
}

.hero-card h2,
.hero-card h3{
  margin:0 0 10px;
  font-size:22px;
  line-height:1.1;
  font-weight:900;
  color:#fff;
}

.hero-card p{
  margin:0;
  color: rgba(255,255,255,.82);
  font-size:15px;
  line-height:1.72;
}

.hero-list{
  display:grid;
  gap:12px;
  margin:0;
  padding:0;
  list-style:none;
}

.hero-list li{
  position:relative;
  padding-left:18px;
  color: rgba(255,255,255,.84);
  line-height:1.6;
}

.hero-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:.72em;
  width:7px;
  height:7px;
  border-radius:999px;
  background:#fff;
}

.inner-nav{
  position: relative;
  padding: 0 0 18px;
  margin-top: -10px;
}

.inner-nav-grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap:14px;
}

.inner-nav-card{
  padding:18px 18px 20px;
  border-radius:20px;
  background: var(--surface-page);
  border:1px solid var(--page-border);
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.inner-nav-card:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-strong);
}

.inner-nav-card span{
  display:block;
}

.inner-nav-eyebrow{
  color: var(--text-muted);
  font-size:11px;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.inner-nav-title{
  margin-top:9px;
  color: var(--text-primary);
  font-size:18px;
  line-height:1.2;
  font-weight:900;
}

.inner-nav-note{
  margin-top:7px;
  color: var(--text-secondary);
  font-size:14px;
  line-height:1.55;
}

.page-section{
  position:relative;
  padding: 26px 0;
}

.page-section::before{
  content:"";
  position:absolute;
  top:0;
  left:50%;
  width:min(var(--container-main), calc(100% - 48px));
  transform:translateX(-50%);
  border-top:1px solid rgba(15,23,42,.06);
}

.section-shell{
  padding:32px;
  border-radius:26px;
  border:1px solid var(--page-border);
  background: var(--page-shell);
  box-shadow: var(--shadow-sm);
}

.section-shell--soft{
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.section-shell--accent{
  background: linear-gradient(180deg, #f2f7ff 0%, #ffffff 100%);
}

.section-intro{
  display:grid;
  gap:14px;
  margin-bottom:26px;
}

.section-intro h2{
  margin:0;
  font-size: clamp(32px, 4vw, 52px);
  line-height:1.03;
  letter-spacing:-.045em;
  font-weight:900;
  color:var(--text-primary);
}

.section-intro p{
  margin:0;
  color:var(--text-secondary);
  font-size:17px;
  line-height:1.78;
}

.prose{
  display:grid;
  gap:16px;
}

.prose p{
  margin:0;
  color:var(--page-text);
  font-size:17px;
  line-height:1.86;
}

.two-col{
  display:grid;
  grid-template-columns: minmax(0,1.1fr) minmax(300px,.9fr);
  gap:22px;
  align-items:start;
}

.side-stack{
  display:grid;
  gap:16px;
}

.note-card,
.fact-card,
.quote-card,
.metric-card,
.cta-card,
.media-card,
.embed-card,
.casino-card-pro,
.slot-deep-card,
.watch-card,
.short-card{
  border-radius:22px;
  border:1px solid var(--page-border);
  background: var(--surface-page);
  box-shadow: var(--shadow-xs);
}

.note-card,
.fact-card,
.quote-card,
.metric-card,
.cta-card{
  padding:22px;
}

.note-card h3,
.fact-card h3,
.quote-card h3,
.metric-card h3,
.cta-card h3,
.embed-card h3,
.slot-deep-card h3,
.watch-card h3,
.short-card h3{
  margin:0 0 12px;
  font-size:24px;
  line-height:1.15;
  letter-spacing:-.03em;
  font-weight:900;
  color:var(--text-primary);
}

.note-card p,
.fact-card p,
.quote-card p,
.metric-card p,
.cta-card p,
.embed-card p,
.slot-deep-card p,
.watch-card p,
.short-card p{
  margin:0;
  color:var(--text-secondary);
  font-size:16px;
  line-height:1.74;
}

.bullets{
  margin:0;
  padding:0;
  list-style:none;
  display:grid;
  gap:12px;
}

.bullets li{
  position:relative;
  padding-left:18px;
  color: var(--page-text);
  font-size:16px;
  line-height:1.68;
}

.bullets li::before{
  content:"";
  position:absolute;
  left:0;
  top:.72em;
  width:7px;
  height:7px;
  border-radius:999px;
  background:var(--page-accent);
}

.timeline-list{
  display:grid;
  gap:14px;
}

.timeline-row{
  display:grid;
  grid-template-columns: 110px minmax(0,1fr);
  gap:16px;
  padding:18px;
  border-radius:20px;
  border:1px solid var(--page-border);
  background: var(--surface-muted);
}

.timeline-year{
  display:inline-flex;
  align-items:flex-start;
  justify-content:flex-start;
  color: var(--page-accent);
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-weight:900;
}

.timeline-copy h3{
  margin:0 0 8px;
  font-size:20px;
  line-height:1.2;
  font-weight:900;
  color:var(--text-primary);
}

.timeline-copy p{
  margin:0;
  color:var(--text-secondary);
  font-size:16px;
  line-height:1.7;
}

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

.metric-card .metric-value{
  font-size:32px;
  line-height:1;
  font-weight:900;
  color: var(--text-primary);
}

.metric-card .metric-label{
  margin-top:8px;
  color: var(--text-muted);
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.1em;
}

.casino-grid-pro{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:18px;
}

.casino-card-pro{
  padding:24px;
  display:grid;
  gap:18px;
}

.casino-card-pro .casino-top{
  display:grid;
  grid-template-columns: 132px minmax(0,1fr);
  gap:14px;
  align-items:center;
}

.casino-badgeline{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.micro-badge{
  display:inline-flex;
  min-height:30px;
  align-items:center;
  padding:0 10px;
  border-radius:999px;
  background: var(--page-accent-soft);
  color: var(--page-accent);
  font-size:11px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.casino-copy{
  display:grid;
  gap:10px;
}

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

.casino-feature-list{
  display:grid;
  gap:10px;
}

.casino-feature-item{
  padding:14px 16px;
  border-radius:16px;
  background: var(--surface-muted);
  border:1px solid var(--page-border);
  color:var(--page-text);
  font-size:14px;
  line-height:1.55;
  font-weight:700;
}

.quote-card{
  background: linear-gradient(180deg, #0f172a 0%, #1e3a8a 100%);
  border-color: rgba(255,255,255,.08);
}

.quote-card p,
.quote-card cite{
  color: rgba(255,255,255,.88);
}

.quote-card cite{
  display:block;
  margin-top:14px;
  font-style:normal;
  font-size:13px;
  font-weight:800;
  letter-spacing:.1em;
  text-transform:uppercase;
}

.media-split-pro{
  display:grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
  gap:20px;
}

.embed-card{
  padding:0;
  overflow:hidden;
}

.media-launch{
  position:relative;
  aspect-ratio:16/9;
  overflow:hidden;
  background: linear-gradient(135deg, #111827 0%, #1d4ed8 100%);
}

.media-launch::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(15,23,42,.02) 0%, rgba(15,23,42,.55) 100%);
  z-index:1;
}

.media-launch.has-image{
  background-size:cover;
  background-position:center;
}

.media-launch-fallback{
  position:absolute;
  inset:0;
  display:grid;
  align-content:end;
  padding:22px;
  z-index:2;
}

.media-tag{
  display:inline-flex;
  width:max-content;
  min-height:30px;
  align-items:center;
  padding:0 10px;
  border-radius:999px;
  background: rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.16);
  color:#fff;
  font-size:11px;
  font-weight:800;
  letter-spacing:.1em;
  text-transform:uppercase;
}

.media-title{
  margin-top:12px;
  color:#fff;
  font-size:28px;
  line-height:1.08;
  font-weight:900;
  letter-spacing:-.04em;
  max-width: 90%;
}

.media-meta{
  margin-top:10px;
  color: rgba(255,255,255,.84);
  font-size:14px;
  line-height:1.6;
  max-width: 85%;
}

.media-play{
  position:absolute;
  left:24px;
  top:24px;
  z-index:3;
  display:inline-flex;
  align-items:center;
  gap:10px;
  min-height:52px;
  padding:0 18px;
  border-radius:999px;
  background:#fff;
  color:var(--page-dark);
  font-size:14px;
  font-weight:900;
  box-shadow: 0 16px 30px rgba(15,23,42,.24);
  cursor:pointer;
}

.media-play-icon{
  width:18px;
  height:18px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background: currentColor;
}

.embed-copy{
  padding:24px;
  display:grid;
  gap:12px;
}

.embed-copy .bullets li{
  font-size:15px;
}

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

.feature-card{
  padding:20px;
  border-radius:20px;
  border:1px solid var(--page-border);
  background: var(--surface-muted);
}

.feature-card h3{
  margin:0 0 10px;
  font-size:20px;
  line-height:1.18;
  font-weight:900;
  color:var(--text-primary);
}

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

.slot-deep-grid{
  display:grid;
  gap:18px;
}

.slot-deep-card{
  padding:24px;
  display:grid;
  grid-template-columns: 260px minmax(0,1fr);
  gap:20px;
  align-items:start;
}

.slot-poster{
  position:relative;
  overflow:hidden;
  border-radius:20px;
  border:1px solid var(--page-border);
  background: var(--surface-muted);
  aspect-ratio: 370 / 580;
}

.slot-poster img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.slot-body{
  display:grid;
  gap:16px;
}

.spec-grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap:12px;
}

.spec-box{
  padding:14px 14px 16px;
  border-radius:16px;
  border:1px solid var(--page-border);
  background: var(--surface-muted);
}

.spec-box span{
  display:block;
}

.spec-label{
  color: var(--text-muted);
  font-size:11px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.spec-value{
  margin-top:8px;
  color: var(--text-primary);
  font-size:20px;
  line-height:1.2;
  font-weight:900;
}

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

.demo-bar{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.watch-grid{
  display:grid;
  gap:18px;
}

.watch-card,
.short-card{
  padding:20px;
}

.watch-row,
.short-row{
  display:grid;
  grid-template-columns: minmax(320px, .95fr) minmax(0,1.05fr);
  gap:18px;
  align-items:stretch;
}

.vk-poster{
  position:relative;
  min-height:230px;
  border-radius:20px;
  overflow:hidden;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,.18), transparent 26%),
    linear-gradient(135deg, #1e293b 0%, #2563eb 100%);
  padding:22px;
  display:grid;
  align-content:end;
  color:#fff;
}

.vk-poster::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(15,23,42,.02) 0%, rgba(15,23,42,.52) 100%);
}

.vk-poster-inner{
  position:relative;
  z-index:1;
}

.vk-poster .media-title{
  margin-top:10px;
  font-size:30px;
  max-width: 95%;
}

.vk-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:16px;
}

.short-strip{
  display:grid;
  grid-template-columns: repeat(5, minmax(0,1fr));
  gap:14px;
}

.short-thumb{
  position:relative;
  aspect-ratio:9/16;
  border-radius:18px;
  overflow:hidden;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,.18), transparent 24%),
    linear-gradient(135deg, #0f172a 0%, #1d4ed8 100%);
  padding:16px;
  display:grid;
  align-content:end;
  color:#fff;
}

.short-thumb::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(15,23,42,.03) 0%, rgba(15,23,42,.56) 100%);
}

.short-thumb > *{
  position:relative;
  z-index:1;
}

.short-title{
  margin-top:10px;
  font-size:20px;
  line-height:1.08;
  font-weight:900;
  letter-spacing:-.03em;
}

.short-copy{
  margin-top:8px;
  font-size:13px;
  line-height:1.58;
  color: rgba(255,255,255,.82);
}

.faq-grid{
  display:grid;
  gap:12px;
}

details.page-faq{
  border-radius:18px;
  background: var(--surface-muted);
  border:1px solid var(--page-border);
  overflow:hidden;
}

.page-faq summary{
  list-style:none;
  cursor:pointer;
  padding:20px 22px;
  font-size:18px;
  line-height:1.34;
  font-weight:800;
  position:relative;
  color:var(--text-primary);
}

.page-faq summary::-webkit-details-marker{ display:none; }

.page-faq summary::after{
  content:"+";
  position:absolute;
  right:22px;
  top:50%;
  transform:translateY(-50%);
  font-size:24px;
  color:var(--text-muted);
}

.page-faq[open] summary::after{ content:"–"; }

.page-faq-content{
  padding:0 22px 20px;
  color:var(--text-secondary);
  font-size:16px;
  line-height:1.72;
}

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

.interlink-card{
  display:grid;
  gap:12px;
  padding:22px;
  border-radius:20px;
  border:1px solid var(--page-border);
  background: var(--surface-page);
  box-shadow: var(--shadow-xs);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.interlink-card:hover{
  transform:translateY(-2px);
  box-shadow: var(--shadow-sm);
  border-color: var(--line-strong);
}

.interlink-card h3{
  margin:0;
  font-size:22px;
  line-height:1.14;
  font-weight:900;
  color:var(--text-primary);
}

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

.modal-shell{
  position:fixed;
  inset:0;
  z-index:1500;
  display:none;
}

.modal-shell.is-open{ display:block; }

.modal-backdrop{
  position:absolute;
  inset:0;
  background: rgba(2,6,23,.82);
}

.modal-panel{
  position:relative;
  z-index:1;
  width:min(1100px, calc(100% - 28px));
  max-height:92dvh;
  margin:4dvh auto 0;
  border-radius:24px;
  overflow:hidden;
  background:#fff;
  box-shadow: 0 30px 80px rgba(2,6,23,.38);
}

.modal-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:16px 18px;
  border-bottom:1px solid var(--page-border);
  background:#fff;
}

.modal-title{
  color:var(--text-primary);
  font-size:16px;
  line-height:1.4;
  font-weight:800;
}

.modal-close{
  width:42px;
  height:42px;
  border-radius:12px;
  background: rgba(15,23,42,.06);
  font-size:20px;
  cursor:pointer;
}

.modal-body{
  background:#000;
  aspect-ratio:16/9;
}

.modal-body iframe{
  width:100%;
  height:100%;
  border:0;
  display:block;
  background:#000;
}

.modal-helper{
  padding:18px;
  color:var(--text-secondary);
  font-size:15px;
  line-height:1.7;
  background:#fff;
  border-top:1px solid var(--page-border);
}

@media (max-width: 1180px){
  .inner-nav-grid,
  .interlink-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .casino-grid-pro{ grid-template-columns: 1fr; }
  .feature-grid{ grid-template-columns: 1fr 1fr; }
  .metric-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .short-strip{ grid-template-columns: repeat(3, minmax(0,1fr)); }
}

@media (max-width: 960px){
  .page-main--inner{ padding-top: var(--header-height-mobile); }
  .hero-shell,
  .two-col,
  .media-split-pro,
  .watch-row,
  .short-row,
  .slot-deep-card{ grid-template-columns: 1fr; }
  .hero-copy,
  .hero-aside,
  .section-shell{ padding:24px; }
  .slot-poster{ max-width: 360px; }
  .hero-stats,
  .feature-grid,
  .spec-grid,
  .slot-columns{ grid-template-columns: 1fr 1fr; }
  .short-strip{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 640px){
  .inner-hero{ padding:20px 0 22px; }
  .hero-copy,
  .hero-aside,
  .section-shell,
  .watch-card,
  .short-card{ padding:20px; border-radius:22px; }
  .hero-copy h1{ font-size:38px; }
  .hero-lead{ max-width:none; font-size:17px; }
  .hero-stats,
  .inner-nav-grid,
  .feature-grid,
  .spec-grid,
  .slot-columns,
  .interlink-grid,
  .metric-grid,
  .short-strip{ grid-template-columns: 1fr; }
  .timeline-row{ grid-template-columns: 1fr; }
  .section-intro h2{ font-size:32px; }
  .media-title{ font-size:26px; }
  .vk-poster .media-title{ font-size:26px; }
  .media-play{ left:18px; top:18px; }
}

@media (max-width: 460px){
  .hero-copy,
  .hero-aside,
  .section-shell{ padding:18px; }
  .hero-copy h1{ font-size:32px; }
  .section-intro h2{ font-size:30px; }
}

/* =====================================================
   WARM PALETTE OVERRIDE
   ===================================================== */
:root{
  --bg-page:#fef9f2;
  --bg-page-alt:#faf4ea;
  --surface-page:#ffffff;
  --surface-muted:#fef9f2;
  --surface-soft:#fdf4e7;
  --surface-strong:#f5e8ce;
  --line-soft:#ecdecb;
  --line-mid:#d9c8ae;
  --line-strong:#bba085;
  --text-primary:#1c0f06;
  --text-secondary:#4a3626;
  --text-muted:#8a7060;
  --text-inverse:#ffffff;
  --brand-primary:#1c0f06;
  --brand-secondary:#2d1c0e;
  --brand-accent:#c25810;
  --brand-accent-hover:#a04408;
  --brand-accent-soft:#fde8d0;
  --shadow-xs:0 1px 2px rgba(100,60,20,.06);
  --shadow-sm:0 10px 30px rgba(100,60,20,.10);
  --shadow-md:0 20px 50px rgba(60,30,10,.14);
  --shadow-lg:0 30px 80px rgba(60,30,10,.18);
  --page-hero-overlay:linear-gradient(135deg,rgba(28,15,6,.96) 0%,rgba(150,70,20,.88) 100%);
  --page-accent:#c25810;
  --page-accent-soft:rgba(194,88,16,.12);
  --page-border:#ecdecb;
  --page-text:#4a3626;
}

body{
  background:linear-gradient(180deg,#fefaf3 0%,#fdf4e6 42%,#f8eeda 100%);
}

.site-header{
  background:rgba(255,252,247,.88);
  border-bottom:1px solid rgba(150,100,50,.12);
}

.mobile-menu{
  background:rgba(255,252,247,.98);
}

.intro-facts::before{
  background:linear-gradient(180deg,#1c0f06 0%,#4a3626 100%);
}

.star.on{ background:#c25810; }
.star.half{ background:linear-gradient(90deg,#c25810 50%,rgba(60,30,10,.14) 50%); }
.star{ background:linear-gradient(90deg,#c25810 50%,rgba(60,30,10,.14) 50%); }

.quote-card{
  background:linear-gradient(180deg,#1c0f06 0%,#4a2010 100%);
}

.media-launch{
  background:linear-gradient(135deg,#1c0f06 0%,#8b4513 100%);
}

/* =====================================================
   PAGE INTRO — subpage intro section
   ===================================================== */
.page-intro{ padding:30px 0 10px; }

.page-intro-grid{
  display:grid;
  grid-template-columns:360px minmax(0,1fr);
  gap:22px;
  align-items:start;
}

.page-intro-img{
  position:relative;
  aspect-ratio:1/1;
  border:1px solid var(--line-soft);
  background:var(--surface-muted);
  box-shadow:var(--shadow-sm);
  border-radius:24px;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
}
.page-intro-img.new-ratio{
    aspect-ratio:1/1.5;

}

.page-intro-img img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.intro-img-placeholder{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:14px;
  padding:24px;
  text-align:center;
  width:100%;
  height:100%;
}

.intro-img-placeholder-icon{
  width:80px;
  height:80px;
  border-radius:22px;
  background:var(--surface-strong);
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}

.intro-img-placeholder-icon svg{
  width:40px;
  height:40px;
  fill:none;
  stroke:var(--text-muted);
  stroke-width:1.4;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.intro-img-note{
  color:var(--text-muted);
  font-size:13px;
  font-weight:700;
  line-height:1.5;
}

/* =====================================================
   SHORTS ROW
   ===================================================== */
.shorts-row{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
}

.short-media-card{
  border-radius:20px;
  overflow:hidden;
  border:1px solid var(--page-border);
  background:var(--surface-page);
  box-shadow:var(--shadow-xs);
  display:flex;
  flex-direction:column;
}

.short-title-bar{
  padding:12px 14px;
  font-size:13px;
  font-weight:800;
  color:var(--text-muted);
  text-align:center;
}

.short-launch{
  aspect-ratio:9/16 !important;
}

/* =====================================================
   DEMO LAUNCHER
   ===================================================== */
.demo-launcher-card{
  border:1px solid var(--page-border);
  border-radius:24px;
  overflow:hidden;
  background:var(--surface-muted);
}

.demo-launcher-preview{
  position:relative;
  aspect-ratio:16/9;
  overflow:hidden;
  background:linear-gradient(135deg,#1c0f06 0%,#8b4513 100%);
  display:flex;
  align-items:center;
  justify-content:center;
}

.demo-launcher-preview img{
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:.45;
}

.demo-launcher-overlay{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:18px;
  padding:32px;
  text-align:center;
}

.demo-launcher-overlay .section-chip{
  border-color:rgba(255,255,255,.28);
  background:rgba(255,255,255,.1);
  color:rgba(255,255,255,.86);
}

.demo-launcher-overlay h3{
  margin:0;
  font-size:clamp(26px,3.5vw,44px);
  line-height:1.04;
  font-weight:900;
  letter-spacing:-.04em;
  color:#fff;
}

.demo-launcher-overlay p{
  margin:0;
  color:rgba(255,255,255,.8);
  font-size:16px;
  line-height:1.6;
}

.demo-btn-row{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  justify-content:center;
}

/* =====================================================
   INTERLINK BUTTONS
   ===================================================== */
.page-interlinks{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:24px;
}

.interlink-btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:46px;
  padding:0 18px;
  border-radius:14px;
  background:var(--surface-page);
  border:1px solid var(--line-mid);
  color:var(--text-primary);
  font-size:14px;
  font-weight:800;
  box-shadow:var(--shadow-xs);
  transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease;
}

.interlink-btn:hover{
  transform:translateY(-1px);
  box-shadow:var(--shadow-sm);
  border-color:var(--line-strong);
}

/* =====================================================
   SLOT NAV ANCHORS
   ===================================================== */
.slot-nav-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
}

.slot-nav-card{
  display:grid;
  gap:10px;
  padding:20px;
  border-radius:20px;
  border:1px solid var(--page-border);
  background:var(--surface-page);
  box-shadow:var(--shadow-xs);
  transition:transform .18s ease,box-shadow .18s ease;
}

.slot-nav-card:hover{
  transform:translateY(-2px);
  box-shadow:var(--shadow-sm);
}

.slot-nav-img{
  width:100%;
  aspect-ratio:1/1;
  object-fit:cover;
  border-radius:14px;
  background:var(--surface-muted);
}

.slot-nav-name{
  font-size:18px;
  font-weight:900;
  color:var(--text-primary);
  line-height:1.2;
}

.slot-nav-meta{
  color:var(--text-muted);
  font-size:13px;
  font-weight:700;
}

/* slot section */
.slot-section-header{
  display:grid;
  gap:6px;
  margin-bottom:22px;
}

.slot-section-header h2{
  margin:0;
  font-size:clamp(28px,3.5vw,44px);
  line-height:1.04;
  font-weight:900;
  letter-spacing:-.04em;
  color:var(--text-primary);
}

.slot-section-header .provider-tag{
  display:inline-flex;
  align-items:center;
  gap:6px;
  color:var(--text-muted);
  font-size:14px;
  font-weight:700;
}

/* =====================================================
   MOVIE SECTION
   ===================================================== */
.movie-detail-grid{
  display:grid;
  grid-template-columns:280px minmax(0,1fr);
  gap:22px;
  align-items:start;
}

.movie-poster-block{
  border-radius:20px;
  overflow:hidden;
  border:1px solid var(--page-border);
  background:var(--surface-muted);
  aspect-ratio:2/3;
  display:flex;
  align-items:center;
  justify-content:center;
}

.movie-poster-block img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.movie-poster-placeholder{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:12px;
  padding:20px;
  text-align:center;
  width:100%;
  height:100%;
}

.movie-poster-placeholder-icon{
  width:72px;
  height:72px;
  border-radius:18px;
  background:var(--surface-strong);
  display:flex;
  align-items:center;
  justify-content:center;
}

.movie-poster-placeholder-icon svg{
  width:36px;
  height:36px;
  fill:none;
  stroke:var(--text-muted);
  stroke-width:1.4;
  stroke-linecap:round;
}

/* =====================================================
   VK VIDEO CARD (styled placeholder)
   ===================================================== */
.vk-card-wrap{
  border-radius:20px;
  overflow:hidden;
  border:1px solid var(--page-border);
  background:var(--surface-page);
  box-shadow:var(--shadow-xs);
  display:flex;
  flex-direction:column;
}

.vk-launch{
  background:linear-gradient(135deg,#0a2145 0%,#07397a 100%);
}

.vk-card-meta{
  padding:12px 16px 14px;
}

.vk-card-title{
  font-size:15px;
  font-weight:800;
  color:var(--text-primary);
  line-height:1.35;
}

.vk-card-sub{
  margin-top:5px;
  color:var(--text-muted);
  font-size:13px;
  font-weight:700;
}

/* =====================================================
   RESPONSIVE — NEW CLASSES
   ===================================================== */
@media (max-width:960px){
  .page-intro-grid{ grid-template-columns:1fr; }
  .page-intro-img{ max-height:380px; aspect-ratio:1/1; }
  .shorts-row{ grid-template-columns:repeat(2,minmax(0,1fr)); }
  .slot-nav-grid{ grid-template-columns:1fr 1fr; }
  .movie-detail-grid{ grid-template-columns:1fr; }
  .movie-poster-block{ max-width:280px; }
}

@media (max-width:640px){

  .shorts-row{ grid-template-columns:1fr; }
  .slot-nav-grid{ grid-template-columns:1fr; }
  .demo-launcher-overlay{ padding:24px; }
  .demo-launcher-overlay h3{ font-size:28px; }
  .page-intro-img.new-ratio{
    width:100%;
}
.page-intro-img{
    width:100%;
}
}

/* Portrait aspect ratio for shorts media-launch */
.short-media-card .media-launch{
  aspect-ratio:9/16;
}