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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Roboto", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #050814;
  color: #f5f5f5;
  line-height: 1.6;
}

a {
  color: #ffcc4d;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

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

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 8, 20, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px;
}

.logo {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.04em;
  color: #ffffff;
}

.logo span {
  color: #ffcc4d;
}

.header__burger {
  display: none;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: transparent;
  padding: 6px 5px;
  margin-left: auto;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.header__burger span {
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: #e5e7eb;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.header--menu-open .header__burger span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.header--menu-open .header__burger span:nth-child(2) {
  opacity: 0;
}

.header--menu-open .header__burger span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav__list {
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav__item {
  margin: 0;
}

.nav__link {
  font-size: 14px;
  color: #d6d7e0;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.nav__link:hover {
  color: #ffffff;
}

.nav__link--active {
  color: #ffffff;
  position: relative;
}

.nav__link--active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #4f46e5, #f97316);
}

.hero {
  padding: 40px 0 32px;
  background:
    url("img/hero-bg.svg") center/cover no-repeat,
    radial-gradient(circle at top, #1a2340, #050814 55%);
}

.hero h1,
.hero__title {
  margin: 0 0 16px;
  font-size: 30px;
}

.hero__text {
  max-width: 780px;
  font-size: 15px;
  color: #d6d7e0;
}

.section {
  padding: 40px 0;
}

.section h2 {
  margin: 0 0 16px;
  font-size: 24px;
}

.section__lead {
  margin: 0 0 24px;
  max-width: 720px;
  color: #d6d7e0;
}

.section--rating {
  background-color: #050814;
}

.typography {
  background: #020617;
  border-top: 1px solid rgba(148, 163, 184, 0.35);
  border-bottom: 1px solid rgba(148, 163, 184, 0.35);
}

.typography h2 {
  margin-bottom: 10px;
}

.typography > .container > p:first-of-type {
  margin: 0 0 26px;
  max-width: 780px;
  color: #d6d7e0;
}

.typography article {
  font-size: 14px;
  color: #e5e7eb;
}

.typography h3 {
  margin: 0 0 12px;
  font-size: 18px;
}

.typography h4 {
  margin: 16px 0 8px;
  font-size: 15px;
}

.typography ul,
.typography ol {
  margin: 0 0 10px 18px;
  padding: 0;
}

.typography ol {
  list-style: decimal;
}

.typography li {
  margin-bottom: 4px;
}

.typography blockquote {
  margin: 6px 0 10px;
  padding: 10px 14px;
  border-left: 3px solid #3b82f6;
  background: rgba(15, 23, 42, 0.9);
  border-radius: 8px;
  font-size: 13px;
  color: #e5e7eb;
}

.typography a {
  color: #60a5fa;
}

.typography a:hover {
  color: #bfdbfe;
}

.typography table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  margin: 6px 0 12px;
}

.typography table th,
.typography table td {
  padding: 6px 8px;
  border: 1px solid rgba(148, 163, 184, 0.45);
}

.typography table th {
  background: #0f172a;
  font-weight: 500;
  color: #e5e7eb;
}

.typography dl {
  margin: 8px 0 12px;
}

.typography dl > div {
  margin-bottom: 6px;
}

.typography dt {
  font-weight: 600;
}

.typography dd {
  margin: 2px 0 0;
  color: #d1d5db;
}

.typography pre {
  margin: 6px 0 10px;
  padding: 8px 10px;
  background: #020617;
  border-radius: 8px;
  border: 1px solid rgba(15, 23, 42, 0.9);
  font-size: 12px;
  overflow-x: auto;
}

.typography p code {
  padding: 1px 4px;
  border-radius: 4px;
  background: rgba(15, 23, 42, 0.9);
  font-size: 12px;
}

.typography article:first-of-type p {
  margin: 0 0 10px;
}

.typography article:first-of-type p img {
  max-width: 160px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.9);
}

.typography article:first-of-type p:nth-of-type(4) img {
  float: left;
  margin: 2px 12px 8px 0;
}

.typography article:first-of-type p:nth-of-type(6) img {
  float: right;
  margin: 2px 0 8px 12px;
}

