:root {
  --primary: #ff6b00;
  --secondary: #fce1c8;
  --accent: #ffcb47;
  --gold: #f5b30c;
  --white: #ffffff;
  --black: #000000;
  --neon: #ff5f1f;
  --cta-gradient-alt: linear-gradient(135deg, #ff6b00, #ffd700);
  --neon-glow: 0 0 10px rgba(255, 95, 31, 0.8);
  --cta-gradient: linear-gradient(135deg, #ff416c, #ff4b2b);
  --hero-bg: linear-gradient(
    135deg,
    #ff6b00,
    #d44200
  ); /* стало темнее и глубже */
  --hero-dark: #2b1100;
  --text-glow: 0 0 6px rgba(255, 215, 0, 0.6);
  --bonus-bg: linear-gradient(135deg, #fff2e0, #ffe4cc);
  --bonus-glow: 0 0 10px rgba(255, 215, 0, 0.3);
  --lvl1-color: #ffb347;
  --lvl2-color: #ffa500;
  --lvl3-color: #ffd700;
  --lvl1-border: linear-gradient(135deg, #ffe8a3, #ffb347);
  --lvl2-border: linear-gradient(135deg, #ffd8b6, #ff6b00);
  --lvl3-border: linear-gradient(135deg, #ffd700, #ff5f1f);
}
@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;
}
body {
  font-family: "Lato", sans-serif;
}

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;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--white);
  color: var(--black);
  line-height: 1.6;
}

header {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  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.5rem;
  font-weight: normal;
  color: var(--accent);
  letter-spacing: 1px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
  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(--white);
}
.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 {
  position: relative;
  padding: 80px 20px;
  background: var(--hero-bg);
  color: var(--white);
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-background::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("images/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(5px);
  transform: scale(1.04);
}

.hero-background::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(239, 192, 156, 0.457),
    rgba(255, 188, 158, 0.576)
  );
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  z-index: 1;
  position: relative;
}

.hero-text {
  flex: 1 1 500px;
  max-width: 600px;
}

.hero-title {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 1rem;
}

.hero-keyword {
  display: inline-block;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-rank {
  display: inline-block;
  padding: 6px 14px;
  margin-top: 10px;
  background: var(--black);
  color: var(--gold);
  border-radius: 12px;
  font-size: 3.5rem;
  font-weight: 800;
  position: relative;
  box-shadow: 0 2px 12px rgba(255, 215, 0, 0.25);
  isolation: isolate;
}

.hero-rank::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 215, 0, 0.2),
    transparent
  );
  z-index: -1;
  filter: blur(8px);
}

.hero-title .highlight {
  color: var(--gold);
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.7);
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-top: 15px;
  margin-bottom: 25px;
  color: var(--black);
}

.hero-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.hero-benefits li {
  margin-bottom: 10px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--hero-dark);
}

.icon-bonus::before {
  content: "\1F4B8";
}

.icon-shield::before {
  content: "\1F6E1";
}

.icon-fast-cash::before {
  content: "\23F3";
}

.cta-button.big {
  font-size: 1.1rem;
  padding: 14px 28px;
  border-radius: 40px;
  background: var(--cta-gradient);
  color: var(--white);
  font-weight: bold;
  box-shadow: var(--neon-glow);
  transition: all 0.3s ease;
  text-decoration: none;
}

.cta-button.big:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 75, 43, 0.8);
}

