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

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --gc-header: #401b00;
  --gc-footer: #2e1200;
  --gc-bg: #d38400;
  --gc-btn-red: #e44e04;
  --gc-btn-green: #32cd32;
  --gc-text: #fff8ee;
  --gc-text-dark: #1a0900;
  --gc-accent: #ffd700;
  --gc-card-bg: #3d1a00;
  --gc-card-bg2: #4a2200;
  --gc-border: #7a3c00;
  --gc-radius: 10px;
  --gc-radius-lg: 18px;
  --font-main: "Oswald", sans-serif;
}
html {
  scroll-behavior: smooth;
  background: #c47800;
}
body {
  font-family: var(--font-main);
  background: linear-gradient(160deg, #d38400 0%, #b87200 60%, #a06200 100%);
  color: var(--gc-text);
  min-height: 100vh;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--gc-accent);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: #ffe066;
}
.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.container--wide {
  max-width: 1400px;
}

.site-header {
  background: var(--gc-header);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 16px;
  max-width: 1200px;
  margin: 0 auto;
}
.header-logo img {
  height: 68px;
  width: auto;
  object-fit: contain;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  justify-content: center;
}
.header-nav a {
  color: var(--gc-text);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition:
    background 0.2s,
    color 0.2s;
  white-space: nowrap;
}
.header-nav a:hover {
  background: rgba(255, 215, 0, 0.15);
  color: var(--gc-accent);
}
.header-nav a svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.header-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.lang-picker {
  position: relative;
  display: inline-block;
}
.lang-picker select {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--gc-text);
  padding: 6px 10px;
  border-radius: 6px;
  font-family: var(--font-main);
  font-size: 0.85rem;
  cursor: pointer;
  outline: none;
}
.lang-picker select option {
  background: #401b00;
  color: #fff;
}
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.burger span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--gc-text);
  border-radius: 3px;
  transition:
    transform 0.3s,
    opacity 0.3s;
}
.burger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.mobile-cta {
  display: none;
  align-items: center;
  gap: 6px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 8px;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition:
    filter 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.03em;
}
.btn:hover {
  filter: brightness(1.12);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}
.btn:active {
  transform: translateY(0);
  filter: brightness(0.97);
}
.btn--green {
  background: linear-gradient(135deg, #32cd32, #28a428);
  color: #fff;
  box-shadow: 0 2px 10px rgba(50, 205, 50, 0.35);
}
.btn--red {
  background: linear-gradient(135deg, #e44e04, #c03800);
  color: #fff;
  box-shadow: 0 2px 10px rgba(228, 78, 4, 0.35);
}
.btn--gold {
  background: linear-gradient(135deg, #ffd700, #e6b800);
  color: #1a0900;
  box-shadow: 0 2px 10px rgba(255, 215, 0, 0.35);
}
.btn--outline {
  background: transparent;
  border: 2px solid var(--gc-accent);
  color: var(--gc-accent);
}
.btn--outline:hover {
  background: rgba(255, 215, 0, 0.1);
}
.btn--sm {
  padding: 7px 14px;
  font-size: 0.82rem;
}
.btn--lg {
  padding: 14px 30px;
  font-size: 1.1rem;
}
.btn--block {
  width: 100%;
}

.hero-section {
  padding: 36px 0 28px;
}
.hero-inner {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.hero-game {
  flex: 1 1 520px;
  min-width: 280px;
}
.hero-info {
  flex: 1 1 280px;
  min-width: 240px;
}
.game-frame-wrap {
  position: relative;
  background: #000;
  border-radius: var(--gc-radius-lg);
  overflow: hidden;
  box-shadow: 0 6px 40px rgba(0, 0, 0, 0.6);
  border: 2px solid var(--gc-accent);
}
.game-frame-wrap iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: none;
}
.game-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: linear-gradient(
    160deg,
    rgba(64, 27, 0, 0.92),
    rgba(26, 9, 0, 0.97)
  );
  backdrop-filter: blur(2px);
  transition: opacity 0.35s;
}
.game-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}
.game-overlay-logo {
  height: 70px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.5));
}
.game-overlay-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gc-accent);
  text-align: center;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