@media (max-width: 720px) {
  .typography article:first-of-type p:nth-of-type(4) img,
  .typography article:first-of-type p:nth-of-type(6) img {
    float: none;
    display: block;
    margin: 0 0 8px;
    max-width: 70%;
  }
}

.rating-table__wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.rating-table {
  width: 100%;
  font-size: 14px;
}

.rating-table--cards {
  min-width: 0;
}

.rating-table--cards .rating-table__row {
  display: grid;
  grid-template-columns: 40px 72px 1.1fr 0.9fr 1.3fr 1.1fr 110px 110px;
  align-items: center;
  padding: 12px 10px;
  background: rgba(15, 23, 42, 0.9);
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.7);
}

.rating-table--cards .rating-table__row + .rating-table__row {
  margin-top: 10px;
}

.rating-table--cards .rating-table__row--head {
  box-shadow: none;
  background: transparent;
  padding: 0 0 10px;
}

.rating-table--cards .rating-table__cell {
  padding: 0;
}

.rating-table--cards .rating-table__cell--head {
  font-weight: 500;
  font-size: 13px;
  color: #9fa3c0;
}

.rating-table--casino {
  min-width: 0;
}

.rating-table--casino .rating-table__row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.7fr auto;
  align-items: center;
  padding: 10px 12px;
  background: rgba(15, 23, 42, 0.9);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.7);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.rating-table--casino .rating-table__row + .rating-table__row {
  margin-top: 8px;
}

.rating-table--casino .rating-table__row--head {
  box-shadow: none;
  background: transparent;
  padding: 0 0 8px;
}

.rating-table--casino .rating-table__cell {
  padding: 0;
  font-size: 13px;
}

.rating-table--casino .rating-table__cell--head {
  font-weight: 500;
  font-size: 13px;
  color: #9fa3c0;
}

.rating-slot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.rating-slot__image {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.85);
}

.rating-slot__name {
  font-weight: 500;
}

.rating-table--casino .rating-table__row:not(.rating-table__row--head):hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.9);
}

.rating-table--bonuses {
  min-width: 0;
}

.rating-table--bonuses .rating-table__row {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1.5fr 0.6fr 0.9fr auto;
  align-items: flex-start;
  padding: 10px 12px;
  background: rgba(15, 23, 42, 0.9);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.7);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.rating-table--bonuses .rating-table__row + .rating-table__row {
  margin-top: 8px;
}

.rating-table--bonuses .rating-table__row--head {
  box-shadow: none;
  background: transparent;
  padding: 0 0 8px;
}

.rating-table--bonuses .rating-table__cell {
  padding: 0;
  font-size: 13px;
}

.rating-table--bonuses .rating-table__cell--head {
  font-weight: 500;
  font-size: 13px;
  color: #9fa3c0;
}

.rating-table--bonuses .rating-table__row:not(.rating-table__row--head):hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.9);
}

