:root {
  --bg-light: #111111;

  --primary: #ffd43b;
  --secondary: #fff4c2;
  --accent: #ffcc00;
  --gold: #f5b300;
  --white: #ffffff;
  --black: #000000;
  --neon: #ffbf40;
  --text-muted: #bbbbbb;
  --success-color: #00ff99;
  --card-bg-alt: linear-gradient(135deg, #1c1c1c, #2a2a2a);
  --accent-rgb: 255, 203, 71;
  --lvl3-color-rgb: 255, 215, 0;
  --cta-gradient-alt: linear-gradient(135deg, #ffdd57, #ff9900);
  --cta-gradient-dark: linear-gradient(135deg, #1a1a1a, #2c2c2c);

  --neon-glow: 0 0 12px rgba(255, 204, 0, 0.8);

  --cta-gradient: linear-gradient(135deg, #ffb300, #ff8c00);
  --btn-primary-shadow: 0 0 10px rgba(255, 204, 0, 0.6),
    0 0 18px rgba(255, 165, 0, 0.4), inset 0 0 6px rgba(255, 255, 255, 0.05);

  --btn-primary-shadow-hover: 0 0 14px rgba(255, 204, 0, 0.9),
    0 0 24px rgba(255, 180, 0, 0.5), inset 0 0 10px rgba(255, 255, 255, 0.1);

  --btn-outline-shadow: 0 0 6px rgba(255, 215, 0, 0.2);
  --btn-outline-shadow-hover: 0 0 12px rgba(255, 215, 0, 0.6),
    0 0 18px rgba(255, 215, 0, 0.4);

  --hero-bg: linear-gradient(
    180deg,
    #1c1509 0%,
    #2d220d 25%,
    #5a420f 55%,
    #caa63a 75%,
    #1a1a1a 100%
  );
  --hero-dark: #0a0a0a;
  --header-bg: linear-gradient(135deg, #0f0e0d, #111111);
  --text-glow: 0 0 6px rgba(255, 215, 0, 0.6);
  --bonus-bg: linear-gradient(135deg, #1e1e1e, #2a2a2a);
  --bonus-glow: 0 0 10px rgba(255, 215, 0, 0.3);

  --lvl1-bg: linear-gradient(135deg, #ff9900 0%, #ffcc33 100%);
  --lvl2-bg: linear-gradient(135deg, #ee0979 0%, #ff6a00 100%);
  --lvl3-bg: linear-gradient(135deg, #8e2de2 0%, #f27121 100%);

  --lvl1-color: #4a3905;
  --lvl2-color: #ffd700;
  --lvl3-color: #ffee58;

  --shadow-3d: 1px 1px 0 #ffcf40, 2px 2px 0 #ffb700,
    3px 3px 3px rgba(0, 0, 0, 0.3);

  --faq-bg: linear-gradient(145deg, #1b1b1b, #111111);
  --faq-border: 1px solid #2e2e2e;
  --card-bg: linear-gradient(135deg, #1f1f1f, #444444);
  --card-border: 1px solid rgba(255, 193, 99, 0.08);
}
@font-face {
  font-family: "Lato";
  src: url("fonts/Lato-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Lato";
  src: url("fonts/Lato-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Abril Fatface";
  src: url("fonts/AbrilFatface-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Caveat Brush";
  src: url("fonts/CaveatBrush-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: "Lato", sans-serif;
  line-height: 1.6;
  background: var(--bg-light);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1 {
  font-family: "Abril Fatface", serif;
}

h2,
h3,
h4 {
  font-family: "Abril Fatface", serif;
  font-weight: 400;
}

.cta-button,
button,
.language-switcher a {
  font-family: "Caveat Brush", cursive;
  font-weight: 400;
}
p {
  color: var(--secondary);
  font-size: 1rem;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

header {
  background: var(--header-bg);
  color: var(--white);
  padding: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}
.logo {
  font-family: "Abril Fatface", serif;
  font-size: 2.2rem;
  font-weight: normal;
  color: var(--white);
  letter-spacing: 1px;
  text-shadow: var(--shadow-3d);
  text-transform: uppercase;
  display: inline-flex;
  align-items: baseline;
}

.logo-biz {
  font-size: 1.1rem;
  margin-left: 4px;
  color: var(--white);
  opacity: 0.75;
  text-shadow: none;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.cta-button {
  display: inline-block;
  padding: 12px 20px;
  background: var(--cta-gradient);
  color: var(--white);
  font-weight: bold;
  text-decoration: none;
  border-radius: 30px;
  box-shadow: 0 0 12px rgba(255, 75, 43, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  animation: pulse 2s infinite;
  font-size: 1rem;
  text-align: center;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 12px rgba(255, 75, 43, 0.4);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 0 25px rgba(255, 75, 43, 0.7),
      0 0 50px rgba(255, 65, 108, 0.4);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 12px rgba(255, 75, 43, 0.4);
  }
}

.cta-button:hover {
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(255, 75, 43, 0.8), 0 0 60px rgba(255, 65, 108, 0.5);
}

@media (max-width: 768px) {
  .cta-button {
    font-size: 0.85rem;
    padding: 10px 16px;
    line-height: 1.2;
  }
}

@media (max-width: 480px) {
  .cta-button {
    font-size: 0.7rem;
    padding: 8px 14px;
    border-radius: 24px;
  }
}
.language-switcher {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 5px;
  display: flex;
}

.language-switcher .lang-btn {
  background: none;
  border: none;
  color: var(--white);
  padding: 5px 15px;
  border-radius: 15px;
  cursor: pointer;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.language-switcher .lang-btn.active {
  background-color: var(--white);
  color: var(--primary);
}

.language-switcher .lang-btn:hover:not(.active) {
  background-color: rgba(255, 255, 255, 0.3);
}

nav {
  padding: 15px 0;
}

nav ul {
  display: flex;
  list-style: none;
  justify-content: center;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  text-decoration: none;
  color: var(--white);
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

nav ul li a:hover {
  background-color: var(--primary);
  color: var(--black);
}
.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: 20px;
}

.burger span {
  height: 3px;
  width: 100%;
  background-color: var(--white);
  border-radius: 2px;
  transition: 0.3s ease;
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
    flex-direction: column;
    border-top: 1px solid #ddd;
  }

  .main-nav.active {
    display: flex;
  }

  .main-nav ul {
    flex-direction: column;
    padding: 10px 0;
    align-items: flex-start;
  }

  .main-nav ul li {
    width: 100%;
    margin: 0;
  }

  .main-nav ul li a {
    display: block;
    width: 100%;
    padding: 12px 20px;
    color: var(--white);
    font-weight: bold;
  }

  .burger {
    display: flex;
  }

  nav.main-nav ul li a:hover {
    background-color: var(--primary);
    color: var(--white);
  }
}

@media (min-width: 769px) {
  .main-nav {
    display: block;
  }
}
.burger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger.open span:nth-child(2) {
  opacity: 0;
}

.burger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.hero-section {
  background: var(--hero-bg);
  color: var(--white);
  padding: 100px 20px 60px;
  text-align: center;
  overflow: hidden;
}

.hero-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-heading {
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 20px;
  color: var(--white);
}

.text-highlight {
  display: inline-block;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtext {
  font-size: 1.3rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 30px;
  color: var(--secondary);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.btn-primary {
  text-decoration: none;
  background: var(--cta-gradient);
  border: none;
  color: var(--white);
  padding: 16px 36px;
  text-transform: uppercase;
  font-size: 1.1rem;
  font-weight: 800;
  border-radius: 50px;
  box-shadow: var(--btn-primary-shadow);
  cursor: pointer;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: scale(1.08);
  box-shadow: var(--btn-primary-shadow-hover);
}

.btn-outline {
  text-decoration: none;

  background: transparent;
  text-transform: uppercase;
  border: 2px solid var(--accent);
  color: var(--accent);
  padding: 14px 34px;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 50px;
  letter-spacing: 0.8px;
  transition: all 0.3s ease;
  box-shadow: var(--btn-outline-shadow);
}

.btn-outline:hover {
  background: var(--accent);
  color: var(--black);
  box-shadow: var(--btn-outline-shadow-hover);
  transform: scale(1.05);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.stat-box {
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  padding: 20px 30px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  font-size: 1rem;
  min-width: 140px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.stat-box .number {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--white);
  text-shadow: var(--shadow-3d);
}
@media (max-width: 1200px) {
  .hero-heading {
    font-size: 2.6rem;
  }

  .hero-subtext {
    font-size: 1.1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 100%;
  }

  .btn-primary,
  .btn-outline {
    padding: 14px 28px;
    font-size: 1rem;
  }

  .stat-box {
    padding: 18px 24px;
    font-size: 0.95rem;
  }

  .stat-box .number {
    font-size: 1.6rem;
  }
}

@media (max-width: 992px) {
  .hero-heading {
    font-size: 2.3rem;
  }

  .hero-subtext {
    font-size: 1rem;
  }

  .btn-primary,
  .btn-outline {
    padding: 12px 24px;
    font-size: 0.95rem;
  }

  .stat-box {
    padding: 16px 20px;
    font-size: 0.9rem;
  }

  .stat-box .number {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 80px 16px 50px;
  }

  .hero-heading {
    font-size: 2rem;
  }

  .hero-subtext {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    max-width: 280px;
  }

  .hero-stats {
    gap: 16px;
    margin-top: 32px;
  }

  .stat-box {
    min-width: 120px;
    padding: 14px 16px;
    font-size: 0.85rem;
  }

  .stat-box .number {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .hero-heading {
    letter-spacing: -0.5px;
  }

  .hero-subtext {
    font-size: 0.9rem;
  }

  .btn-primary,
  .btn-outline {
    font-size: 0.95rem;
    padding: 12px 20px;
  }

  .stat-box {
    min-width: unset;
    width: 100%;
    max-width: 320px;
  }

  .stat-box .number {
    font-size: 1.3rem;
  }
}
.games-section {
  padding: 60px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.section-title h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  text-align: center;
  margin-bottom: 10px;
}

.section-title p {
  text-align: center;
  color: var #333;
  font-size: 1rem;
  margin-bottom: 40px;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 992px) {
  .games-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.game-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--card-bg);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: var(--card-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(4px);
}
.game-card:hover {
  transform: scale(1.025);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

.game-thumb {
  position: relative;
  width: 100%;
  height: 160px;
  overflow: hidden;
}

.game-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.demo-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--neon);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 14px;
  font-size: 0.75rem;
  font-weight: bold;
  box-shadow: 0 0 10px rgba(255, 95, 31, 0.6);
  animation: pulseBadge 2s infinite ease-in-out;
}

.game-info {
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex-grow: 1;
}

.game-info h3 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 8px;
  font-weight: 800;
}

.game-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.8rem;
  color: #444;
  margin-bottom: 12px;
}

.meta-item {
  background: #f0f0f0;
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 500;
  box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.1);
}

.play-button {
  align-self: flex-start;
  padding: 10px 20px;
  border-radius: 30px;
  background: var(--cta-gradient);
  color: white;
  font-weight: bold;
  text-decoration: none;
  font-size: 0.9rem;
  box-shadow: var(--btn-primary-shadow);
  transition: transform 0.3s ease;
}

.play-button:hover {
  transform: scale(1.06);
}

.demo-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--neon);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 0.7rem;
  font-weight: bold;
  animation: pulseBadge 2s infinite ease-in-out;
  box-shadow: 0 0 10px rgba(255, 95, 31, 0.6);
}

@keyframes pulseBadge {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 8px rgba(255, 95, 31, 0.6);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 0 16px rgba(255, 95, 31, 0.9);
  }
}

@media (max-width: 768px) {
  .section-title h2 {
    font-size: 1.6rem;
  }

  .game-info h3 {
    font-size: 1.1rem;
  }

  .play-button {
    font-size: 0.8rem;
    padding: 8px 14px;
  }
}

.license-section {
  background-color: var(--bg-light);

  border-top: 3px solid var(--primary);
  border-bottom: 3px solid var(--primary);
  padding: 40px 0;
  text-align: center;
}

.license-content {
  max-width: 800px;
  margin: 0 auto;
}

.license-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--neon);
}

.license-content p {
  margin-bottom: 15px;
}

.license-number {
  font-size: 1.2rem;
  font-weight: bold;
  background-color: var(--secondary);
  color: var(--neon);
  display: inline-block;
  padding: 10px 20px;
  border-radius: 5px;
  margin: 20px 0;
}

.ssl-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.ssl-badge img {
  height: 50px;
  margin-right: 15px;
}

.wins-counter {
  background-color: var(--cta-gradient-dark);
  color: var(--primary);
  padding: 20px 0;
  text-align: center;
  border-top: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
}

.wins-counter h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--neon);
}

.win-item {
  display: inline-block;
  margin: 0 15px;
  font-size: 1.1rem;
}

.win-item span {
  color: var(--gold);
  font-weight: bold;
}

.bonus-section {
  background: var(--bonus-bg);
  padding: 80px 20px;
}

.bonus-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.bonus-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 0 20px rgba(255, 165, 0, 0.05);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.bonus-card {
  position: relative;
  padding: 2px;
  border-radius: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bonus-card .highlight-card-inner {
  border-radius: 18px;
  padding: 24px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.bonus-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(255, 165, 0, 0.4);
}
.bonus-card.lvl1 {
  background: var(--lvl1-bg);
}

.bonus-card.lvl2 {
  background: var(--lvl2-bg);
}

.bonus-card.lvl3 {
  background: var(--lvl3-bg);
}
.bonus-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.bonus-card h3 {
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--secondary);
  margin: 0;
}

.bonus-tag {
  background-color: var(--secondary);
  color: var(--black);
  font-size: 0.7rem;
  font-weight: bold;
  padding: 4px 10px;
  border-radius: 12px;
}

@keyframes bonus-pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}

.bonus-amount {
  font-size: 2rem;
  font-weight: 900;
  margin: 20px 0 10px;
  color: var(--white);
  animation: bonus-pulse 2s infinite ease-in-out;

  text-shadow: var(--shadow-3d);

  transition: transform 0.3s ease;
}
.play-button {
  display: inline-block;
}
.min-deposit {
  font-size: 0.85rem;
  color: var(--white);
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .bonus-card h3 {
    font-size: 1.2rem;
  }

  .bonus-amount {
    font-size: 1.6rem;
  }
}
.cta-deposit {
  display: inline-block;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: bold;
  color: var(--white);
  text-decoration: none;
  border-radius: 40px;
  background: var(--cta-gradient-dark);
  box-shadow: 0 4px 14px rgba(255, 95, 31, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease,
    background-position 0.4s ease;
  background-size: 200% 200%;
  background-position: left center;
  animation: glowPulse 2.5s infinite ease-in-out;
  margin: 0 auto;
}

.cta-deposit:hover {
  transform: scale(1.05);
  background-position: right center;
  box-shadow: 0 0 22px rgba(255, 95, 31, 0.6);
}

@keyframes glowPulse {
  0%,
  100% {
    box-shadow: 0 0 12px rgba(255, 95, 31, 0.4);
  }
  50% {
    box-shadow: 0 0 24px rgba(255, 95, 31, 0.8);
  }
}
.deposit-section {
  padding: 60px 0;
}

.payment-methods {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 30px;
}

.payment-method {
  background-color: var(--secondary);
  border-radius: 5px;
  padding: 15px;
  display: flex;
  align-items: center;
  min-width: 200px;
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.payment-method {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.08);
  padding: 10px 16px;
  border-radius: 12px;
  color: var(--accent);
}

.payment-method .emoji {
  font-size: 1.4rem;
}

.testimonials {
  padding: 60px 0;
  background-color: var(--bg-light);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.testimonial-card {
  background: var(--card-bg);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
}

.testimonial-name {
  font-weight: bold;
  color: var(--primary);
}

.testimonial-rating {
  color: var(--gold);
  margin-top: 5px;
}
.faq-section {
  padding: 60px 20px;
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 20px;
  padding: 20px 24px;
  border-radius: 16px;
  background: var(--faq-bg);
  border: var(--faq-border);
  transition: box-shadow 0.3s ease, transform 0.2s ease;
  position: relative;
  overflow: hidden;
}

.faq-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--primary);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.faq-item[open]::before {
  opacity: 1;
}

.faq-item[open] {
  box-shadow: 0 8px 24px rgba(255, 107, 0, 0.15);
  transform: scale(1.01);
}

.faq-question {
  font-weight: 700;
  color: var(--primary);
  cursor: pointer;
  font-size: 1.15rem;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.3s ease;
}

.faq-question::after {
  content: "+";
  font-size: 1.2rem;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.faq-item[open] .faq-question::after {
  content: "–";
  transform: rotate(180deg);
}

.faq-answer {
  margin-top: 16px;
  color: var(--secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  padding-right: 8px;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 50px 16px;
  }

  .faq-question {
    font-size: 1.05rem;
  }

  .faq-answer {
    font-size: 0.9rem;
  }
}
.regional-section {
  padding: 60px 20px;
}

.regional-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.regional-card {
  background: var(--card-bg);
  padding: 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.regional-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.regional-card h3 {
  color: var(--primary);
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.regional-card p {
  color: var(--secondary);
  font-size: 0.95rem;
  line-height: 1.4;
}

@media (max-width: 480px) {
  .regional-card {
    padding: 20px 16px;
  }

  .regional-card h3 {
    font-size: 1.1rem;
  }

  .regional-card p {
    font-size: 0.9rem;
  }
}
.trust-section {
  padding: 40px 20px;
  background: var(--cta-gradient-alt);
  text-align: center;
}

.trust-title {
  font-size: 1.8rem;
  margin-bottom: 30px;
  font-weight: 700;
  color: var(--black);
}

.trust-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.trust-item {
  max-width: 180px;
  flex: 1 1 150px;
}

.trust-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.trust-heading {
  font-weight: bold;
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--black);
}

.trust-subtext {
  font-size: 0.9rem;
  opacity: 0.9;
  color: var(--bg-light);
}

/* Адаптив для мобилок */
@media (max-width: 480px) {
  .trust-title {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }

  .trust-items {
    gap: 24px;
  }

  .trust-icon {
    font-size: 1.6rem;
  }

  .trust-heading {
    font-size: 0.95rem;
  }

  .trust-subtext {
    font-size: 0.85rem;
  }
}
footer {
  background-color: var(--black);
  color: var(--white);
  padding: 40px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-column h3 {
  color: var(--gold);
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: var(--white);
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #333;
  color: #999;
  font-size: 0.9rem;
}
.copyright a {
  color: var(--accent);
}

.article-header {
  text-align: center;
  margin-bottom: 50px;
  padding: 40px 0;
  background: rgba(var(--lvl3-color-rgb), 0.1);
  border-radius: 20px;
  border: 2px solid var(--lvl3-color);
}

.article-meta {
  color: var(--text-muted);
  font-size: 1.1em;
  margin-bottom: 20px;
}

.toc {
  background: rgba(var(--lvl3-color-rgb), 0.08);
  padding: 30px;
  border-radius: 15px;
  margin: 40px 0;
  border: 2px solid var(--lvl3-color);
}

.toc h3 {
  color: var(--lvl3-color);
  margin-bottom: 20px;
  font-size: 1.4em;
}

.toc ul {
  list-style: none;
  padding: 0;
}

.toc li {
  margin: 10px 0;
  padding-left: 20px;
}

.toc a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
}

.toc a:hover {
  color: var(--accent);
}

.highlight-box {
  background: rgba(var(--lvl3-color-rgb), 0.12);
  border-left: 4px solid var(--lvl3-color);
  padding: 20px;
  margin: 30px 0;
  border-radius: 10px;
}

.game-comparison {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.rtp-highlight {
  color: var(--success-color, #00ff99);
  font-weight: bold;
  font-size: 1.2em;
  margin: 10px 0;
}

.warning-box {
  background: rgba(255, 0, 0, 0.08);
  border: 2px solid #ff4444;
  padding: 20px;
  border-radius: 10px;
  margin: 30px 0;
}

.warning-box h4 {
  color: #ff4444;
  margin-bottom: 15px;
}

.cta-inline {
  background: var(--cta-gradient);
  color: var(--white);
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  margin: 40px 0;
  font-weight: bold;
}

.cta-inline a {
  color: var(--white);
  text-decoration: none;
  font-size: 1.2em;
  text-transform: uppercase;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.stat-item {
  background: rgba(255, 255, 255, 0.03);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid var(--lvl2-color);
}

.stat-number {
  font-size: 2em;
  color: var(--lvl3-color);
  font-weight: bold;
}

.breadcrumb {
  margin: 20px 0;
  font-size: 0.9em;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--lvl3-color);
  text-decoration: none;
}

.keyword-highlight {
  background: rgba(var(--accent-rgb, 255, 203, 71), 0.15);
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: bold;
}
@media (max-width: 768px) {
  .game-comparison {
    grid-template-columns: 1fr;
  }
}