.game-overlay-sub {
  font-size: 0.95rem;
  color: #ffd98a;
  text-align: center;
  margin-top: -8px;
}
.game-btns {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}
.hero-info-card {
  background: linear-gradient(135deg, #4a2200, #3d1a00);
  border-radius: var(--gc-radius-lg);
  border: 1px solid var(--gc-border);
  padding: 24px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}
.hero-info-card h1 {
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--gc-accent);
  line-height: 1.2;
  margin-bottom: 8px;
}
.hero-info-card .hero-sub {
  font-size: 1rem;
  color: #ffd98a;
  margin-bottom: 18px;
  line-height: 1.5;
}
.game-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 18px;
}
.stat-item {
  background: rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 215, 0, 0.12);
}
.stat-item .stat-label {
  font-size: 0.72rem;
  color: #ffb87a;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.stat-item .stat-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gc-accent);
  margin-top: 2px;
}
.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.section {
  padding: 40px 0;
}
.section-title {
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--gc-accent);
  margin-bottom: 6px;
  line-height: 1.2;
}
.section-sub {
  font-size: 0.95rem;
  color: #ffd98a;
  margin-bottom: 24px;
}
.section-hd {
  margin-bottom: 24px;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.game-card {
  background: linear-gradient(160deg, #4a2200, #3d1a00);
  border-radius: var(--gc-radius);
  border: 1px solid var(--gc-border);
  overflow: hidden;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.game-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}
.game-card-thumb {
  position: relative;
  background: #2a1000;
  height: 140px;
  overflow: hidden;
}
.game-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.game-card-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(255, 215, 0, 0.9);
  color: #1a0900;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}
.game-card-body {
  padding: 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.game-card-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gc-accent);
}
.game-card-desc {
  font-size: 0.83rem;
  color: #ffd98a;
  line-height: 1.5;
  flex: 1;
}
.game-card-actions {
  display: flex;
  gap: 8px;
  margin-top: auto;
}

.bonuses-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.bonus-card {
  background: linear-gradient(160deg, #3d1a00, #2e1200);
  border-radius: var(--gc-radius-lg);
  border: 2px solid var(--gc-border);
  padding: 22px 20px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.bonus-card::before {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.1), transparent 70%);
  border-radius: 50%;
}
.bonus-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}
.bonus-card-badge {
  display: inline-block;
  background: linear-gradient(135deg, #e44e04, #c03800);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.bonus-card-casino {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.bonus-card-casino img {
  height: 34px;
  object-fit: contain;
  border-radius: 4px;
}
.bonus-card-casino-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gc-accent);
}
.bonus-amount {
  font-size: 1.7rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 4px;
}
.bonus-desc {
  font-size: 0.85rem;
  color: #ffd98a;
  margin-bottom: 14px;
  line-height: 1.5;
}
.bonus-tc {
  font-size: 0.72rem;
  color: #a07040;
  margin-top: 10px;
}