.hero-visual {
  position: relative;
  flex: 1 1 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image {
  max-width: 90%;
  border-radius: 50%;
  z-index: 1;
  position: relative;
}

.hero-badges {
  position: absolute;
  bottom: 16px;
  right: 16px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.neon-badge {
  position: absolute;
  bottom: -10px;
  left: 0;
  background-color: var(--black);
  color: var(--gold);
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.9rem;
  box-shadow: var(--neon-glow);
  animation: flicker 2s infinite;
}

.floating-coin {
  position: absolute;
  top: 0;
  right: 20px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, var(--gold), #ffa500);
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes flicker {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}

@media (max-width: 768px) {
  .hero-rank {
    padding: 6px 14px;

    font-size: 2.3rem;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-visual {
    margin-top: 30px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .cta-button.big {
    font-size: 1rem;
    padding: 12px 20px;
  }
}
.games-section {
  padding: 60px 0;
  background-color: var(--white);
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.games-section {
  padding: 80px 20px;
}

.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: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  height: 100%;
}

.game-card:hover {
  transform: scale(1.02);
}

.game-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
}

.game-info {
  flex-grow: 1;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.game-info h3 {
  font-size: 1.1rem;
  color: var(--primary);
  margin: 0 0 8px;
  line-height: 1.2;
}

.game-info p {
  font-size: 0.85rem;
  color: var(--black);
  flex-grow: 1;
  margin-bottom: 12px;
}

.play-button {
  align-self: flex-start;
  padding: 10px 18px;
  border-radius: 30px;
  background: var(--cta-gradient);
  color: white;
  font-weight: bold;
  text-decoration: none;
  font-size: 0.9rem;
  box-shadow: var(--neon-glow);
  transition: 0.3s ease;
  margin-top: auto;
}

.play-button:hover {
  transform: scale(1.05);
}

.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;
  }
}

.demo-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: var(--gold);
  color: var(--black);
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
}

.license-section {
  background-color: var(--primary);
  color: var(--white);
  padding: 40px 0;
  text-align: center;
}

.license-content {
  max-width: 800px;
  margin: 0 auto;
}

.license-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.license-content p {
  margin-bottom: 15px;
}

.license-number {
  font-size: 1.2rem;
  font-weight: bold;
  background-color: var(--white);
  color: var(--primary);
  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(--black);
  color: var(--white);
  padding: 20px 0;
  text-align: center;
}

.wins-counter h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--gold);
}

.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: 1px solid rgba(255, 255, 255, 0.08);
  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;
  background: var(--lvl1-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bonus-card .highlight-card-inner {
  background-color: #fff;
  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);
}
.lvl1 {
  background: var(--lvl1-border);
}
.lvl2 {
  background: var(--lvl2-border);
}
.lvl3 {
  background: var(--lvl3-border);
}
.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(--gold);
  margin: 0;
}

.bonus-tag {
  background-color: var(--gold);
  color: var(--black);
  font-size: 0.7rem;
  font-weight: bold;
  padding: 4px 10px;
  border-radius: 12px;
}

.bonus-amount {
  font-size: 2rem;
  font-weight: 800;
  margin: 20px 0 10px;
  color: var(--white);
  text-shadow: var(--bonus-glow);
}
.play-button {
  display: inline-block;
}
.min-deposit {
  font-size: 0.85rem;
  color: var(--neon);
  margin-bottom: 20px;
}

.lvl1 .bonus-amount {
  color: var(--lvl1-color);
}

.lvl2 .bonus-amount {
  color: var(--lvl2-color);
}

.lvl3 .bonus-amount {
  color: var(--lvl3-color);
}

@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-alt);
  box-shadow: 0 0 10px rgba(255, 95, 31, 0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease,
    background-position 0.4s ease;
  margin: 0 auto;
  background-size: 200% 200%;
  background-position: left center;
  animation: glowPulse 2.5s infinite ease-in-out;
}

.cta-deposit:hover {
  transform: scale(1.05);
  background-position: right center;
  box-shadow: 0 0 20px rgba(255, 95, 31, 0.5);
}

@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;
  background-color: var(--white);
}

.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: #f9f9f9;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.testimonial-card {
  background-color: var(--white);
  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;
  background-color: var(--white);
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 20px;
  padding: 20px 24px;
  border-radius: 16px;
  background: linear-gradient(145deg, #ffffff, #f6f6f6);
  border: 1px solid #e5e5e5;
  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: #555;
  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;
  background-color: #f9f9f9;
}

.regional-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.regional-card {
  background: var(--white);
  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(--black);
  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-color: var(--primary);
  color: var(--white);
  text-align: center;
}

.trust-title {
  font-size: 1.8rem;
  margin-bottom: 30px;
  font-weight: 700;
}

.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;
}

.trust-subtext {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Адаптив для мобилок */
@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;
}

@media (max-width: 768px) {
  .header-top {
    flex-direction: column;
    gap: 15px;
  }

  nav ul {
    flex-wrap: wrap;
  }

  nav ul li {
    margin: 5px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero {
    height: 400px;
  }

  .games-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }

  .bonus-cards {
    flex-direction: column;
    align-items: center;
  }
}