@media (max-width: 900px) {
  .rating-table--bonuses .rating-table__row {
    grid-template-columns: 1.3fr 1fr;
    grid-template-rows: auto auto auto auto;
    row-gap: 6px;
  }

  .rating-table--bonuses .rating-table__row .rating-table__cell:nth-child(3),
  .rating-table--bonuses .rating-table__row .rating-table__cell:nth-child(4),
  .rating-table--bonuses .rating-table__row .rating-table__cell:nth-child(5),
  .rating-table--bonuses .rating-table__row .rating-table__cell:nth-child(6) {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .rating-table--casino .rating-table__row {
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: auto auto auto;
    row-gap: 6px;
  }

  .rating-table--casino .rating-table__row .rating-table__cell:nth-child(3),
  .rating-table--casino .rating-table__row .rating-table__cell:nth-child(4) {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .rating-table--cards .rating-table__row {
    grid-template-columns: 32px 60px 1.2fr;
    grid-template-rows: auto auto auto auto;
    row-gap: 6px;
  }

  .rating-table--cards .rating-table__row .rating-table__cell:nth-child(4),
  .rating-table--cards .rating-table__row .rating-table__cell:nth-child(5),
  .rating-table--cards .rating-table__row .rating-table__cell:nth-child(6),
  .rating-table--cards .rating-table__row .rating-table__cell:nth-child(7),
  .rating-table--cards .rating-table__row .rating-table__cell:nth-child(8) {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .rating-table--cards .rating-table__row {
    row-gap: 8px;
  }

  .rating-table--cards .rating-table__cell {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
  }

  .rating-table--cards .rating-table__cell::before {
    content: attr(data-label);
    flex: 0 0 auto;
    font-size: 12px;
    color: #9fa3c0;
    margin-right: 6px;
  }

  .rating-table--cards .rating-table__cell[data-label="№"],
  .rating-table--cards .rating-table__cell[data-label="Логотип"] {
    justify-content: flex-start;
  }

  .rating-table--cards .rating-table__cell[data-label="№"]::before,
  .rating-table--cards .rating-table__cell[data-label="Логотип"]::before {
    content: "";
    margin: 0;
  }
}

.casino-logo {
  width: 60px;
  height: auto;
  display: block;
}

.casino-name {
  font-weight: 500;
}

.stars {
  display: inline-block;
  color: #ffcc4d;
  font-size: 14px;
  margin-right: 4px;
}

.rating-number {
  font-size: 13px;
  color: #9fa3c0;
}

.promo-code {
  font-weight: 500;
  color: #ffcc4d;
}

.device {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 4px;
  position: relative;
}

.device--desktop {
  border-radius: 3px;
  background: linear-gradient(135deg, #1e40af, #0ea5e9);
  position: relative;
  overflow: hidden;
}

.device--desktop::before {
  content: "";
  position: absolute;
  inset: 3px 3px 7px 3px;
  border-radius: 2px;
  background: #020617;
}

.device--desktop::after {
  content: "";
  position: absolute;
  left: 5px;
  right: 5px;
  bottom: 2px;
  height: 3px;
  border-radius: 999px;
  background: #020617;
}

.device--mobile {
  width: 12px;
  height: 20px;
  border-radius: 4px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  position: relative;
}

.device--mobile::before {
  content: "";
  position: absolute;
  inset: 3px 2px 4px 2px;
  border-radius: 2px;
  background: #020617;
}

.device--mobile::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 1px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #e5e7eb;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, #ff7a18, #ffcc4d);
  color: #111111;
}

.btn--primary:hover {
  filter: brightness(1.05);
}

.btn--secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.16);
}

.section--deposits {
  background: #050814;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

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

.deposit-method {
  padding: 18px 18px 20px;
  border-radius: 16px;
  background: radial-gradient(circle at top left, rgba(59, 130, 246, 0.3), rgba(15, 23, 42, 0.9));
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.deposit-method__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  margin-bottom: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.9);
  position: relative;
}

.deposit-method__icon--card::before,
.deposit-method__icon--wallet::before,
.deposit-method__icon--crypto::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 12px;
  display: block;
  width: 22px;
  height: 14px;
  border-radius: 4px;
  border: 2px solid #ffcc4d;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.8);
}

.deposit-method__icon--wallet::before {
  width: 18px;
  height: 12px;
  border-radius: 999px;
  left: 11px;
}

.deposit-method__icon--wallet::after {
  content: "";
  position: absolute;
  right: 9px;
  top: 16px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #facc15;
}

.deposit-method__icon--crypto::before {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  left: 12px;
  top: 12px;
}

.deposit-method__icon--crypto::after {
  content: "₿";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 14px;
  color: #facc15;
}

.deposit-method__title {
  margin: 0 0 6px;
  font-size: 16px;
}

.deposit-method p {
  margin: 0;
  font-size: 14px;
  color: #d6d7e0;
}

