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

:root {
  --clr-header: #401b00;
  --clr-header-dark: #2c1200;
  --clr-btn-primary: #32cd32;
  --clr-btn-secondary: #e44e04;
  --clr-bg: #d38400;
  --clr-bg-light: #e89b10;
  --clr-bg-dark: #b87200;
  --clr-gold: #ffd700;
  --clr-text-light: #fff8ee;
  --clr-text-dark: #1a0a00;
  --clr-text-muted: #c49b6a;
  --clr-card-bg: rgba(64, 27, 0, 0.82);
  --clr-card-border: rgba(255, 215, 0, 0.25);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Oswald", sans-serif;
  background-color: var(--clr-bg);
  color: var(--clr-text-light);
  line-height: 1.6;
  max-width: 100%;
}

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

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

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

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

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

.section-gap {
  margin-bottom: 32px;
}

.gc-x7f2a {
  display: none;
  visibility: hidden;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: 50px;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    filter var(--transition);
  text-transform: uppercase;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  filter: brightness(1.1);
}
.btn:active {
  transform: translateY(0);
}

.btn--green {
  background: linear-gradient(135deg, #32cd32, #28a428);
  color: #fff;
}
.btn--orange {
  background: linear-gradient(135deg, #e44e04, #c43800);
  color: #fff;
}
.btn--gold {
  background: linear-gradient(135deg, #ffd700, #e6a800);
  color: #1a0a00;
}
.btn--outline {
  background: transparent;
  border: 2px solid var(--clr-gold);
  color: var(--clr-gold);
}
.btn--sm {
  padding: 7px 16px;
  font-size: 0.82rem;
}
.btn--lg {
  padding: 14px 32px;
  font-size: 1.1rem;
}
.btn--pulse {
  animation: pulse-btn 2s infinite;
}

@keyframes pulse-btn {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(50, 205, 50, 0.5);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(50, 205, 50, 0);
  }
}

.site-header {
  background: var(--clr-header);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
}

.header-logo img {
  height: 64px;
  width: auto;
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-wrap: wrap;
}

.header-nav a {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--clr-text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition:
    color var(--transition),
    background var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.header-nav a svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}
.header-nav a:hover {
  color: var(--clr-gold);
  background: rgba(255, 215, 0, 0.08);
}

.header-buttons {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
}

.winner-ticker {
  background: rgba(255, 215, 0, 0.12);
  border: 1px solid rgba(255, 215, 0, 0.25);
  border-radius: 50px;
  padding: 4px 14px;
  font-size: 0.8rem;
  color: var(--clr-gold);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  overflow: hidden;
  max-width: 260px;
}

.winner-ticker__dot {
  width: 7px;
  height: 7px;
  background: #32cd32;
  border-radius: 50%;
  flex-shrink: 0;
  animation: blink 1.2s infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
}

.winner-ticker__text {
  overflow: hidden;
  text-overflow: ellipsis;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: transparent;
  border: none;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-text-light);
  border-radius: 2px;
  transition:
    transform 0.3s,
    opacity 0.3s;
}

.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);
}

.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--clr-header-dark);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("/goban.webp");
  background-size: cover;
  background-position: center top;
  opacity: 0.55;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(64, 27, 0, 0.92) 40%,
    rgba(64, 27, 0, 0.3) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 580px;
  padding: 60px 0;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 215, 0, 0.15);
  border: 1px solid rgba(255, 215, 0, 0.4);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 0.8rem;
  color: var(--clr-gold);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero__title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 14px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.hero__title span {
  color: var(--clr-gold);
}

.hero__desc {
  font-size: 1.05rem;
  color: var(--clr-text-muted);
  margin-bottom: 26px;
  line-height: 1.6;
  font-weight: 300;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero__rating {
  display: flex;
  align-items: center;
  gap: 10px;
}

.stars {
  display: flex;
  gap: 2px;
  color: var(--clr-gold);
  font-size: 1.1rem;
}

.rating-text {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
}

.rating-text strong {
  color: #fff;
}

.main-content {
  padding: 32px 0;
  flex: 1;
}

.card {
  background: var(--clr-card-bg);
  border: 1px solid var(--clr-card-border);
  border-radius: var(--radius-md);
  padding: 24px;
  backdrop-filter: blur(4px);
}

.card--rounded {
  border-radius: var(--radius-lg);
}

.card--gold-border {
  border-color: rgba(255, 215, 0, 0.45);
}

.section-title {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 700;
  color: var(--clr-gold);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title small {
  display: block;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--clr-text-muted);
  letter-spacing: 0;
  text-transform: none;
  margin-top: 3px;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
  margin: 22px 0;
}

.info-tile {
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: var(--radius-sm);
  padding: 16px 14px;
  text-align: center;
  transition:
    transform var(--transition),
    border-color var(--transition);
}

.info-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 215, 0, 0.5);
}