.casino-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}
.casino-item {
  background: linear-gradient(135deg, #4a2200, #3d1a00);
  border-radius: var(--gc-radius-lg);
  border: 1px solid var(--gc-border);
  padding: 18px 20px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  position: relative;
  transition: box-shadow 0.2s;
}
.casino-item:hover {
  box-shadow: 0 4px 24px rgba(255, 215, 0, 0.12);
}
.casino-item.top-3 {
  border-color: var(--gc-accent);
  box-shadow: 0 2px 18px rgba(255, 215, 0, 0.18);
}
.casino-rank {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gc-accent);
  min-width: 32px;
  text-align: center;
  padding-top: 4px;
  flex-shrink: 0;
}
.casino-rank.rank-1 {
  color: #ffd700;
}
.casino-rank.rank-2 {
  color: #c0c0c0;
}
.casino-rank.rank-3 {
  color: #cd7f32;
}
.casino-logo {
  width: 80px;
  height: 60px;
  object-fit: contain;
  border-radius: 8px;
  background: #2a1000;
  flex-shrink: 0;
  border: 1px solid rgba(255, 215, 0, 0.15);
}
.casino-body {
  flex: 1;
  min-width: 0;
}
.casino-name-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.casino-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gc-accent);
}
.casino-flag {
  font-size: 1.1rem;
}
.casino-country {
  font-size: 0.8rem;
  color: #ffd98a;
  background: rgba(0, 0, 0, 0.25);
  padding: 2px 8px;
  border-radius: 4px;
}
.casino-rating {
  display: flex;
  align-items: center;
  gap: 5px;
}
.casino-rating-stars {
  color: #ffd700;
  font-size: 1rem;
}
.casino-rating-num {
  font-weight: 700;
  font-size: 1rem;
  color: var(--gc-accent);
}
.casino-bonus-tag {
  background: linear-gradient(135deg, #32cd32, #28a428);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 8px;
}
.casino-pros {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 12px;
}
.casino-pro {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 0.83rem;
  color: #ffd98a;
  line-height: 1.4;
}
.casino-pro::before {
  content: "✓";
  color: #32cd32;
  font-weight: 700;
  flex-shrink: 0;
}
.casino-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
.casino-tc {
  font-size: 0.7rem;
  color: #a07040;
  margin-top: 6px;
}
.casino-18 {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  color: #a07040;
  padding: 2px 7px;
  border: 1px solid #7a3c00;
  border-radius: 4px;
}
.top-badge {
  position: absolute;
  top: 12px;
  right: 14px;
  background: linear-gradient(135deg, #ffd700, #e6b800);
  color: #1a0900;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.load-more-wrap {
  text-align: center;
  padding: 16px 0;
}

.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.pros-card,
.cons-card {
  border-radius: var(--gc-radius-lg);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pros-card {
  background: linear-gradient(135deg, #1a4d1a, #143c14);
  border: 1px solid #32cd32;
}
.cons-card {
  background: linear-gradient(135deg, #4d1a1a, #3c1414);
  border: 1px solid #e44e04;
}
.pros-cons-title {
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pros-card .pros-cons-title {
  color: #7fff7f;
}
.cons-card .pros-cons-title {
  color: #ff9966;
}
.pros-cons-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pros-cons-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.88rem;
  color: #ffd98a;
  line-height: 1.5;
}
.pros-cons-item .pc-icon {
  flex-shrink: 0;
  font-size: 1rem;
  margin-top: 1px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.feature-tile {
  background: linear-gradient(160deg, #4a2200, #3d1a00);
  border-radius: var(--gc-radius);
  border: 1px solid var(--gc-border);
  padding: 22px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.feature-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
}
.feature-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 50%;
  border: 2px solid rgba(255, 215, 0, 0.25);
}
.feature-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--gc-accent);
}
.feature-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gc-accent);
}
.feature-desc {
  font-size: 0.82rem;
  color: #ffd98a;
  line-height: 1.5;
}

.content-review {
  background: linear-gradient(160deg, #3d1a00, #2e1200);
  border-radius: var(--gc-radius-lg);
  border: 1px solid var(--gc-border);
  padding: 32px 36px;
}
.content-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--gc-border);
}
.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gc-accent), #e6b800);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a0900;
  flex-shrink: 0;
}
.author-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gc-accent);
}
.author-title {
  font-size: 0.8rem;
  color: #ffd98a;
}
.content-review h2,
.content-review h3,
.content-review h4 {
  color: var(--gc-accent);
  margin: 1.2em 0 0.5em;
  font-weight: 700;
  line-height: 1.25;
}
.content-review h2 {
  font-size: 1.35rem;
}
.content-review h3 {
  font-size: 1.15rem;
}
.content-review h4 {
  font-size: 1rem;
}
.content-review p {
  color: #ffd98a;
  line-height: 1.65;
  margin-bottom: 1em;
  font-size: 0.95rem;
}
.content-review ul,
.content-review ol {
  padding-left: 1.5em;
  margin-bottom: 1em;
  color: #ffd98a;
  font-size: 0.93rem;
  line-height: 1.65;
}
.content-review ul li {
  list-style: disc;
  margin-bottom: 0.4em;
}
.content-review ol li {
  list-style: decimal;
  margin-bottom: 0.4em;
}
.content-review table {
  width: auto;
  min-width: 60%;
  max-width: 100%;
  border-collapse: collapse;
  margin: 1.2em auto;
  border: 2px solid var(--gc-border);
}
.content-review table th {
  background: rgba(255, 215, 0, 0.15);
  color: var(--gc-accent);
  padding: 10px 16px;
  text-align: left;
  border: 1px solid var(--gc-border);
  font-size: 0.9rem;
}
.content-review table td {
  padding: 9px 16px;
  text-align: left;
  border: 1px solid var(--gc-border);
  color: #ffd98a;
  font-size: 0.88rem;
}
.content-review table tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.03);
}
.content-review strong {
  color: #fff;
  font-weight: 700;
}
.content-review a {
  color: var(--gc-accent);
  text-decoration: underline;
}
.content-review blockquote {
  border-left: 3px solid var(--gc-accent);
  padding-left: 16px;
  margin: 1em 0;
  color: #ffd98a;
  font-style: italic;
}