.deposit-method__logos {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.deposit-method__logos img {
  height: 25px;
  width: auto;
  display: block;
  border-radius: 4px;
  /* background: #0f172a; */
  /* padding: 2px 4px; */
  /* box-shadow: 0 4px 10px rgba(15, 23, 42, 0.7); */
}

.section--bonuses {
  background: radial-gradient(circle at top, #111827, #020617 60%);
}

.bonus-carousel {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 12px;
}

.bonus-carousel__track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 4px;
}

.bonus-card {
  flex: 1 0 260px;
  padding: 14px 16px 16px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.96), rgba(37, 99, 235, 0.4));
  border: 1px solid rgba(96, 165, 250, 0.5);
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  column-gap: 12px;
  row-gap: 4px;
  align-items: flex-start;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
margin-bottom: 10px;
}

.bonus-card__image {
  grid-row: 1 / span 4;
}

.bonus-card__image img {
  width: 100%;
  height: 64px;
  border-radius: 16px;
  object-fit: contain;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.9);
}

.bonus-card__type {
  margin: 0 0 4px;
  font-size: 16px;
  grid-column: 2;
}

.bonus-card__amount {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 0;
  grid-column: 2;
}

.bonus-card__promo {
  font-size: 14px;
  margin-bottom: 8px;
  grid-column: 2;
}

.bonus-card__promo span {
  font-weight: 600;
  color: #ffcc4d;
}

.bonus-card__text {
  margin: 0 0 10px;
  font-size: 13px;
  color: #f3f4f6;
  grid-column: 2;
}

.bonus-card .btn {
  grid-column: 2;
  margin-top: 4px;
}

.bonus-card__cta {
  margin-top: 6px;
}

.bonus-card:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.9);
  border-color: rgba(191, 219, 254, 0.9);
}

@media (max-width: 720px) {
  .bonus-carousel {
    align-items: flex-start;
  }

  .bonus-card {
    flex: 0 0 100%;
    grid-template-columns: minmax(0, 1fr);
    row-gap: 6px;
  }

  .bonus-card__image {
    grid-row: auto;
    grid-column: 1;
    margin-bottom: 4px;
  }

  .bonus-card__image img {
    width: 72px;
    height: 72px;
    margin: 0 auto;
  }

  .bonus-card__type,
  .bonus-card__amount,
  .bonus-card__promo,
  .bonus-card__text,
  .bonus-card .btn {
    grid-column: 1;
  }
}

.carousel-arrow {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
}

.carousel-arrow::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #e5e7eb;
  border-right: 2px solid #e5e7eb;
}

.carousel-arrow--left::before {
  transform: rotate(-135deg);
}

.carousel-arrow--right::before {
  transform: rotate(45deg);
}

.carousel-arrow:hover {
  background: rgba(30, 64, 175, 0.9);
}

.section--slots {
  background: #050814;
}

.slot-demo__frame {
  margin-top: 10px;
  border-radius: 12px;
  overflow: hidden;
  background: #020617;
  border: 1px solid rgba(148, 163, 184, 0.4);
  min-height: 200px;
}

.slots-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 14px;
}

.slots-list__item {
  list-style: none;
}

.slots-list__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: radial-gradient(circle at top, rgba(30, 64, 175, 0.5), rgba(15, 23, 42, 0.95));
  font-size: 13px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.slots-list__link:hover {
  border-color: rgba(248, 250, 252, 0.9);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.85);
  transform: translateY(-2px) scale(1.01);
}

.slots-list__image {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  object-fit: cover;
  margin-bottom: 6px;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.9);
}

.slots-list__name {
  text-align: center;
}

.slots-list__link--catalog {
  align-items: stretch;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.slots-list__header {
  width: 100%;
  margin-bottom: 8px;
}

.slots-list__title {
  display: block;
  font-weight: 500;
  margin-bottom: 2px;
}

.slots-list__meta {
  display: block;
  font-size: 12px;
  color: #9fa3c0;
}

.slots-list__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}

.section--faq {
  background: #020617;
}

.faq {
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.25), rgba(15, 23, 42, 0.95));
}

.faq-item + .faq-item {
  border-top: 1px solid rgba(148, 163, 184, 0.4);
}

.faq-item__question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: inherit;
  padding: 14px 18px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  position: relative;
}

.faq-item__question::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid #e5e7eb;
  border-bottom: 2px solid #e5e7eb;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.2s ease;
}

