@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");
:root {
  --ink: #1a0a3c;
  --plum: #2c1753;
  --violet: #463195;
  --blue: #4172c1;
  --gold: #ffdc41;
  --cream: #f0ebff;
  --card: rgba(70, 49, 149, 0.35);
  --line: rgba(255, 220, 65, 0.2);
  --shadow: 0 18px 50px rgba(18, 5, 49, 0.3);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--plum);
  color: var(--cream);
  font-family: Inter, sans-serif;
  line-height: 1.65;
}
a {
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
button,
input,
textarea,
select {
  font: inherit;
}
main {
  overflow: hidden;
}
.wrap {
  width: min(1140px, calc(100% - 32px));
  margin: auto;
}
.section {
  padding: 56px 0;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
}
.section-title {
  font-size: clamp(1.65rem, 4vw, 2.7rem);
  line-height: 1.1;
  margin: 8px 0 26px;
  color: var(--cream);
}
.muted {
  color: #c5b9e1;
}
.grid {
  display: grid;
  gap: 18px;
}
.two {
  grid-template-columns: 1fr;
}
.three {
  grid-template-columns: repeat(2, 1fr);
}
.six {
  grid-template-columns: repeat(2, 1fr);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(70, 49, 149, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.25s;
}
.site-header.scrolled {
  box-shadow: 0 8px 28px rgba(10, 3, 30, 0.25);
}
.header-row {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.25rem;
}
.brand img {
  width: 108px;
  height: 45px;
  object-fit: cover;
  border-radius: 8px;
}
.nav {
  display: none;
  flex: 1;
  gap: 17px;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 600;
}
.nav a {
  text-decoration: none;
  opacity: 0.9;
}
.nav a:hover {
  color: var(--gold);
}
.header-actions {
  margin-left: auto;
  display: flex;
  gap: 7px;
}
.btn {
  border: 0;
  border-radius: 999px;
  padding: 11px 17px;
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    transform 0.2s,
    background 0.2s,
    box-shadow 0.2s;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-login {
  background: var(--blue);
  color: #fff;
}
.btn-register,
.btn-primary {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 7px 20px rgba(255, 220, 65, 0.18);
}
.btn-secondary {
  background: var(--blue);
  color: #fff;
}
.burger {
  border: 0;
  background: transparent;
  color: var(--cream);
  font-size: 1.5rem;
  padding: 5px;
  display: block;
  cursor: pointer;
}
.nav.open {
  display: flex;
  position: absolute;
  top: 76px;
  left: 0;
  right: 0;
  padding: 18px;
  flex-direction: column;
  align-items: stretch;
  background: var(--violet);
  box-shadow: var(--shadow);
}
.nav.open a {
  padding: 8px 12px;
}
.hero {
  padding: 44px 0 52px;
  background: linear-gradient(135deg, var(--violet), var(--plum));
  position: relative;
}
.hero-grid {
  display: grid;
  gap: 30px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.3rem, 7vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
  margin: 10px 0 18px;
}
.hero p {
  font-size: 1.05rem;
  max-width: 610px;
  color: #d5ccef;
}
.hero-media {
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255, 220, 65, 0.2), rgba(65, 114, 193, 0.4)),
    url("/bantype.png") center/cover;
  box-shadow: var(--shadow);
  padding: 22px;
  display: flex;
  align-items: flex-end;
}
.hero-media strong {
  font-size: 1.3rem;
}
.slider {
  position: relative;
}
.slide {
  display: none;
}
.slide.active {
  display: block;
  animation: fadeIn 0.6s;
}
.slider-dots {
  display: flex;
  gap: 7px;
  margin-top: 20px;
}
.slider-dots button {
  width: 28px;
  height: 5px;
  border: 0;
  border-radius: 9px;
  background: #8c7bc2;
  cursor: pointer;
}
.slider-dots button.active {
  background: var(--gold);
}
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px;
  box-shadow: 0 8px 24px rgba(20, 6, 54, 0.12);
}
.card h3 {
  margin: 8px 0 6px;
}
.icon {
  font-size: 1.7rem;
  color: var(--gold);
}
.game-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.game-card {
  overflow: hidden;
  padding: 0;
}
.game-card img {
  width: 100%;
  height: 130px;
  object-fit: cover;
}
.game-card-body {
  padding: 13px;
}
.game-card h3 {
  font-size: 0.9rem;
  margin: 0;
}
.game-card p {
  margin: 3px 0 10px;
  font-size: 0.74rem;
  color: #c8bde5;
}
.game-card .btn {
  padding: 8px 12px;
  font-size: 0.76rem;
}
.light-section {
  background: #f1ecff;
  color: var(--ink);
}
.light-section .section-title,
.light-section h3 {
  color: var(--ink);
}
.table-wrap {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid var(--line);
}
table {
  border-collapse: collapse;
  width: 100%;
  min-width: 600px;
  background: rgba(70, 49, 149, 0.2);
}
th,
td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}
th {
  color: var(--gold);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
tr:last-child td {
  border-bottom: 0;
}
.content-review {
  max-width: 850px;
}
.content-review h2 {
  font-size: 1.7rem;
  margin-top: 35px;
  color: var(--gold);
}
.content-review h3 {
  font-size: 1.2rem;
  color: var(--cream);
  margin-top: 25px;
}
.content-review p {
  color: #d5ccef;
}
.content-review li {
  margin: 7px 0;
}
.content-review table {
  margin: 20px 0;
}
.content-review a {
  color: var(--gold);
}
.promo {
  background: linear-gradient(120deg, #5d42b5, var(--violet));
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  text-align: center;
}
.promo-code {
  display: inline-block;
  font-size: clamp(2rem, 8vw, 4rem);
  letter-spacing: 0.08em;
  color: var(--gold);
  font-weight: 800;
  margin: 10px 0;
}
.mini-game {
  background: #20103f;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  text-align: center;
  max-width: 650px;
  margin: auto;
}
.reels {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 20px 0;
}
.reel {
  width: 76px;
  height: 76px;
  border-radius: 12px;
  background: #f4efff;
  color: var(--ink);
  display: grid;
  place-items: center;
  font-size: 2.1rem;
  box-shadow: inset 0 -7px #c9bce9;
}
.reel.spinning {
  animation: spin 0.45s linear infinite;
}
.result {
  min-height: 30px;
  font-weight: 700;
  color: var(--gold);
}
.review-grid {
  display: grid;
  gap: 15px;
}
.review-card {
  position: relative;
}
.review-top {
  display: flex;
  gap: 12px;
  align-items: center;
}
.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}
.stars {
  color: var(--gold);
  letter-spacing: 2px;
}
.review-card p {
  color: #d5ccef;
  font-size: 0.9rem;
}
.form {
  display: grid;
  gap: 13px;
  margin-top: 25px;
}
.form label {
  display: grid;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
}
.form input,
.form textarea,
.form select {
  width: 100%;
  border: 1px solid var(--line);
  background: #211143;
  color: var(--cream);
  padding: 12px;
  border-radius: 9px;
}
.form textarea {
  min-height: 120px;
  resize: vertical;
}
.success {
  background: rgba(87, 190, 128, 0.17);
  border: 1px solid #72d997;
  padding: 15px;
  border-radius: 10px;
  color: #bdf4ce;
}
.fixed-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26, 10, 60, 0.96);
  z-index: 30;
  border-top: 1px solid var(--line);
  padding: 10px 0;
}
.widget-inner {
  width: min(1140px, calc(100% - 24px));
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.widget-bonus {
  font-size: 0.78rem;
  font-weight: 700;
}
.widget-cta {
  padding: 9px 14px;
  font-size: 0.8rem;
}
.site-footer {
  background: var(--violet);
  padding: 48px 0 90px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  gap: 28px;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  font-size: 0.85rem;
}
.footer-links a {
  text-decoration: none;
  color: #ddd4f5;
}
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.badge {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  padding: 6px 9px;
  font-size: 0.72rem;
}
.disclaimer {
  font-size: 0.78rem;
  color: #c9bee5;
}
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.65s,
    transform 0.65s;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.pulse {
  animation: pulse 2.2s infinite;
}
.notice {
  padding: 16px;
  border-left: 4px solid var(--gold);
  background: rgba(255, 220, 65, 0.1);
  border-radius: 0 9px 9px 0;
}
.rating {
  font-size: 2rem;
  color: var(--gold);
  font-weight: 800;
}
.pros {
  border-color: rgba(114, 217, 151, 0.5);
}
.cons {
  border-color: rgba(255, 125, 114, 0.5);
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes spin {
  to {
    transform: rotateX(360deg);
  }
}
@keyframes pulse {
  50% {
    box-shadow: 0 0 0 9px rgba(255, 220, 65, 0);
  }
}
@media (min-width: 768px) {
  .wrap {
    width: min(1140px, calc(100% - 56px));
  }
  .burger {
    display: none;
  }
  .nav {
    display: flex;
  }
  .hero {
    padding: 78px 0;
  }
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }
  .two {
    grid-template-columns: repeat(2, 1fr);
  }
  .three {
    grid-template-columns: repeat(3, 1fr);
  }
  .six {
    grid-template-columns: repeat(3, 1fr);
  }
  .game-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .review-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
  .form.two {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .six {
    grid-template-columns: repeat(6, 1fr);
  }
  .game-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  .game-card img {
    height: 118px;
  }
  .footer-links {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 390px) {
  .header-actions .btn {
    padding: 9px 10px;
    font-size: 0.72rem;
  }
  .brand img {
    width: 88px;
  }
  .widget-bonus {
    font-size: 0.68rem;
  }
}
.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.info-table th,
.info-table td {
  padding: 11px 14px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.info-table thead th {
  background: rgba(70, 49, 149, 0.7);
  color: var(--gold);
  font-weight: 700;
}
.info-table tbody th {
  background: rgba(70, 49, 149, 0.35);
  font-weight: 600;
  width: 38%;
}
.info-table tbody tr:nth-child(even) td,
.info-table tbody tr:nth-child(even) th {
  background: rgba(70, 49, 149, 0.2);
}
.info-table tbody tr:hover td,
.info-table tbody tr:hover th {
  background: rgba(255, 220, 65, 0.05);
}
.download-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0;
}
.download-btns .btn {
  font-size: 0.9rem;
}
.content-review {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  padding: 32px;
}
.content-review h2 {
  color: var(--gold);
  font-size: 1.5rem;
  margin: 0 0 12px;
}
.content-review h3 {
  color: var(--cream);
  font-size: 1.15rem;
  margin: 22px 0 8px;
}
.content-review p {
  color: #d5ccef;
  margin: 0 0 14px;
}
.content-review ul,
.content-review ol {
  color: #d5ccef;
  padding-left: 22px;
  margin: 0 0 14px;
}
.content-review li {
  margin: 6px 0;
}
.content-review table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
}
.content-review table th,
.content-review table td {
  padding: 10px 13px;
  border: 1px solid var(--line);
  text-align: left;
}
.content-review table th {
  background: rgba(70, 49, 149, 0.6);
  color: var(--gold);
}
.content-review a {
  color: var(--gold);
}
.content-review strong {
  color: var(--cream);
}
.light-section {
  background: #f1ecff;
  color: var(--ink);
}
.light-section .section-title,
.light-section .muted,
.light-section p,
.light-section li,
.light-section .disclaimer {
  color: #2a1060;
}
.light-section .card {
  background: #e8e0f8;
  border-color: #ccc0ee;
}
.light-section .card h3 {
  color: var(--ink);
}
.light-section .card p {
  color: #4a3880;
}
.light-section .eyebrow {
  color: #7b4fd4;
}
.light-section .notice {
  background: rgba(123, 79, 212, 0.1);
  border-color: #7b4fd4;
  color: #2a1060;
}
.light-section .footer-links a {
  color: #4a3880;
}
.light-section .info-table th,
.light-section .info-table td {
  border-color: #ccc0ee;
  color: #2a1060;
}
.light-section .info-table thead th {
  background: #ccc0ee;
  color: #2a1060;
}
.light-section .info-table tbody th {
  background: #d8cff2;
}
.light-section .content-review {
  background: rgba(123, 79, 212, 0.06);
}
.light-section .content-review h2 {
  color: #5a3ab0;
}
.light-section .content-review h3 {
  color: #2a1060;
}
.light-section .content-review p,
.light-section .content-review li {
  color: #4a3880;
}
.basetechnical-content {
  max-width: 860px;
  margin: 0 auto;
}
.basetechnical-content h2 {
  color: var(--gold);
  margin-top: 32px;
}
.basetechnical-content h3 {
  color: var(--cream);
}
.basetechnical-content p,
.basetechnical-content li {
  color: #d5ccef;
}

.site-header .brand img,
.site-footer .brand img {
  height: auto;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  filter: brightness(0) saturate(100%) invert(88%) sepia(79%) saturate(1643%) hue-rotate(330deg) brightness(105%) contrast(102%);
}
.site-header .brand img {
  width: 150px;
  max-height: 58px;
}
.site-footer .brand img {
  width: 178px;
  max-height: 70px;
  margin-bottom: 14px;
}
.hero-media {
  padding: 0;
  min-height: 260px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(44, 23, 83, 0.22), rgba(70, 49, 149, 0.18)),
    url("/bantype.png") right center/cover no-repeat;
}
.hero-media > * {
  display: none !important;
}
.light-section {
  background: #351f67;
  color: var(--cream);
}
.light-section .section-title,
.light-section h2,
.light-section h3,
.light-section p,
.light-section li,
.light-section .muted,
.light-section .disclaimer {
  color: var(--cream);
}
.light-section .muted,
.light-section .card p,
.light-section p,
.light-section li {
  color: #d2c7ed;
}
.light-section .eyebrow,
.light-section .content-review h2,
.light-section .content-review a {
  color: var(--gold);
}
.light-section .card,
.light-section .content-review {
  background: linear-gradient(145deg, rgba(86, 60, 163, 0.72), rgba(48, 27, 94, 0.92));
  border-color: rgba(255, 220, 65, 0.22);
  color: var(--cream);
}
.light-section .card h3,
.light-section .content-review h3,
.light-section .content-review strong {
  color: var(--cream);
}
.light-section .notice {
  background: rgba(255, 220, 65, 0.08);
  border-color: var(--gold);
  color: var(--cream);
}
.light-section .info-table th,
.light-section .info-table td {
  border-color: rgba(255, 220, 65, 0.2);
  color: var(--cream);
}
.light-section .info-table thead th,
.light-section .info-table tbody th {
  background: rgba(70, 49, 149, 0.72);
  color: var(--gold);
}
.reel {
  background: #4b348f;
  color: var(--cream);
  box-shadow: inset 0 -7px #2a1755;
}
.game-grid {
  grid-template-columns: 1fr;
  gap: 20px;
}
.game-card {
  background: linear-gradient(160deg, #4d3491 0%, #2f195f 100%);
  border-color: rgba(255, 220, 65, 0.24);
}
.game-card img {
  width: 100%;
  height: 230px;
  object-fit: contain;
  object-position: center;
  padding: 10px;
  background: #231246;
  border-bottom: 1px solid rgba(255, 220, 65, 0.18);
}
.game-card-body {
  padding: 18px;
}
.game-card h3 {
  color: var(--cream);
  font-size: 1.05rem;
}
.game-card p {
  color: #d2c7ed;
  font-size: 0.84rem;
}
.review-grid {
  gap: 20px;
}
.review-card {
  background: linear-gradient(155deg, rgba(82, 57, 158, 0.94), rgba(43, 23, 84, 0.98));
  border-color: rgba(255, 220, 65, 0.24);
  min-width: 0;
}
.review-top {
  align-items: center;
}
.avatar {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  border: 2px solid var(--gold);
  background: #2a1755;
  object-fit: cover;
}
.review-card p {
  color: #d7cdee;
  font-size: 0.94rem;
}
.table-wrap,
.content-table-scroll {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  border-radius: 12px;
}
.table-wrap table,
.content-table-scroll table {
  width: 100%;
  min-width: 620px;
  margin: 0;
}
.content-review,
.basetechnical-content {
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}
.footer-legal-links {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .game-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-grid {
    grid-template-columns: 1.15fr 0.85fr 0.85fr 1fr;
  }
}
@media (min-width: 1024px) {
  .game-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .game-card img {
    height: 250px;
  }
}
@media (max-width: 767px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }
  .wrap {
    width: calc(100% - 28px);
  }
  .site-header .brand img {
    width: 118px;
    max-height: 48px;
  }
  .site-footer .brand img {
    width: 150px;
  }
  .hero-media {
    min-height: 210px;
  }
  .content-review {
    padding: 20px 16px;
  }
  .content-review table,
  .info-table,
  .basetechnical-content table {
    max-width: none;
  }
  .table-wrap table,
  .content-table-scroll table {
    min-width: 560px;
  }
  .game-card img {
    height: 240px;
  }
  .review-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid,
  .footer-links {
    grid-template-columns: 1fr;
  }
  .fixed-widget {
    max-width: 100vw;
  }
  .widget-inner {
    width: calc(100% - 20px);
    min-width: 0;
  }
  .widget-bonus {
    min-width: 0;
    overflow-wrap: anywhere;
  }
}

.content-review,
.basetechnical-content {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  background: linear-gradient(145deg, rgba(82, 57, 158, 0.96), rgba(43, 23, 84, 0.98));
  border: 1px solid rgba(255, 220, 65, 0.22);
  color: var(--cream);
  overflow: visible;
}
.content-review h1,
.content-review h3,
.content-review h4,
.content-review h5,
.content-review h6,
.basetechnical-content h1,
.basetechnical-content h3,
.basetechnical-content h4,
.basetechnical-content h5,
.basetechnical-content h6,
.light-section .content-review h1,
.light-section .content-review h3,
.light-section .content-review h4,
.light-section .content-review h5,
.light-section .content-review h6 {
  color: var(--cream) !important;
}
.content-review h2,
.basetechnical-content h2,
.light-section .content-review h2 {
  color: var(--gold) !important;
}
.content-review p,
.content-review li,
.content-review td,
.content-review blockquote,
.content-review small,
.basetechnical-content p,
.basetechnical-content li,
.basetechnical-content td,
.basetechnical-content blockquote,
.basetechnical-content small,
.light-section .content-review p,
.light-section .content-review li,
.light-section .content-review td,
.light-section .content-review blockquote,
.light-section .content-review small {
  color: #eee8ff !important;
}
.content-review strong,
.basetechnical-content strong,
.light-section .content-review strong {
  color: #ffffff !important;
}
.content-review a,
.basetechnical-content a,
.light-section .content-review a {
  color: var(--gold) !important;
}
.content-review th,
.basetechnical-content th,
.light-section .content-review th {
  color: var(--gold) !important;
}
.card,
.grid,
.game-grid,
.review-grid,
.hero-grid,
.footer-grid,
.footer-links,
.form,
.promo,
.mini-game,
.table-wrap,
.content-table-scroll {
  min-width: 0;
  max-width: 100%;
}
.card,
.game-card,
.review-card {
  overflow-wrap: anywhere;
  word-break: normal;
}
.card > *,
.game-card > *,
.review-card > * {
  min-width: 0;
  max-width: 100%;
}
.btn {
  max-width: 100%;
}
.table-wrap,
.content-table-scroll {
  display: block;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}
.table-wrap table,
.content-table-scroll table {
  margin: 0;
}

@media (max-width: 767px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }
  main {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }
  .wrap {
    width: calc(100% - 24px) !important;
    max-width: calc(100% - 24px) !important;
    min-width: 0;
  }
  .section {
    padding: 38px 0;
  }
  .hero {
    padding: 36px 0 42px;
  }
  .hero-grid,
  .grid.two,
  .grid.three,
  .grid.six,
  .two.grid,
  .three.grid,
  .six.grid,
  .game-grid,
  .game-grid[style],
  .review-grid,
  .footer-grid,
  .footer-links,
  .form.two {
    grid-template-columns: minmax(0, 1fr) !important;
    width: 100%;
    max-width: 100%;
  }
  .grid,
  .hero-grid,
  .game-grid,
  .review-grid {
    gap: 16px !important;
  }
  .card,
  .game-card,
  .review-card,
  .promo,
  .mini-game,
  .notice,
  .form,
  .hero-media {
    width: 100%;
    min-width: 0 !important;
    max-width: 100% !important;
  }
  .card {
    padding: 20px 18px;
  }
  .card h2,
  .card h3,
  .card p,
  .card li,
  .section-title,
  .hero h1,
  .hero p {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
  .section-title {
    font-size: clamp(1.8rem, 8.5vw, 2.35rem);
  }
  .hero h1 {
    font-size: clamp(2rem, 10.5vw, 3rem);
    letter-spacing: -0.035em;
  }
  .header-row {
    min-height: 68px;
    gap: 8px;
  }
  .site-header .brand {
    flex: 0 1 auto;
    min-width: 0;
  }
  .site-header .brand img {
    width: 112px;
    max-width: 112px;
    max-height: 46px;
  }
  .header-actions {
    margin-left: auto;
    gap: 0;
    flex: 0 0 auto;
  }
  .header-actions .btn-login {
    display: none !important;
  }
  .header-actions .btn-register {
    display: inline-flex !important;
    padding: 9px 12px;
    font-size: 0.78rem;
  }
  .burger {
    flex: 0 0 auto;
  }
  .nav.open {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    overflow-y: auto;
    background: #351f67;
  }
  .btn {
    min-width: 0;
    white-space: normal;
    text-align: center;
    overflow-wrap: anywhere;
  }
  .content-review,
  .basetechnical-content {
    width: 100%;
    max-width: 100%;
    padding: 22px 16px;
    overflow: visible;
  }
  .content-review > table,
  .basetechnical-content > table {
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-wrap,
  .content-table-scroll {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
  }
  .table-wrap table,
  .content-table-scroll table {
    width: 560px;
    min-width: 560px;
    max-width: none;
  }
  .content-review table th,
  .content-review table td,
  .basetechnical-content table th,
  .basetechnical-content table td {
    white-space: normal;
    overflow-wrap: anywhere;
  }
  img,
  video,
  iframe,
  canvas,
  svg {
    max-width: 100%;
  }
  iframe,
  video {
    width: 100%;
  }
  .download-btns {
    width: 100%;
  }
  .download-btns .btn {
    flex: 1 1 100%;
  }
  .promo-code {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .reels,
  .badges {
    max-width: 100%;
    flex-wrap: wrap;
  }
  .fixed-widget {
    width: 100%;
    max-width: 100vw;
  }
  .widget-inner {
    width: calc(100% - 20px);
    max-width: calc(100% - 20px);
    min-width: 0;
  }
  .widget-bonus {
    min-width: 0;
    overflow-wrap: anywhere;
  }
  .widget-cta {
    flex: 0 0 auto;
    min-width: 0;
  }
  .site-footer .brand img {
    width: 150px;
    max-width: 100%;
  }
}

@media (max-width: 390px) {
  .wrap {
    width: calc(100% - 20px) !important;
    max-width: calc(100% - 20px) !important;
  }
  .site-header .brand img {
    width: 98px;
    max-width: 98px;
  }
  .header-actions .btn-register {
    padding: 8px 10px;
    font-size: 0.72rem;
  }
  .card {
    padding: 18px 15px;
  }
  .content-review,
  .basetechnical-content {
    padding: 20px 14px;
  }
}

@media (max-width: 767px) {
  .card [style*="display:flex"],
  .review-card [style*="display:flex"] {
    flex-wrap: wrap;
    gap: 6px 12px;
    min-width: 0;
  }
  .card [style*="display:flex"] > *,
  .review-card [style*="display:flex"] > * {
    min-width: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
  }
}

@media (min-width: 768px) {
  .wrap.content-review,
  .wrap.basetechnical-content {
    width: min(1140px, calc(100% - 56px));
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
  }
}

@media (max-width: 767px) {
  .site-header {
    z-index: 10000;
    background: #463195;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  body.menu-open {
    overflow: hidden;
    touch-action: none;
  }
  .nav.open {
    display: flex !important;
    position: fixed !important;
    top: 68px !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: calc(100dvh - 68px) !important;
    max-width: none !important;
    min-height: calc(100vh - 68px);
    margin: 0 !important;
    padding: 20px 16px 36px !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 4px !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    background: #2c1753 !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    z-index: 9999 !important;
  }
  .nav.open a {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 52px;
    padding: 13px 14px;
    border-bottom: 1px solid rgba(255, 220, 65, 0.16);
    color: #f0ebff;
    font-size: 1rem;
    opacity: 1;
  }
  .burger {
    position: relative;
    z-index: 10001;
    min-width: 42px;
    min-height: 42px;
    line-height: 1;
  }
  .wrap.content-review,
  .wrap.basetechnical-content {
    width: calc(100% - 24px) !important;
    max-width: calc(100% - 24px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    overflow: hidden;
  }
}
