@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap");

:root {
  --clr-header: #17140c;
  --clr-header-alt: #1e1a10;
  --clr-bg: #750a02;
  --clr-bg-dark: #5c0801;
  --clr-bg-card: #1a0e0b;
  --clr-bg-card2: #220f0b;
  --clr-btn-play: #d88f16;
  --clr-btn-play-hover: #f0a520;
  --clr-btn-sec: #38ab7e;
  --clr-btn-sec-hover: #45c995;
  --clr-text: #f0e8d8;
  --clr-text-muted: #b8a88a;
  --clr-text-dark: #2a1a10;
  --clr-gold: #d88f16;
  --clr-gold-light: #f5c842;
  --clr-green: #38ab7e;
  --clr-border: rgba(216, 143, 22, 0.25);
  --clr-border-light: rgba(240, 232, 216, 0.12);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.45);
  --shadow-btn: 0 4px 16px rgba(216, 143, 22, 0.35);
  --font: "Inter", sans-serif;
  --transition: 0.22s ease;
}

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

html {
  scroll-behavior: smooth;
  background: var(--clr-bg);
}
body {
  font-family: var(--font);
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

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

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

.box {
  border-radius: var(--radius-md);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition:
    background var(--transition),
    transform var(--transition),
    box-shadow var(--transition),
    color var(--transition);
  white-space: nowrap;
  line-height: 1;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn:active {
  transform: translateY(0);
}

.btn--play {
  background: linear-gradient(135deg, var(--clr-btn-play), #c07810);
  color: #1a0e00;
  box-shadow: var(--shadow-btn);
}
.btn--play:hover {
  background: linear-gradient(
    135deg,
    var(--clr-btn-play-hover),
    var(--clr-btn-play)
  );
  color: #1a0e00;
  box-shadow: 0 6px 24px rgba(216, 143, 22, 0.55);
}

.btn--sec {
  background: linear-gradient(135deg, var(--clr-btn-sec), #289a6a);
  color: #fff;
}
.btn--sec:hover {
  background: linear-gradient(
    135deg,
    var(--clr-btn-sec-hover),
    var(--clr-btn-sec)
  );
  color: #fff;
  box-shadow: 0 6px 20px rgba(56, 171, 126, 0.4);
}

.btn--outline {
  background: transparent;
  border: 2px solid var(--clr-gold);
  color: var(--clr-gold);
}
.btn--outline:hover {
  background: var(--clr-gold);
  color: var(--clr-text-dark);
}

.btn--lg {
  padding: 14px 32px;
  font-size: 16px;
  border-radius: var(--radius-md);
}
.btn--xl {
  padding: 18px 42px;
  font-size: 18px;
  border-radius: var(--radius-md);
}

.section-title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: var(--clr-gold-light);
  margin-bottom: 8px;
  text-shadow: 0 2px 12px rgba(216, 143, 22, 0.3);
}
.section-sub {
  font-size: 15px;
  color: var(--clr-text-muted);
  margin-bottom: 32px;
}

.card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-card);
}
.card2 {
  background: var(--clr-bg-card2);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-md);
  padding: 20px;
}

.tag {
  display: inline-block;
  background: rgba(216, 143, 22, 0.15);
  border: 1px solid var(--clr-border);
  color: var(--clr-gold);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.divider {
  border: none;
  border-top: 1px solid var(--clr-border-light);
  margin: 28px 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

/* ====== SITE HEADER ====== */
.site-header {
  background: var(--clr-header);
  border-bottom: 2px solid rgba(216, 143, 22, 0.3);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 10px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.header-logo img {
  height: 52px;
  width: auto;
}
.header-logo {
  display: flex;
  align-items: center;
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.header-nav a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--clr-text-muted);
  border-radius: var(--radius-sm);
  transition:
    color var(--transition),
    background var(--transition);
}
.header-nav a:hover {
  color: var(--clr-gold-light);
  background: rgba(216, 143, 22, 0.1);
}
.header-nav a svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
}

.winner-ticker {
  background: rgba(216, 143, 22, 0.12);
  border: 1px solid rgba(216, 143, 22, 0.25);
  border-radius: var(--radius-sm);
  padding: 5px 12px;
  font-size: 12px;
  color: var(--clr-gold);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}
.winner-ticker span.wt-label {
  color: var(--clr-text-muted);
  font-size: 11px;
}
.winner-ticker span.wt-nick {
  font-weight: 700;
  color: var(--clr-text);
}
.winner-ticker span.wt-amount {
  font-weight: 800;
  color: var(--clr-gold-light);
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: var(--radius-sm);
}
.burger span {
  display: block;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition:
    transform var(--transition),
    opacity var(--transition);
}
.burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--clr-header-alt);
  border-top: 1px solid var(--clr-border);
  padding: 16px 20px 20px;
  gap: 6px;
}
.mobile-menu.active {
  display: flex;
}
.mobile-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--clr-text);
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
}
.mobile-menu a:hover {
  background: rgba(216, 143, 22, 0.12);
  border-color: var(--clr-border);
  color: var(--clr-gold-light);
}
.mobile-menu svg {
  width: 18px;
  height: 18px;
}