.info-tile__icon {
  font-size: 1.6rem;
  margin-bottom: 6px;
}
.info-tile__label {
  font-size: 0.75rem;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 3px;
}
.info-tile__value {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}

.intro-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.author-block {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 18px;
  align-items: start;
  margin: 32px 0;
}

.author-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid var(--clr-gold);
  object-fit: cover;
  flex-shrink: 0;
}

.author-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-gold);
}
.author-title {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  margin-bottom: 4px;
}
.author-location {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 8px;
}
.author-bio {
  font-size: 0.9rem;
  color: var(--clr-text-light);
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 10px;
}

.author-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  margin-bottom: 10px;
}
.author-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.author-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.author-links a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.25);
  border-radius: 50px;
  padding: 4px 12px;
  font-size: 0.8rem;
  color: var(--clr-gold);
  transition: background var(--transition);
}
.author-links a:hover {
  background: rgba(255, 215, 0, 0.2);
}

.video-block {
  margin: 32px 0;
}
.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--clr-card-border);
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.demo-area {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 20px;
  margin: 32px 0;
  align-items: start;
}

.demo-wrap {
  position: relative;
  border-radius: var(--radius-md);
  border: 2px solid rgba(255, 215, 0, 0.35);
  background: #000;
}

.demo-wrap iframe {
  width: 100%;
  height: 480px;
  border: none;
  display: block;
  touch-action: auto;
  pointer-events: auto;
  -webkit-overflow-scrolling: touch;
}

.demo-overlay-btn {
  position: absolute;
  bottom: 16px;
  right: 16px;
  z-index: 5;
}

.game-details-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.game-details-table tr {
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
  transition: background var(--transition);
}
.game-details-table tr:hover {
  background: rgba(255, 215, 0, 0.05);
}
.game-details-table td {
  padding: 9px 12px;
  vertical-align: middle;
}
.game-details-table td:first-child {
  color: var(--clr-text-muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  width: 48%;
}
.game-details-table td:last-child {
  color: #fff;
  font-weight: 500;
}

.gdt-icon {
  margin-right: 7px;
  opacity: 0.8;
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 32px 0;
}

.pros-cons__col {
}
.pros-cons__title {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.pros-cons__title--green {
  color: #32cd32;
}
.pros-cons__title--red {
  color: #ff5555;
}

.pros-cons__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pros-cons__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--clr-text-light);
  line-height: 1.5;
  font-weight: 300;
}
.pros-cons__list li::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 1px;
}
.pros-list li::before {
  background: rgba(50, 205, 50, 0.2);
  border: 2px solid #32cd32;
}
.cons-list li::before {
  background: rgba(255, 85, 85, 0.2);
  border: 2px solid #ff5555;
}

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

.feature-tile {
  background: rgba(64, 27, 0, 0.7);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  text-align: center;
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.feature-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 215, 0, 0.5);
  box-shadow: var(--shadow);
}
.feature-tile__icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 12px;
}
.feature-tile__title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--clr-gold);
  margin-bottom: 6px;
}
.feature-tile__desc {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  line-height: 1.5;
  font-weight: 300;
}

.jackpot-block {
  margin: 32px 0;
}

.jackpot-levels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 20px;
}