.faq-item__question[aria-expanded="true"]::after {
  transform: translateY(-50%) rotate(225deg);
}

.faq-item__answer {
  padding: 0 18px 14px;
  font-size: 14px;
  color: #e5e7eb;
}

.footer {
  padding: 18px 0 22px;
  background: #020617;
  border-top: 1px solid rgba(148, 163, 184, 0.4);
  font-size: 13px;
  color: #9fa3c0;
}

.footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.footer__disclaimer {
  margin: 4px 0 0;
  max-width: 620px;
}

/* Форма отзывов на страницах казино */
section[aria-labelledby="players-reviews-title"] {
  background: #020617;
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  padding: 20px 18px 22px;
}

section[aria-labelledby="players-reviews-title"] .section__lead {
  margin-bottom: 12px;
}

section[aria-labelledby="players-reviews-title"] .reviews {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.reviews__item {
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.45);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.reviews__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 4px;
}

.reviews__author {
  font-weight: 500;
}

.reviews__rating {
  font-size: 12px;
  color: #9fa3c0;
}

.reviews__text {
  margin: 0;
  font-size: 13px;
  color: #e5e7eb;
}

.reviews__item:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.85);
  border-color: rgba(191, 219, 254, 0.8);
}

@media (min-width: 1024px) {
  .hero h1,
  .hero__title {
    font-size: 34px;
  }

  .section h2 {
    font-size: 26px;
  }
}

section[aria-labelledby="players-reviews-title"] form {
  max-width: 520px;
}

section[aria-labelledby="players-reviews-title"] form > div {
  margin-bottom: 12px;
}

section[aria-labelledby="players-reviews-title"] label {
  display: inline-block;
  margin-bottom: 4px;
  font-size: 13px;
  color: #e5e7eb;
}

section[aria-labelledby="players-reviews-title"] input,
section[aria-labelledby="players-reviews-title"] textarea,
section[aria-labelledby="players-reviews-title"] select {
  width: 100%;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: #020617;
  color: #f9fafb;
  font-size: 14px;
  font-family: inherit;
}

section[aria-labelledby="players-reviews-title"] textarea {
  resize: vertical;
  min-height: 100px;
}

section[aria-labelledby="players-reviews-title"] input:focus,
section[aria-labelledby="players-reviews-title"] textarea:focus,
section[aria-labelledby="players-reviews-title"] select:focus {
  outline: none;
  border-color: #4f46e5;
  box-shadow: 0 0 0 1px rgba(79, 70, 229, 0.4);
}

section[aria-labelledby="players-reviews-title"] form p {
  margin: 14px 0 0;
}

.breadcrumbs {
  padding: 10px 0 0;
  font-size: 13px;
  color: #9fa3c0;
}

.breadcrumbs__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding: 0;
  margin: 0;
}

.breadcrumbs__item::after {
  content: "›";
  margin: 0 4px;
  color: #4b5563;
}

.breadcrumbs__item:last-child::after {
  content: "";
  margin: 0;
}

.breadcrumbs__link {
  color: #9fa3c0;
}

.breadcrumbs__link:hover {
  color: #e5e7eb;
}

.casino-header {
  margin-bottom: 20px;
}

.casino-header__main {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.casino-header__logo-wrap {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: radial-gradient(circle at top, rgba(59, 130, 246, 0.3), rgba(15, 23, 42, 0.95));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.85);
}

.casino-header__logo {
  max-width: 80%;
  height: auto;
  display: block;
}

.casino-header__text h1 {
  margin: 0 0 4px;
}

.casino-header__text p {
  margin: 0;
}

@media (max-width: 600px) {
  .casino-header__main {
    align-items: flex-start;
  }
}

@media (max-width: 900px) {
  .nav {
    gap: 12px;
    font-size: 13px;
  }

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

  .bonus-card {
    flex: 0 0 220px;
  }
}