.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("/wanban.jpeg");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  z-index: 0;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(21, 7, 2, 0.88) 0%,
    rgba(117, 10, 2, 0.5) 60%,
    rgba(21, 7, 2, 0.2) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
  padding: 60px 20px 60px;
}
.hero-game-tag {
  margin-bottom: 14px;
}
.hero-title {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
  margin-bottom: 16px;
}
.hero-title span {
  color: var(--clr-gold-light);
}
.hero-desc {
  font-size: 17px;
  color: var(--clr-text-muted);
  margin-bottom: 28px;
  line-height: 1.6;
  max-width: 460px;
}
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 10px;
}
.stars {
  color: var(--clr-gold-light);
  font-size: 18px;
  letter-spacing: 2px;
}
.hero-rating-text {
  font-size: 14px;
  color: var(--clr-text-muted);
}
.hero-rating-text strong {
  color: var(--clr-text);
}

.hero-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.hero-badge {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  font-size: 12px;
  color: var(--clr-text-muted);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-badge strong {
  color: var(--clr-gold-light);
  font-size: 16px;
  font-weight: 800;
}

/* ====== SECTIONS ====== */
.section {
  padding: 56px 0;
}
.section-header {
  margin-bottom: 36px;
}
.section-header-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

/* ====== AUTHOR ====== */
.author-block {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 28px;
  align-items: start;
}
.author-avatar {
  position: relative;
}
.author-avatar img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--clr-gold);
  box-shadow: 0 0 0 4px rgba(216, 143, 22, 0.18);
}
.author-verified {
  position: absolute;
  bottom: 4px;
  right: 4px;
  width: 24px;
  height: 24px;
  background: var(--clr-btn-sec);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--clr-bg-card);
}
.author-name {
  font-size: 22px;
  font-weight: 800;
  color: var(--clr-text);
  margin-bottom: 4px;
}
.author-position {
  font-size: 14px;
  color: var(--clr-gold);
  font-weight: 600;
  margin-bottom: 12px;
}
.author-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-bottom: 14px;
}
.author-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--clr-text-muted);
}
.author-meta-item svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--clr-gold);
}
.author-bio {
  font-size: 14px;
  color: var(--clr-text-muted);
  line-height: 1.65;
  margin-bottom: 14px;
}
.author-socials {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.author-social-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  background: rgba(56, 171, 126, 0.1);
  border: 1px solid rgba(56, 171, 126, 0.25);
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 600;
  color: var(--clr-btn-sec);
}
.author-social-link:hover {
  background: rgba(56, 171, 126, 0.2);
  color: var(--clr-btn-sec);
}
.author-social-link svg {
  width: 14px;
  height: 14px;
}
.author-dates {
  font-size: 12px;
  color: var(--clr-text-muted);
  margin-top: 10px;
}
.author-dates span + span::before {
  content: " · ";
}

/* ====== SCREENSHOTS ====== */
.screens-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.screen-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--clr-border);
  cursor: pointer;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  aspect-ratio: 16/9;
  background: #0a0604;
}
.screen-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.screen-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}
.screen-item:hover img {
  transform: scale(1.04);
}

.screens-slider {
  display: none;
  overflow: hidden;
  position: relative;
}
.screens-slider-track {
  display: flex;
  transition: transform 0.35s ease;
}
.screens-slider-track .screen-item {
  min-width: 88vw;
  max-width: 88vw;
  flex-shrink: 0;
}
.slider-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 14px;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clr-text-muted);
  border: none;
  cursor: pointer;
  transition:
    background var(--transition),
    transform var(--transition);
}
.slider-dot.active {
  background: var(--clr-gold);
  transform: scale(1.3);
}