.site-footer {
  background: var(--gc-footer);
  padding: 36px 0 20px;
  margin-top: auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 32px;
  margin-bottom: 28px;
  align-items: start;
}
.footer-logo img {
  height: 44px;
  object-fit: contain;
  margin-bottom: 12px;
}
.footer-desc {
  font-size: 0.83rem;
  color: #c08050;
  line-height: 1.55;
}
.footer-nav-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gc-accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.footer-nav-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-nav-links a {
  font-size: 0.83rem;
  color: #c08050;
  transition: color 0.2s;
}
.footer-nav-links a:hover {
  color: var(--gc-accent);
}
.footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition:
    background 0.2s,
    border-color 0.2s;
}
.footer-social a:hover {
  background: rgba(255, 215, 0, 0.25);
  border-color: var(--gc-accent);
}
.footer-social a svg {
  width: 18px;
  height: 18px;
  fill: var(--gc-accent);
}
.footer-email {
  font-size: 0.83rem;
  color: #c08050;
  margin-top: 8px;
}
.footer-email a {
  color: var(--gc-accent);
}
.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
  margin: 16px 0;
}
.footer-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
  padding: 14px 0;
}
.footer-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 0.78rem;
  color: #c08050;
  border: 1px solid rgba(255, 255, 255, 0.07);
}
.footer-trust-item svg {
  width: 18px;
  height: 18px;
  fill: #c08050;
  flex-shrink: 0;
}
.footer-trust-item img {
  height: 22px;
  object-fit: contain;
  filter: grayscale(1) brightness(1.4);
}
.footer-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
}
.footer-payments img {
  height: 28px;
  object-fit: contain;
  filter: grayscale(0.4) brightness(0.9);
}
.footer-bottom {
  text-align: center;
  font-size: 0.78rem;
  color: #7a4a20;
  line-height: 1.65;
  padding-top: 12px;
}
.footer-bottom a {
  color: #a07040;
}
.footer-flag {
  font-size: 1.1rem;
  vertical-align: middle;
  margin-right: 4px;
}
.footer-legal {
  margin-top: 10px;
  font-size: 0.75rem;
  color: #5a3010;
  line-height: 1.6;
}

.sticky-widget {
  position: fixed;
  right: 16px;
  bottom: 24px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 280px;
  border-radius: var(--gc-radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
  border: 2px solid var(--gc-accent);
  transition: transform 0.3s;
}
.sticky-widget-header {
  background: linear-gradient(135deg, #ffd700, #e6b800);
  color: #1a0900;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.95rem;
}
.sticky-widget-header svg {
  width: 18px;
  height: 18px;
  fill: #1a0900;
  transition: transform 0.3s;
}
.sticky-widget.collapsed .sticky-widget-header svg {
  transform: rotate(180deg);
}
.sticky-widget-body {
  background: #2e1200;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-height: 320px;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.sticky-widget.collapsed .sticky-widget-body {
  max-height: 0;
}
.sw-casino {
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 10px;
}
.sw-casino:last-child {
  border-bottom: none;
}
.sw-rank {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gc-accent);
  min-width: 20px;
}
.sw-logo {
  width: 44px;
  height: 32px;
  object-fit: contain;
  border-radius: 4px;
  background: #1a0900;
}
.sw-info {
  flex: 1;
  min-width: 0;
}
.sw-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gc-accent);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sw-bonus {
  font-size: 0.72rem;
  color: #ffd98a;
}
.sw-btn {
  flex-shrink: 0;
}
.sw-close {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.3);
  border: none;
  color: #fff;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.8rem;
  line-height: 22px;
  text-align: center;
  display: none;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: #c08050;
  padding: 10px 0;
}
.breadcrumb a {
  color: var(--gc-accent);
}
.breadcrumb span {
  color: #7a4a20;
}