@media (max-width: 720px) {
  .header__inner {
    gap: 8px;
  }

  .hero {
    padding-top: 28px;
  }

  .hero h1,
  .hero__title {
    font-size: 24px;
  }

  .section {
    padding: 32px 0;
  }

  .section h2 {
    font-size: 20px;
  }

  .deposit-methods {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer__inner {
    flex-direction: column;
  }

  .header__burger {
    display: inline-flex;
  }

  .nav {
    position: fixed;
    inset: 52px 0 auto 0;
    padding: 10px 16px 14px;
    background: rgba(15, 23, 42, 0.98);
    border-bottom: 1px solid rgba(148, 163, 184, 0.5);
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.18s ease, opacity 0.18s ease;
  }

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

  .header--menu-open .nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .rating-table--cards .rating-table__row--head {
    display: none;
  }
}

@media (max-width: 480px) {
  .rating-table {
    font-size: 13px;
  }

  .bonus-carousel {
    flex-direction: column;
  }

  .carousel-arrow {
    order: -1;
    align-self: flex-end;
  }

  .bonus-carousel__track {
    padding-bottom: 2px;
  }

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


.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #020617;
  color: #f9fafb;
  padding: 10px 0;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.3s ease-out;
  border-top: 1px solid rgba(148, 163, 184, 0.4);
}

.cookie-consent.show {
  transform: translateY(0);
}

.cookie-consent__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 16px;
}

.cookie-consent__content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.cookie-consent__text {
  flex: 1;
  min-width: 240px;
  margin: 0.5rem 0;
  font-size: 13px;
  color: #e5e7eb;
}

.cookie-consent__link {
  color: #60a5fa;
  text-decoration: underline;
}

.cookie-consent__buttons {
  display: flex;
  gap: 8px;
}

.cookie-consent__btn {
  padding: 6px 14px;
  border-radius: 999px;
  border: none;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 13px;
}

.cookie-consent__btn--settings {
  background: transparent;
  color: #e5e7eb;
  border: 1px solid rgba(148, 163, 184, 0.8);
}

.cookie-consent__btn--settings:hover {
  background: rgba(148, 163, 184, 0.15);
}

.cookie-consent__btn--accept {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #020617;
}

.cookie-consent__btn--accept:hover {
  filter: brightness(1.05);
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: none;
}

.cookie-modal.show {
  display: block;
}

.cookie-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.7);
}

.cookie-modal__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #020617;
  border-radius: 16px;
  width: 90%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  border: 1px solid rgba(148, 163, 184, 0.4);
  color: #e5e7eb;
}

.cookie-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 18px 10px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.4);
}

.cookie-modal__title {
  font-size: 16px;
  font-weight: 600;
}

.cookie-modal__close {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #9ca3af;
}

.cookie-modal__body {
  padding: 14px 18px 10px;
}

.cookie-modal__description {
  margin-bottom: 12px;
  color: #9ca3af;
  font-size: 13px;
}

.cookie-modal__footer {
  padding: 12px 18px 16px;
  border-top: 1px solid rgba(148, 163, 184, 0.4);
  text-align: right;
}

.cookie-modal__btn {
  padding: 6px 16px;
  border-radius: 999px;
  border: none;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 13px;
}

.cookie-modal__btn--save {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #020617;
}

.cookie-modal__btn--save:hover {
  filter: brightness(1.05);
}

.cookie-category {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.3);
}

.cookie-category:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.cookie-category__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.cookie-category__title {
  font-size: 14px;
  font-weight: 600;
}

.cookie-category__description {
  color: #9ca3af;
  font-size: 13px;
}

.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 22px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle__slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: #4b5563;
  transition: .3s;
  border-radius: 999px;
}

.cookie-toggle__slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .3s;
  border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-toggle__slider {
  background-color: #22c55e;
}

.cookie-toggle input:checked + .cookie-toggle__slider:before {
  transform: translateX(18px);
}

.cookie-toggle input:disabled + .cookie-toggle__slider {
  background-color: #6b7280;
  cursor: not-allowed;
}

@media (max-width: 768px) {
  .cookie-consent__content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-consent__buttons {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .cookie-modal__content {
    width: 95%;
  }

  .cookie-consent__text {
    font-size: 12px;
  }

  .cookie-consent__btn {
    font-size: 12px;
  }
}