.demo-wrap {
  border-radius: var(--radius-lg);
  border: 2px solid var(--clr-border);
  background: #000;
  box-shadow: var(--shadow-card);
}
.demo-top-bar {
  background: var(--clr-header);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.demo-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--clr-gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.demo-actions {
  display: flex;
  gap: 8px;
}
.demo-iframe-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #0a0604;
}
.demo-iframe-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.demo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: linear-gradient(135deg, #0a0604 0%, #1a0e0b 100%);
  cursor: pointer;
}
.demo-placeholder-logo img {
  height: 80px;
  filter: drop-shadow(0 4px 16px rgba(216, 143, 22, 0.4));
}
.demo-placeholder-text {
  font-size: 17px;
  font-weight: 700;
  color: var(--clr-text-muted);
}
.demo-info {
  background: var(--clr-header);
  padding: 14px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.demo-info-item {
  font-size: 12px;
  color: var(--clr-text-muted);
}
.demo-info-item strong {
  color: var(--clr-text);
}

/* ====== PROS CONS ====== */
.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.pros-block {
  background: rgba(56, 171, 126, 0.07);
  border: 1px solid rgba(56, 171, 126, 0.25);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.cons-block {
  background: rgba(200, 40, 40, 0.07);
  border: 1px solid rgba(200, 40, 40, 0.2);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.pc-title {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pros-block .pc-title {
  color: var(--clr-btn-sec);
}
.cons-block .pc-title {
  color: #e55;
}
.pc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pc-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--clr-text-muted);
  line-height: 1.5;
}
.pc-list li::before {
  content: "";
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  margin-top: 1px;
  background-size: contain;
}
.pros-block .pc-list li::before {
  background: radial-gradient(circle, var(--clr-btn-sec) 60%, transparent 60%);
}
.cons-block .pc-list li::before {
  background: radial-gradient(circle, #e55 60%, transparent 60%);
}

/* ====== WINNERS TABLE ====== */
.winners-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--clr-border);
}
.winners-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 500px;
}
.winners-table thead tr {
  background: var(--clr-header);
}
.winners-table th {
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 700;
  color: var(--clr-gold);
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 2px solid var(--clr-border);
}
.winners-table td {
  padding: 11px 16px;
  font-size: 14px;
  color: var(--clr-text);
  border-bottom: 1px solid var(--clr-border-light);
}
.winners-table tbody tr:hover {
  background: rgba(216, 143, 22, 0.06);
}
.winners-table tbody tr:last-child td {
  border-bottom: none;
}
.rank-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
}
.rank-1 {
  background: linear-gradient(135deg, #f5c842, #d88f16);
  color: #1a0e00;
}
.rank-2 {
  background: linear-gradient(135deg, #c8c8c8, #888);
  color: #1a1a1a;
}
.rank-3 {
  background: linear-gradient(135deg, #cd7f32, #8b4513);
  color: #fff;
}
.rank-n {
  background: rgba(255, 255, 255, 0.08);
  color: var(--clr-text-muted);
}
.winner-nick {
  font-weight: 600;
  color: var(--clr-text);
}
.winner-amount {
  font-weight: 700;
  color: var(--clr-gold-light);
}
.winner-time {
  color: var(--clr-text-muted);
  font-size: 12px;
}

/* ====== JACKPOTS ====== */
.jackpots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.jackpot-card {
  border-radius: var(--radius-lg);
  padding: 24px 20px 20px;
  border: 1px solid;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.jackpot-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}
.jackpot-bronze {
  background: linear-gradient(160deg, #1e1208 0%, #12090400 100%);
  border-color: rgba(205, 127, 50, 0.4);
}
.jackpot-bronze::before {
  background: linear-gradient(90deg, #cd7f32, #8b4513);
}
.jackpot-silver {
  background: linear-gradient(160deg, #151520 0%, #12090400 100%);
  border-color: rgba(192, 192, 192, 0.35);
}
.jackpot-silver::before {
  background: linear-gradient(90deg, #c8c8c8, #888);
}
.jackpot-gold {
  background: linear-gradient(160deg, #1e1408 0%, #12090400 100%);
  border-color: rgba(245, 200, 66, 0.45);
}
.jackpot-gold::before {
  background: linear-gradient(90deg, var(--clr-gold-light), var(--clr-gold));
}
.jackpot-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.jackpot-bronze .jackpot-label {
  color: #cd7f32;
}
.jackpot-silver .jackpot-label {
  color: #c8c8c8;
}
.jackpot-gold .jackpot-label {
  color: var(--clr-gold-light);
}
.jackpot-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--clr-text);
  margin-bottom: 12px;
}
.jackpot-amount {
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 16px;
  font-variant-numeric: tabular-nums;
}
.jackpot-bronze .jackpot-amount {
  color: #e8a040;
}
.jackpot-silver .jackpot-amount {
  color: #d0d0d0;
}
.jackpot-gold .jackpot-amount {
  color: var(--clr-gold-light);
}
.jackpot-players {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.jackpot-player {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
}
.jackpot-player .jp-nick {
  color: var(--clr-text-muted);
}
.jackpot-player .jp-win {
  font-weight: 700;
}
.jackpot-bronze .jp-win {
  color: #e8a040;
}
.jackpot-silver .jp-win {
  color: #c8c8c8;
}
.jackpot-gold .jp-win {
  color: var(--clr-gold-light);
}

/* ====== CONTENT (review) ====== */
.review-section {
  padding: 40px 0;
}
.content-block {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
}
.content-block h2 {
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 800;
  color: var(--clr-gold-light);
  margin: 28px 0 12px;
  line-height: 1.25;
}
.content-block h2:first-child {
  margin-top: 0;
}
.content-block h3 {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 700;
  color: var(--clr-text);
  margin: 22px 0 10px;
}
.content-block h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--clr-gold);
  margin: 18px 0 8px;
}
.content-block p {
  font-size: 15px;
  color: var(--clr-text-muted);
  line-height: 1.7;
  margin-bottom: 14px;
}
.content-block p:last-child {
  margin-bottom: 0;
}
.content-block ul,
.content-block ol {
  padding-left: 20px;
  margin-bottom: 14px;
}
.content-block li {
  font-size: 15px;
  color: var(--clr-text-muted);
  line-height: 1.65;
  margin-bottom: 6px;
}
.content-block strong {
  color: var(--clr-text);
  font-weight: 700;
}
.content-block em {
  color: var(--clr-gold);
  font-style: italic;
}
.content-block a {
  color: var(--clr-btn-sec);
  text-decoration: underline;
}
.content-block a:hover {
  color: var(--clr-gold-light);
}
.content-block table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
}
.content-block table th,
.content-block table td {
  padding: 10px 14px;
  border: 1px solid var(--clr-border);
  font-size: 14px;
  text-align: left;
}
.content-block table th {
  background: var(--clr-header);
  color: var(--clr-gold);
  font-weight: 700;
}
.content-block table td {
  color: var(--clr-text-muted);
}
.content-block table tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.03);
}
.content-block blockquote {
  border-left: 3px solid var(--clr-gold);
  padding: 12px 18px;
  margin: 16px 0;
  background: rgba(216, 143, 22, 0.07);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--clr-text-muted);
}
.content-block hr {
  border: none;
  border-top: 1px solid var(--clr-border-light);
  margin: 20px 0;
}

/* ====== GAME INFO TABLE ====== */
.game-info-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin: 24px auto 0;
  border: 1px solid var(--clr-border);
  max-width: 680px;
}
.game-info-table tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.025);
}
.game-info-table td {
  padding: 10px 18px;
  font-size: 14px;
  border-bottom: 1px solid var(--clr-border-light);
}
.game-info-table td:first-child {
  color: var(--clr-text-muted);
  width: 45%;
}
.game-info-table td:last-child {
  color: var(--clr-text);
  font-weight: 600;
}
.game-info-table tr:last-child td {
  border-bottom: none;
}