.jackpot-card {
  border-radius: var(--radius-lg);
  padding: 24px 18px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.jackpot-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.jackpot-card--bronze {
  background: linear-gradient(145deg, #3d1a00, #5c2800);
  border: 1px solid #cd7f32;
}
.jackpot-card--silver {
  background: linear-gradient(145deg, #1e1e2a, #2c2c3e);
  border: 1px solid #aaa;
}
.jackpot-card--gold {
  background: linear-gradient(145deg, #3d2a00, #6b4a00);
  border: 1px solid var(--clr-gold);
}

.jackpot-card__badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
}

.jackpot-card--bronze .jackpot-card__badge {
  background: rgba(205, 127, 50, 0.2);
  color: #cd7f32;
}
.jackpot-card--silver .jackpot-card__badge {
  background: rgba(170, 170, 170, 0.2);
  color: #ccc;
}
.jackpot-card--gold .jackpot-card__badge {
  background: rgba(255, 215, 0, 0.15);
  color: var(--clr-gold);
}

.jackpot-card__amount {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 6px;
  transition: color 0.5s;
}

.jackpot-card--bronze .jackpot-card__amount {
  color: #cd7f32;
}
.jackpot-card--silver .jackpot-card__amount {
  color: #ccc;
}
.jackpot-card--gold .jackpot-card__amount {
  color: var(--clr-gold);
}

.jackpot-card__label {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  margin-bottom: 16px;
}

.jackpot-winners {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.jackpot-winner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 0.78rem;
}
.jackpot-winner__nick {
  color: var(--clr-gold);
  font-weight: 500;
}
.jackpot-winner__amount {
  color: #32cd32;
}

.content-block {
  margin: 32px 0;
}

.content-area {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--clr-text-light);
}

.content-area h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--clr-gold);
  margin: 28px 0 12px;
  text-transform: uppercase;
}
.content-area h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin: 22px 0 10px;
}
.content-area h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--clr-gold);
  margin: 16px 0 8px;
}
.content-area p {
  margin-bottom: 14px;
}
.content-area ul,
.content-area ol {
  padding-left: 24px;
  margin-bottom: 14px;
}
.content-area ul li {
  list-style: disc;
  margin-bottom: 6px;
}
.content-area ol li {
  list-style: decimal;
  margin-bottom: 6px;
}
.content-area a {
  color: var(--clr-btn-secondary);
}
.content-area strong {
  color: #fff;
  font-weight: 600;
}
.content-area em {
  color: var(--clr-text-muted);
  font-style: italic;
}
.content-area table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
}
.content-area table th {
  background: rgba(64, 27, 0, 0.9);
  color: var(--clr-gold);
  padding: 10px 12px;
  text-align: left;
  font-size: 0.85rem;
  text-transform: uppercase;
}
.content-area table td {
  padding: 9px 12px;
  border-bottom: 1px solid rgba(255, 215, 0, 0.12);
  text-align: left;
  color: var(--clr-text-light);
  font-size: 0.88rem;
}
.content-area table tr:hover td {
  background: rgba(255, 215, 0, 0.04);
}
.content-area blockquote {
  border-left: 3px solid var(--clr-gold);
  padding: 12px 16px;
  background: rgba(64, 27, 0, 0.5);
  margin: 18px 0;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--clr-text-muted);
}
.content-area img {
  border-radius: var(--radius-sm);
  margin: 14px 0;
}
.content-area hr {
  border: none;
  border-top: 1px solid rgba(255, 215, 0, 0.15);
  margin: 22px 0;
}

.site-footer {
  background: var(--clr-header-dark);
  border-top: 1px solid rgba(255, 215, 0, 0.12);
  padding: 40px 0 20px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 220px 1fr 220px;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-logo img {
  height: 38px;
  width: auto;
}
.footer-tagline {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  line-height: 1.5;
  font-weight: 300;
}

.footer-links-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--clr-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  transition: color var(--transition);
}
.footer-links a:hover {
  color: var(--clr-gold);
}

.footer-nav-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.footer-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 5px 10px;
  font-size: 0.75rem;
  color: var(--clr-text-muted);
  white-space: nowrap;
}

.footer-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.payment-badge {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 0.78rem;
  color: #ccc;
  font-weight: 600;
}