.mt1 {
  margin-top: 8px;
}
.mt2 {
  margin-top: 16px;
}
.mt3 {
  margin-top: 24px;
}
.mb1 {
  margin-bottom: 8px;
}
.mb2 {
  margin-bottom: 16px;
}
.mb3 {
  margin-bottom: 24px;
}
.text-center {
  text-align: center;
}
.text-gold {
  color: var(--gc-accent);
}
.text-green {
  color: var(--gc-btn-green);
}
.badge-new {
  background: linear-gradient(135deg, #32cd32, #28a428);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
  text-transform: uppercase;
}
.badge-hot {
  background: linear-gradient(135deg, #e44e04, #c03800);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
  text-transform: uppercase;
}
.divider {
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gc-border),
    transparent
  );
  margin: 32px 0;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
  }
  50% {
    box-shadow: 0 0 24px rgba(255, 215, 0, 0.7);
  }
}
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
.fade-in {
  animation: fadeInUp 0.5s ease both;
}
.pulse-glow {
  animation: pulse-glow 2.4s ease-in-out infinite;
}
.btn--green.pulse-glow {
  animation: pulse-glow 2s ease-in-out infinite;
}

.info-content {
  background: linear-gradient(160deg, #3d1a00, #2e1200);
  border-radius: var(--gc-radius-lg);
  border: 1px solid var(--gc-border);
  padding: 32px 36px;
  margin: 32px 0;
}
.info-content h1 {
  color: var(--gc-accent);
  font-size: 1.7rem;
  margin-bottom: 0.6em;
}
.info-content h2 {
  color: var(--gc-accent);
  font-size: 1.25rem;
  margin: 1.2em 0 0.5em;
}
.info-content h3 {
  color: #ffd98a;
  font-size: 1.05rem;
  margin: 1em 0 0.4em;
}
.info-content p {
  color: #ffd98a;
  line-height: 1.65;
  margin-bottom: 0.9em;
  font-size: 0.93rem;
}
.info-content ul {
  padding-left: 1.4em;
  color: #ffd98a;
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 0.9em;
}
.info-content ul li {
  list-style: disc;
  margin-bottom: 0.3em;
}
.info-content a {
  color: var(--gc-accent);
  text-decoration: underline;
}
.info-content strong {
  color: #fff;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 560px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.form-group label {
  font-size: 0.85rem;
  color: var(--gc-accent);
  font-weight: 600;
}
.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--gc-border);
  border-radius: 7px;
  color: var(--gc-text);
  font-family: var(--font-main);
  font-size: 0.9rem;
  padding: 10px 14px;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gc-accent);
}
.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: linear-gradient(135deg, #4a2200, #3d1a00);
  border-radius: var(--gc-radius);
  border: 1px solid var(--gc-border);
  overflow: hidden;
}
.faq-question {
  padding: 15px 18px;
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--gc-accent);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  user-select: none;
}
.faq-question::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--gc-accent);
  flex-shrink: 0;
  transition: transform 0.25s;
}
.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.25s;
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 18px 15px;
}
.faq-answer p {
  font-size: 0.88rem;
  color: #ffd98a;
  line-height: 1.65;
}

.wp-block-separator {
  height: 2px;
  background: rgba(255, 255, 255, 0.07);
  border: none;
  margin: 28px 0;
}
.entry-content,
.entry-header,
.site-main {
  display: contents;
}
.elementor-section {
  display: contents;
}
.wp-block-group {
  display: contents;
}

@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .bonuses-slider {
    grid-template-columns: 1fr;
  }
  .pros-cons-grid {
    grid-template-columns: 1fr;
  }
  .hero-inner {
    flex-direction: column;
  }
  .game-frame-wrap iframe {
    height: 360px;
  }
}
@media (max-width: 768px) {
  .header-nav {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--gc-header);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    gap: 4px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.5);
    z-index: 999;
  }
  .header-nav.open {
    display: flex;
  }
  .header-nav a {
    width: 100%;
    padding: 10px 14px;
    border-radius: 7px;
  }
  .burger {
    display: flex;
  }
  .mobile-cta {
    display: flex;
  }
  .header-cta .btn {
    display: none;
  }
  .lang-picker {
    display: none;
  }
  .sticky-widget {
    width: calc(100vw - 32px);
    right: 16px;
  }
  .casino-item {
    flex-wrap: wrap;
  }
  .casino-logo {
    width: 64px;
    height: 48px;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .content-review {
    padding: 18px 14px;
  }
  .info-content {
    padding: 18px 14px;
  }
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
  .game-stats {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .games-grid {
    grid-template-columns: 1fr 1fr;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .game-frame-wrap iframe {
    height: 280px;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
  }
}