/* ====== FOOTER ====== */
.site-footer {
  background: var(--clr-header);
  border-top: 2px solid rgba(216, 143, 22, 0.2);
  padding: 48px 0 0;
  margin-top: auto;
}
.footer-inner {
  display: grid;
  grid-template-columns: 260px 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--clr-border-light);
}
.footer-logo img {
  height: 48px;
  margin-bottom: 12px;
}
.footer-desc {
  font-size: 13px;
  color: var(--clr-text-muted);
  line-height: 1.65;
  margin-bottom: 14px;
}
.footer-email {
  font-size: 13px;
  color: var(--clr-btn-sec);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-email svg {
  width: 14px;
  height: 14px;
}

.footer-heading {
  font-size: 13px;
  font-weight: 700;
  color: var(--clr-text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a {
  font-size: 13px;
  color: var(--clr-text-muted);
  transition: color var(--transition);
}
.footer-nav a:hover {
  color: var(--clr-gold-light);
}

.footer-bottom-row {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-logos-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}
.footer-logo-item {
  height: 28px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(0.5);
  transition: filter var(--transition);
}
.footer-logo-item:hover {
  filter: brightness(0) invert(0.8);
}

.footer-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 600;
  color: var(--clr-text-muted);
}
.trust-badge-age {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #c00;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-socials {
  display: flex;
  gap: 10px;
}
.footer-social {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--clr-border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background var(--transition),
    border-color var(--transition);
  color: var(--clr-text-muted);
}
.footer-social:hover {
  background: rgba(216, 143, 22, 0.15);
  border-color: var(--clr-border);
  color: var(--clr-gold-light);
}
.footer-social svg {
  width: 16px;
  height: 16px;
}

.footer-country {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--clr-text-muted);
}
.flag-au {
  font-size: 20px;
}

.footer-legal {
  background: rgba(0, 0, 0, 0.25);
  padding: 16px 0;
  margin-top: 4px;
}
.footer-legal p {
  font-size: 11px;
  color: rgba(184, 168, 138, 0.55);
  line-height: 1.7;
  text-align: center;
}
.footer-copyright {
  padding: 14px 0 6px;
  text-align: center;
  font-size: 12px;
  color: rgba(184, 168, 138, 0.45);
}

.sticky-widget {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 300;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  pointer-events: none;
}
.widget-card {
  background: var(--clr-header);
  border: 2px solid var(--clr-gold);
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  box-shadow:
    0 8px 40px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(216, 143, 22, 0.1);
  pointer-events: all;
  min-width: 170px;
  animation: widgetPulse 3s ease-in-out infinite;
}
@keyframes widgetPulse {
  0%,
  100% {
    box-shadow:
      0 8px 40px rgba(0, 0, 0, 0.6),
      0 0 0 1px rgba(216, 143, 22, 0.1);
  }
  50% {
    box-shadow:
      0 8px 40px rgba(0, 0, 0, 0.6),
      0 0 16px rgba(216, 143, 22, 0.3);
  }
}
.widget-logo img {
  height: 40px;
}
.widget-bonus {
  font-size: 11px;
  color: var(--clr-text-muted);
  text-align: center;
  line-height: 1.4;
}
.widget-bonus strong {
  color: var(--clr-gold-light);
  font-size: 13px;
  display: block;
}
.widget-close {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #333;
  border: 1px solid #555;
  color: #aaa;
  font-size: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
}
.widget-card {
  position: relative;
}
.widget-close:hover {
  background: #c00;
  border-color: #c00;
  color: #fff;
}

/* ====== BREADCRUMBS ====== */
.breadcrumbs {
  padding: 12px 0;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  list-style: none;
}
.breadcrumbs li {
  font-size: 13px;
  color: var(--clr-text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}
.breadcrumbs li:not(:last-child)::after {
  content: "/";
  color: rgba(184, 168, 138, 0.4);
}
.breadcrumbs a {
  color: var(--clr-btn-sec);
}

/* ====== PAGE (info) ====== */
.page-content {
  padding: 48px 0 64px;
}
.page-content .content-box {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
}
.page-content h1 {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 900;
  color: var(--clr-gold-light);
  margin-bottom: 24px;
}
.page-content h2 {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
  color: var(--clr-text);
  margin: 24px 0 10px;
}
.page-content h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--clr-gold);
  margin: 18px 0 8px;
}
.page-content p {
  font-size: 15px;
  color: var(--clr-text-muted);
  line-height: 1.7;
  margin-bottom: 14px;
}
.page-content ul,
.page-content ol {
  padding-left: 22px;
  margin-bottom: 14px;
}
.page-content li {
  font-size: 15px;
  color: var(--clr-text-muted);
  line-height: 1.65;
  margin-bottom: 6px;
}
.page-content a {
  color: var(--clr-btn-sec);
}
.page-content strong {
  color: var(--clr-text);
}