.footer-social {
  display: flex;
  gap: 10px;
}
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  transition:
    background var(--transition),
    border-color var(--transition);
}
.social-link:hover {
  background: rgba(255, 215, 0, 0.15);
  border-color: rgba(255, 215, 0, 0.4);
}
.social-link svg {
  width: 17px;
  height: 17px;
  fill: var(--clr-text-muted);
}
.social-link:hover svg {
  fill: var(--clr-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

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

.footer-copy {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
}

.footer-legal {
  font-size: 0.75rem;
  color: rgba(180, 140, 90, 0.65);
  line-height: 1.6;
  font-weight: 300;
  text-align: center;
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 2px solid #e44e04;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  color: #e44e04;
  flex-shrink: 0;
}

.float-widget {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: float-in 0.6s ease 1s both;
}

@keyframes float-in {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.float-widget__card {
  background: linear-gradient(145deg, #3d1a00, #5a2800);
  border: 1px solid rgba(255, 215, 0, 0.45);
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  min-width: 160px;
  text-align: center;
}

.float-widget__logo {
  height: 32px;
  width: auto;
}
.float-widget__bonus {
  font-size: 0.78rem;
  color: var(--clr-gold);
  font-weight: 600;
}
.float-widget__close {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 20px;
  height: 20px;
  background: #401b00;
  border: 1px solid rgba(255, 215, 0, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.65rem;
  color: var(--clr-text-muted);
}

.float-widget__card {
  position: relative;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .demo-area {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .footer-inner > :first-child {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
  }
  .header-nav {
    display: none;
    position: fixed;
    inset: 0;
    top: 64px;
    background: var(--clr-header);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 16px;
    gap: 4px;
    z-index: 999;
    overflow-y: auto;
  }
  .header-nav.open {
    display: flex;
  }
  .header-nav a {
    width: 100%;
    padding: 12px 14px;
    font-size: 1rem;
  }
  .burger {
    display: flex;
  }
  .winner-ticker {
    display: none;
  }
  .hero {
    min-height: 420px;
  }
  .hero__content {
    padding: 40px 0;
  }
  .intro-grid {
    grid-template-columns: 1fr 1fr;
  }
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
  .jackpot-levels {
    grid-template-columns: 1fr;
  }
  .pros-cons {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .footer-inner > :first-child {
    grid-column: auto;
  }
  .footer-nav-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .footer-bottom-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .demo-wrap {
    -webkit-overflow-scrolling: touch;
    overflow: auto;
  }
  .demo-wrap iframe {
    height: 340px;
    touch-action: auto;
    pointer-events: auto;
  }
  .author-block {
    grid-template-columns: 60px 1fr;
  }
  .author-photo {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 480px) {
  .intro-grid {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .hero__title {
    font-size: 1.7rem;
  }
  .demo-wrap iframe {
    height: 280px;
    touch-action: auto;
    pointer-events: auto;
  }
  .header-buttons .btn--outline {
    display: none;
  }
}

.wp-block-hidden {
  display: none !important;
}
.elementor-hidden {
  visibility: hidden;
  height: 0;
  overflow: hidden;
}
.wp-nonce-field {
  display: none;
}

input[type="hidden"].wp-uid {
  display: none;
}

.gcx-91fb {
  width: 0;
  height: 0;
  overflow: hidden;
  position: absolute;
}
.q7r2-placeholder {
  display: none;
}

table.gc-table {
  width: 100%;
  max-width: 900px;
  margin: 18px auto;
  border-collapse: collapse;
  background: rgba(64, 27, 0, 0.7);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--clr-card-border);
}
table.gc-table th {
  background: rgba(255, 215, 0, 0.12);
  color: var(--clr-gold);
  padding: 11px 14px;
  text-align: left;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
table.gc-table td {
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255, 215, 0, 0.08);
  color: var(--clr-text-light);
  font-size: 0.88rem;
  vertical-align: middle;
}
table.gc-table tr:last-child td {
  border-bottom: none;
}
table.gc-table tr:hover td {
  background: rgba(255, 215, 0, 0.04);
}

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

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  padding: 10px 0;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: var(--clr-text-muted);
}
.breadcrumb a:hover {
  color: var(--clr-gold);
}
.breadcrumb__sep {
  color: rgba(255, 215, 0, 0.3);
}
.breadcrumb__current {
  color: var(--clr-gold);
}

.info-page-content {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--clr-text-light);
}
.info-page-content h1 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--clr-gold);
  margin-bottom: 18px;
  text-transform: uppercase;
}
.info-page-content h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--clr-gold);
  margin: 24px 0 10px;
}
.info-page-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin: 18px 0 8px;
}
.info-page-content p {
  margin-bottom: 12px;
}
.info-page-content ul {
  padding-left: 22px;
  margin-bottom: 12px;
}
.info-page-content li {
  margin-bottom: 6px;
  list-style: disc;
}
.info-page-content a {
  color: var(--clr-btn-secondary);
}

.faq-block {
  margin: 32px 0;
}
.faq-item {
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  gap: 12px;
  user-select: none;
}
.faq-question:hover {
  color: var(--clr-gold);
}
.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}
.faq-answer {
  display: none;
  padding: 0 0 14px;
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  line-height: 1.65;
  font-weight: 300;
}
.faq-item.open .faq-answer {
  display: block;
}