/* ====== TRANSITIONS / ANIMATIONS ====== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes countUp {
  from {
    opacity: 0;
    transform: scale(0.85);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.fade-in-up {
  animation: fadeInUp 0.55s ease both;
}
.fade-in {
  animation: fadeIn 0.4s ease both;
}

.spec-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.spec-pill {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--clr-border-light);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 12px;
  color: var(--clr-text-muted);
}
.spec-pill strong {
  color: var(--clr-gold);
}

.x-wp-block {
  display: none;
}
.elementor-hidden {
  visibility: hidden;
  height: 0;
  overflow: hidden;
}
.wp-term-cloud-wrap {
  opacity: 0;
  pointer-events: none;
  position: absolute;
}
.wc-block-placeholder {
  display: none;
}
.x-post-meta-inner {
  position: absolute;
  clip: rect(0, 0, 0, 0);
}

@media (max-width: 1024px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 900px) {
  .header-nav {
    display: none;
  }
  .burger {
    display: flex;
  }
  .header-inner {
    grid-template-columns: auto 1fr auto;
  }
  .winner-ticker {
    display: none;
  }
  .jackpots-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}
@media (max-width: 768px) {
  .author-block {
    grid-template-columns: 1fr;
  }
  .author-avatar {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .pros-cons-grid {
    grid-template-columns: 1fr;
  }
  .screens-grid {
    display: none;
  }
  .screens-slider {
    display: block;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 28px;
  }
  .hero {
    min-height: 420px;
  }
  .hero-bg::after {
    background: linear-gradient(
      180deg,
      rgba(21, 7, 2, 0.75) 0%,
      rgba(117, 10, 2, 0.88) 100%
    );
  }
  .section {
    padding: 40px 0;
  }
  .content-block {
    padding: 24px 20px;
  }
  .page-content .content-box {
    padding: 24px 20px;
  }
  .jackpot-card {
    padding: 18px 14px 16px;
  }
  .sticky-widget {
    bottom: 16px;
    right: 12px;
  }
  .widget-card {
    min-width: 150px;
    padding: 12px 14px;
  }
}
@media (max-width: 480px) {
  .header-actions .btn--play,
  .header-actions .btn--sec {
    padding: 8px 14px;
    font-size: 13px;
  }
  .hero-title {
    font-size: 28px;
  }
  .hero-cta {
    flex-direction: column;
  }
  .hero-badges {
    gap: 8px;
  }
  .hero-badge {
    padding: 6px 10px;
  }
  .demo-info {
    gap: 10px;
  }
  .footer-trust {
    gap: 8px;
  }
}

/* ChatGPT fixes */
footer img,
footer .payment img,
footer .payments img {
  max-height: 32px !important;
  width: auto !important;
  object-fit: contain !important;
}
footer .cards,
footer .payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.content table,
.content-block table,
article table {
  background: #1a1a1a !important;
}
.content table th,
.content table td,
.content-block table th,
.content-block table td,
article table th,
article table td {
  background: #222 !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
  color: inherit;
}

/* ===== Final visual fix: real footer logos + unified dark panels ===== */
.footer-logos-row {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 12px !important;
}

.footer-logos-row .footer-logo-item,
.site-footer .footer-logo-item {
  display: block !important;
  width: auto !important;
  max-width: 112px !important;
  height: 34px !important;
  max-height: 34px !important;
  padding: 0 !important;
  margin: 0 !important;
  object-fit: contain !important;
  object-position: center !important;
  background: transparent !important;
  filter: none !important;
  opacity: 1 !important;
  border: 0 !important;
  border-radius: 0 !important;
}

/* The provider logo also needs its original colours. */
.site-footer img[src*="ha.png"] {
  width: auto !important;
  max-width: 160px !important;
  height: 32px !important;
  max-height: 32px !important;
  filter: none !important;
  opacity: 1 !important;
  object-fit: contain !important;
}

/* Unified dark surface for visible content blocks. */
.content-section,
.content-block,
.content-review,
.article-content,
.review-content,
.info-block,
.info-card,
.section-card,
.card,
.feature-card,
.bonus-card,
.jackpot-card,
.winner-card,
.review-card,
.faq,
.faq-block,
.faq-list,
.faq-item,
.game-info,
.game-info-wrap,
.game-info-table-wrap,
.table-wrap,
.table-responsive,
.author-box,
.demo-box,
.screen-item,
article > section,
main article {
  background: var(--clr-bg-card) !important;
  border-color: var(--clr-border) !important;
}

/* Tables must not inherit the red page background. */
.game-info-table,
.content table,
.content-block table,
.content-review table,
.article-content table,
.review-content table,
article table,
main table {
  background: var(--clr-bg-card) !important;
  border-collapse: separate !important;
  border-spacing: 0 !important;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.game-info-table th,
.game-info-table td,
.content table th,
.content table td,
.content-block table th,
.content-block table td,
.content-review table th,
.content-review table td,
.article-content table th,
.article-content table td,
.review-content table th,
.review-content table td,
article table th,
article table td,
main table th,
main table td {
  background: var(--clr-bg-card) !important;
  color: var(--clr-text) !important;
  border-color: var(--clr-border-light) !important;
}

.game-info-table tr:nth-child(even) td,
.content table tr:nth-child(even) td,
.content-block table tr:nth-child(even) td,
.content-review table tr:nth-child(even) td,
article table tr:nth-child(even) td,
main table tr:nth-child(even) td {
  background: var(--clr-bg-card2) !important;
}

/* FAQ and text sections: same dark fill as the reference block. */
.faq-item,
.faq-question,
.faq-answer,
.faq-answer-inner {
  background: var(--clr-bg-card) !important;
}

@media (max-width: 768px) {
  .footer-logos-row {
    justify-content: center !important;
    gap: 10px !important;
  }

  .footer-logos-row .footer-logo-item {
    max-width: 86px !important;
    height: 28px !important;
    max-height: 28px !important;
  }
}

/* Unified technical/info pages: same site shell and visual language */
.wdaw-info-page {
  background: var(--bg, #0f0b0a);
  color: var(--text, #f4ede4);
}
.wdaw-info-page .info-main {
  min-height: 60vh;
}
.wdaw-info-page .info-hero {
  position: relative;
  overflow: hidden;
  padding: 42px 0 34px;
  background:
    linear-gradient(90deg, rgba(15, 11, 10, 0.98), rgba(28, 15, 12, 0.88)),
    radial-gradient(circle at 78% 20%, rgba(172, 31, 18, 0.22), transparent 42%);
  border-bottom: 1px solid rgba(191, 137, 88, 0.22);
}
.wdaw-info-page .info-hero-inner {
  max-width: 920px;
}
.wdaw-info-page .info-kicker {
  margin: 18px 0 8px;
  color: #d7a66b;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.wdaw-info-page .info-hero h1 {
  margin: 0;
  color: #fff8ee;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.wdaw-info-page .info-lead {
  max-width: 720px;
  margin: 16px 0 0;
  color: #c7b6a5;
  font-size: 18px;
  line-height: 1.7;
}
.wdaw-info-page .info-content-section {
  padding: 42px 0 64px;
}
.wdaw-info-page .info-content-card {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 54px);
  border: 1px solid rgba(191, 137, 88, 0.28);
  border-radius: 24px;
  background: linear-gradient(145deg, #1d1210, #150e0d);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}
.wdaw-info-page .info-content-card h2,
.wdaw-info-page .info-content-card h3 {
  color: #fff3e4;
}
.wdaw-info-page .info-content-card p,
.wdaw-info-page .info-content-card li {
  color: #cdb9a4;
}
.wdaw-info-page .info-content-card a {
  color: #e7ad68;
}
.wdaw-info-page .info-content-card hr {
  border-color: rgba(191, 137, 88, 0.22);
}
.wdaw-info-page .info-content-card table {
  width: 100%;
  border-collapse: collapse;
  background: #1a1110;
}
.wdaw-info-page .info-content-card th,
.wdaw-info-page .info-content-card td {
  padding: 14px 16px;
  border: 1px solid rgba(191, 137, 88, 0.18);
  color: #d8c5b0;
  text-align: left;
}
.wdaw-info-page .info-content-card th {
  color: #fff3e4;
  background: #241613;
}
@media (max-width: 768px) {
  .wdaw-info-page .info-hero {
    padding: 28px 0 24px;
  }
  .wdaw-info-page .info-lead {
    font-size: 16px;
  }
  .wdaw-info-page .info-content-section {
    padding: 22px 0 42px;
  }
  .wdaw-info-page .info-content-card {
    border-radius: 16px;
  }
  .wdaw-info-page .info-content-card table {
    display: block;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

/* =========================================================
   Technical pages layout — matched to the reference website
   ========================================================= */
.page-info,
.page-info body {
  min-height: 100%;
}

.page-info body,
body.page-info {
  margin: 0;
  background:
    radial-gradient(circle at 15% 0%, rgba(176, 58, 34, 0.13), transparent 36%),
    linear-gradient(180deg, #120b09 0%, #0d0807 100%);
  color: #f7eadc;
}

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

.page-info #main-content {
  flex: 1 0 auto;
  width: 100%;
}

.page-info .info-section {
  padding: 0 0 64px;
  background: transparent;
}

.page-info .breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  padding: 18px 0 8px;
  font-size: 13px;
  line-height: 1.5;
  color: #876f5e;
}

.page-info .breadcrumb a {
  color: #b89a82;
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-info .breadcrumb a:hover {
  color: #e4a15f;
}

.page-info .breadcrumb > span:last-child {
  color: #d58b51;
}

.page-info .info-page {
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  padding: 42px 0 0;
}

.page-info .info-page > h1 {
  margin: 0 0 24px;
  color: #fff4e9;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.page-info .content-review {
  width: 100%;
  min-width: 0;
  padding: clamp(24px, 4vw, 42px);
  background: linear-gradient(
    145deg,
    rgba(34, 20, 17, 0.98),
    rgba(21, 13, 11, 0.98)
  );
  border: 1px solid rgba(191, 137, 88, 0.28);
  border-radius: 20px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
  color: #cdb9a4;
  line-height: 1.75;
  overflow: hidden;
}

.page-info .content-review h2 {
  margin: 32px 0 14px;
  color: #fff3e4;
  font-size: clamp(23px, 3vw, 30px);
  line-height: 1.25;
  font-weight: 800;
}

.page-info .content-review h2:first-child {
  margin-top: 0;
}

.page-info .content-review h3 {
  margin: 26px 0 12px;
  color: #e0a05e;
  font-size: 21px;
  line-height: 1.3;
}

.page-info .content-review h4 {
  margin: 22px 0 10px;
  color: #ead8c5;
  font-size: 18px;
}

.page-info .content-review p,
.page-info .content-review li {
  color: #cdb9a4;
  font-size: 16px;
  overflow-wrap: anywhere;
}

.page-info .content-review p {
  margin: 0 0 16px;
}

.page-info .content-review ul,
.page-info .content-review ol {
  margin: 0 0 18px;
  padding-left: 24px;
}

.page-info .content-review li {
  margin: 0 0 8px;
}

.page-info .content-review li::marker {
  color: #d88f55;
}

.page-info .content-review strong,
.page-info .content-review b {
  color: #fff1e1;
}

.page-info .content-review a {
  color: #e0a05e;
  text-decoration: underline;
  text-decoration-color: rgba(224, 160, 94, 0.45);
  text-underline-offset: 3px;
}

.page-info .content-review a:hover {
  color: #ffc278;
}

.page-info .content-review hr {
  margin: 28px 0;
  border: 0;
  border-top: 1px solid rgba(191, 137, 88, 0.2);
}

.page-info .content-review blockquote {
  margin: 20px 0;
  padding: 16px 20px;
  border-left: 3px solid #d88f55;
  border-radius: 0 10px 10px 0;
  background: rgba(216, 143, 85, 0.07);
  color: #ddc6af;
}

.page-info .content-review img,
.page-info .content-review video,
.page-info .content-review iframe {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 18px auto;
  border-radius: 12px;
}

.page-info .content-review table {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 20px 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-collapse: collapse;
  border-spacing: 0;
  scrollbar-width: thin;
  scrollbar-color: #9d633f #1b110e;
}

.page-info .content-review table th,
.page-info .content-review table td {
  min-width: 150px;
  padding: 12px 14px;
  border: 1px solid rgba(191, 137, 88, 0.22);
  text-align: left;
  vertical-align: top;
  white-space: normal;
  overflow-wrap: anywhere;
}

.page-info .content-review table th {
  background: #2a1915;
  color: #f2bd81;
  font-weight: 700;
}

.page-info .content-review table td {
  background: #17100e;
  color: #ccb7a3;
}

.page-info .content-review pre {
  max-width: 100%;
  overflow-x: auto;
  padding: 16px;
  border-radius: 10px;
  background: #160e0c;
}

.page-info .content-review code {
  overflow-wrap: anywhere;
}

@media (max-width: 768px) {
  .page-info .info-section {
    padding-bottom: 38px;
  }

  .page-info .breadcrumb {
    padding-top: 12px;
    font-size: 12px;
  }

  .page-info .info-page {
    padding-top: 24px;
  }

  .page-info .info-page > h1 {
    margin-bottom: 18px;
    font-size: clamp(30px, 9vw, 40px);
  }

  .page-info .content-review {
    padding: 22px 18px;
    border-radius: 15px;
  }

  .page-info .content-review h2 {
    margin-top: 26px;
    font-size: 24px;
  }

  .page-info .content-review p,
  .page-info .content-review li {
    font-size: 15px;
  }

  .page-info .content-review table {
    margin-left: 0;
    margin-right: 0;
  }
}
