/* ===================================
   RESET & BASE STYLES
=================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #ffffff;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(120deg, #009246 0%, #ffffff 50%, #ce2b37 100%);
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  font-family: Arial, sans-serif;
  overflow-x: hidden;
}

/* Эффект стекла */
.glass {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 20px;
  margin: 15px auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  max-width: 800px;
  width: 90%;
  color: #000;
}

/* Текст адаптируем под экран */
.glass h1, 
.glass h2, 
.glass p {
  margin: 0 0 15px;
  text-align: center;
  line-height: 1.4;
}

/* Мобильная адаптация */
@media (max-width: 768px) {
  body {
    background: linear-gradient(150deg, #009246 0%, #ffffff 50%, #ce2b37 100%);
  }

  .glass {
    width: 95%;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
  }

  .glass h1 {
    font-size: 1.4rem;
  }

  .glass p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .glass {
    padding: 12px;
  }

  .glass h1 {
    font-size: 1.2rem;
  }

  .glass p {
    font-size: 0.95rem;
  }
}


/* ===================================
   GLOBAL ELEMENTS
=================================== */
img {
  display: block;
  margin: 20px auto;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  margin-left: 20px;
  margin-bottom: 15px;
}

li {
  margin-bottom: 8px;
}
.top-casinos {
  padding: 40px 20px;
  background-color: #1a1a1a;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(232, 232, 232, 0.4);
  color: #fff;
}

.top-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
  color: #ffb805;
}

.casino-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 20px;
}

.casino-card {
  background-color: #6b6b6b;
  border-radius: 8px;
  padding: 14px;
  box-shadow: 0 4px 8px rgba(255,184,5,0.3);
  transition: transform 0.3s ease;
}

.casino-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 16px rgba(255,184,5,0.4);
}

.casino-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.casino-header img {
  width: 80px;
  height: auto;
}

.casino-rating {
  background: #ffb805;
  color: #000;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 1.1rem;
}

.casino-bonus {
  margin: 12px 0;
  font-size: 1rem;
  color: #fff;
}

.casino-features {
  list-style: none;
  padding: 0;
  margin: 0 0 15px 0;
}

.casino-features li {
  margin-bottom: 6px;
}

.casino-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.casino-details {
  margin-top: 12px;
  font-size: 0.9rem;
  text-align: center;
}

.casino-payments img {
  height: 22px;
  margin: 4px;
  opacity: 0.9;
}
.payments {
  display: flex;               /* включает флексбокс */
  justify-content: center;     /* выравнивание по центру */
  align-items: center;         /* выравнивание по вертикали */
  gap: 10px;                   /* расстояние между иконками */
  flex-wrap: wrap;             /* чтобы не ломалось на мобильных */
  margin-top: 8px;             /* немного отступа сверху */
}

.payments img {
  width: 40px;                 /* размер иконок */
  height: auto;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.payments img:hover {
  opacity: 1;
  transform: scale(1.1);       /* лёгкое увеличение при наведении */
}

 .ofertas-section {
    background: #0a0a0a;
    padding: 3rem 1.5rem;
    color: #f5f5f5;
    text-align: center;
  }

  .ofertas-section h2 {
    font-size: 1.9rem;
    color: #ffb805;
    text-transform: uppercase;
    margin-bottom: 1rem;
  }

  .ofertas-intro {
    max-width: 750px;
    margin: 0 auto 2rem;
    color: #ccc;
    font-size: 1rem;
  }

  .ofertas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    justify-items: center;
  }

  .oferta-card {
    background: linear-gradient(145deg, #111, #1a1a1a);
    border: 1px solid #222;
    border-radius: 16px;
    padding: 1.5rem;
    width: 100%;
    max-width: 320px;
    text-align: left;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
  }

  .oferta-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 18px rgba(224, 172, 0, 0.3);
  }

  .oferta-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
  }

  .oferta-logo {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    object-fit: contain;
    background: #ffb805;
    padding: 4px;
  }

  .oferta-card h3 {
    font-size: 1.1rem;
    color: #ffb805;
  }

  .oferta-card p {
    color: #ccc;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.5;
  }

  .oferta-lista {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
  }

  .oferta-lista li {
    background: #141414;
    border-left: 3px solid #ffb805;
    padding: 0.6rem 0.9rem;
    margin-bottom: 0.4rem;
    border-radius: 6px;
    font-size: 0.9rem;
  }

  .btn-oferta {
    display: inline-block;
    background: #ffb805;
    color: #000;
    font-weight: bold;
    padding: 0.7rem 1.2rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.25s ease;
  }

  .btn-oferta:hover {
    background: #ffb805;
    transform: scale(1.05);
  }

  .eventos-section {
    background: #0a0a0a;
    color: #f5f5f5;
    padding: 3rem 1.5rem;
    text-align: center;
  }

  .eventos-section h2 {
    color: #ffb805;
    font-size: 2rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
  }

  .eventos-intro {
    max-width: 800px;
    margin: 0 auto 2rem;
    color: #ffffff;
    line-height: 1.6;
  }

  .eventos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
  }

  .evento-card {
    background: linear-gradient(145deg, #111, #191919);
    border-radius: 14px;
    padding: 1.5rem 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #1c1c1c;
    box-shadow: 0 4px 10px rgba(224, 183, 0, 0.1);
  }

  .evento-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 18px rgba(224, 190, 0, 0.25);
    border-color: #ffb805;
  }

  .evento-card .icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }

  .evento-card h3 {
    color: #ffb805;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
  }

  .evento-card p {
    color: #ffffff;
    font-size: 0.95rem;
  }

  @media (min-width: 768px) {
    .eventos-grid {
      grid-template-columns: repeat(5, 1fr);
    }
  }

  .metodos-pago {
    background: #0b0b0b;
    color: #f1f1f1;
    text-align: center;
    padding: 3rem 1.5rem;
  }

  .metodos-pago h2 {
    font-size: 2rem;
    color: #00e0a8;
    text-transform: uppercase;
    margin-bottom: 2rem;
  }

  .pago-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.2rem;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto;
  }

  .pago-card {
    background: linear-gradient(145deg, #121212, #181818);
    border: 1px solid #1f1f1f;
    border-radius: 14px;
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(224, 190, 0, 0.1);
  }

  .pago-card img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 0.8rem;
    filter: brightness(0.9);
  }

  .pago-card span {
    color: #e0e0e0;
    font-size: 0.95rem;
    font-weight: 500;
  }

  .pago-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 18px rgba(224, 172, 0, 0.3);
    border-color: #ffb805;
  }

  @media (max-width: 768px) {
    .pago-grid {
      grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }
    .pago-card img {
      width: 50px;
      height: 50px;
    }
  }
.opinion-experta {
    position: relative;
    font-family: 'Inter', sans-serif;
    color: #f5f5f5;
    margin: 0;
    padding: 0;
  }

  .opinion-bg {
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1590080875830-57d5e6b6c1c1?auto=format&fit=crop&w=1400&q=80');
    background-size: cover;
    background-position: center;
    padding: 4rem 1.5rem;
  }

  .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
  }

  .opinion-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 950px;
    margin: 0 auto;
    text-align: left;
    gap: 2rem;
  }

  .author-photo img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ffb805;
    box-shadow: 0 0 15px rgba(224, 183, 0, 0.4);
  }

  .author-text h2 {
    color: #ffb805;
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    text-align: center;
  }

  blockquote {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #f1f1f1;
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid #ffb805;
    padding: 1.5rem;
    border-radius: 8px;
  }

  .author-footer {
    font-size: 0.95rem;
    color: #bbb;
    text-align: right;
    margin-top: 1rem;
  }

  @media (min-width: 768px) {
    .opinion-content {
      flex-direction: row;
      align-items: flex-start;
      text-align: left;
    }

    .author-text {
      max-width: 700px;
    }
  }

  .opiniones-section {
    font-family: 'Inter', sans-serif;
    padding: 3rem 1.5rem;
    background: #222222;
  }

  .opiniones-section h2 {
    color: #ffb805;
    font-size: 1.9rem;
    text-align: center;
    margin-bottom: 0.5rem;
  }

  .opiniones-section .intro {
    text-align: center;
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .opiniones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
  }

  .opinion-card {
    background: #000000;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    padding: 1.5rem;
    transition: all 0.3s ease;
    border-left: 5px solid #ffb805;
  }

  .opinion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  }

  .opinion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
  }

  .stars {
    color: #ffc107;
    font-size: 1.1rem;
  }

  .opinion-card p {
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.6;
  }

  @media (max-width: 600px) {
    .opinion-card {
      padding: 1rem;
    }
    .opinion-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 0.3rem;
    }
  }
/* ===================================
   CONTAINERS
=================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}

.img-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 30px auto;
  max-width: 900px;
  mix-blend-mode: normal;
  filter: none;
}

/* ===================================
   HEADER
=================================== */
.header {
  background-color: #0d0d0d;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 184, 5, 0.2);
}

.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 20px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.header__auth {
  display: flex;
  gap: 12px;
  align-items: center;
}

.header__auth .btn {
  padding: 8px 16px;
  font-size: 0.9rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.header__auth .btn--login {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #00811c;
}

.header__auth .btn--login:hover {
  background-color: #007317;
  color: rgb(255, 255, 255);
  transform: translateY(-1px);
}

.header__auth .btn--register {
  background-color: #ff0505;
  color: rgb(0, 0, 0);
  border: 1px solid #ff0505;
  font-weight: 600;
}

.header__auth .btn--register:hover {
  background-color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 184, 5, 0.3);
}

/* ===================================
   LOGO
=================================== */
.logo img {
  display: block;
  max-width: 180px;
  height: auto;
  transition: all 0.3s ease;
  box-shadow: none;
  margin: 0;
}

.logo img:hover {
  transform: scale(1.05);
}
.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer__logo img.age {
    width: 50px;
    height: auto;
    opacity: 0.8;
}

.footer__logo img.logo {
    width: 100px;
    height: auto;
}

/* ===================================
   NAVIGATION
=================================== */
.nav {
  display: none;
  flex-direction: column;
  gap: 10px;
  background-color: #2c2c2c;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  max-width: 85vw;
  height: 100vh;
  padding: 60px 20px 20px 20px;
  box-shadow: -2px 0 15px rgba(0, 0, 0, 0.5);
  z-index: 1000;
  overflow-y: auto;
}

.nav.nav--open {
  right: 0;
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 2100;
  position: relative;
}

.nav__toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #008714;
  border-radius: 2px;
}
/* Анимация превращения в крестик */
.nav--open ~ .nav__toggle span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.nav--open ~ .nav__toggle span:nth-child(2) {
  opacity: 0;
}
.nav--open ~ .nav__toggle span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
@media (max-width: 768px) {
  .nav__toggle {
    display: flex;
  }
}

/* ===================================
   BUTTONS
=================================== */
.btn {
  font-weight: 600;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  padding: 0.7em 1.5em;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
}

.btn--primary {
  background-color: #376daa;
  color: #ffffff;
}

.btn--primary:hover {
  background-color: #0059ff;
}

.btn--secondary {
  background-color: #006e33;
  color: #ffffff;
  border: 2px solid #fa2020;
}

.btn--secondary:hover {
  background-color: #00ccff;
  color: #ffffff;
}

/* ===================================
   TABLE OF CONTENTS (TOC)
=================================== */
.toc-section {
  background-color: #376daa;
  color: #ffffff;
  border: 2px solid #ffffff;
  box-shadow: 0 4px 8px rgba(255, 184, 5, 0.2);
  border-radius: 4px;
}

.toc-toggle {
  background-color: #006e33;
  color: #fff;
  border: 2px solid #d40000;
  border-radius: 10px;
  padding: 8px 18px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: block;
  width: fit-content;
  margin: 10px auto;
  text-align: center;
  box-shadow: 0 2px 8px rgba(55, 109, 170, 0.4);
}

.toc-toggle:hover {
  background-color: #ffb805;
  color: #000;
  border-color: #ffb805;
  box-shadow: 0 4px 12px rgba(3, 67, 110, 0.4);
  transform: translateY(-2px);
}

.toc {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  margin-top: 10px;
}

.toc.open {
  max-height: 1000px;
}

.toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.toc li {
  margin: 6px 0;
  border-bottom: 1px dashed rgba(255, 184, 5, 0.3);
  padding-bottom: 4px;
}

.toc a {
  color: #ffffff;
  font-weight: 600;
  transition: color 0.3s ease;
}

/* ===================================
   SECTIONS
=================================== */
.main-content {
  padding: 110px 0 50px 0;
  margin-top: 0;
}

.section {
  margin-bottom: 60px;
  background-color: #e0e0e0;
  padding: 40px 20px;
  border-radius: 16px;
  margin-left: 10px;
  margin-right: 10px;
  border: 1px solid rgba(255, 184, 5, 0.1);
}

/* ===================================
   CASINO CARDS SECTION
=================================== */
.casino-section {
  background: #bebdbd;
  padding: 30px 20px;
  margin: 20px 10px;
  border-radius: 20px;
  border: 1px solid rgba(255, 184, 5, 0.2);
  box-shadow: 0 8px 32px rgba(171, 171, 171, 0.3);
}


.casino-section h2 {
  text-align: center;
  margin-bottom: 20px;
}
.casino-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.casino-card {
  background: linear-gradient(145deg, #1e1e1e, #2a2a2a);
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 184, 5, 0.2);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.casino-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ffb805, #ffd700, #ffb805);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.casino-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(255, 184, 5, 0.2);
  border-color: #ffb805;
}

.casino-card:hover::before {
  opacity: 1;
}

.casino-header {
  padding: 25px 25px 20px 25px;
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, rgba(255, 184, 5, 0.05), transparent);
}

.casino-logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px;
  transition: transform 0.3s ease;
}

.casino-card:hover .casino-logo {
  transform: scale(1.1);
}

.casino-info h2 {
  font-size: 1.8rem;
  color: #ffffff;
  margin: 0 0 8px 0;
  font-weight: 700;
}

.casino-rating {
  background: linear-gradient(135deg, #ffb805, #ffd700);
  color: #000;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 1.1rem;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(255, 184, 5, 0.3);
}

.casino-bonus {
  padding: 20px 25px;
  background: rgba(255, 184, 5, 0.1);
  border-left: 4px solid #ffb805;
  margin: 0;
}

.casino-bonus strong {
  color: #ffb805;
  font-size: 1.1rem;
}

.casino-features {
  padding: 20px 25px;
  list-style: none;
  margin: 0;
}

.casino-features li {
  padding: 8px 0;
  color: #e0e0e0;
  position: relative;
  padding-left: 25px;
}

.casino-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #ffb805;
  font-weight: bold;
  font-size: 1.2rem;
}

.casino-actions {
  padding: 20px 25px 10px 25px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.casino-bottom-section {
  margin-top: auto;
  display: flex;
  flex-direction: column;
}

.casino-actions .btn {
  flex: 1;
  min-width: 140px;
  padding: 12px 5px;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.casino-actions .btn--primary {
  background: linear-gradient(135deg, #ffb805, #ffd700);
  color: #000;
  border: none;
}

.casino-actions .btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 184, 5, 0.4);
}

.casino-actions .btn--secondary {
  background: transparent;
  color: #ffb805;
  border: 2px solid #ffb805;
}

.casino-actions .btn--secondary:hover {
  background: #ffb805;
  color: #000;
  transform: translateY(-2px);
}

.casino-extra {
  padding: 20px 25px;
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(255, 184, 5, 0.2);
}

.casino-extra p {
  color: #b0b0b0;
  font-size: 0.9rem;
  margin: 0 0 15px 0;
}

.casino-payments {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.casino-payments img {
  width: 35px;
  height: 25px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.1);
  padding: 4px;
  border-radius: 6px;
  transition: transform 0.3s ease;
}

.casino-payments img:hover {
  transform: scale(1.1);
}

.casino-section-footer {
  margin-top: 40px;
  padding: 30px;
  background: rgba(255, 184, 5, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 184, 5, 0.2);
}

.casino-section-footer p {
  color: #828282;
  font-size: 1.1rem;
  line-height: 1.6;
  text-align: left;
  margin: 0;
  max-width: 800px;
}

.section--dark {
  background-color: #101010;
  color: #ffffff;
}
.section--dark .img-container img {
  background: rgb(0, 0, 0);
  mix-blend-mode: normal;
  filter: none;
  position: relative;
  z-index: 2;
  display: block;
  max-width: 100%;
  height: auto;
}

.section__actions {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}


/* ===================================
   TYPOGRAPHY
=================================== */
h1,
h2,
h3 {
  margin-bottom: 15px;
  font-weight: 700;
}

h1 {
  font-size: 2rem;
  color: #ffffff;
  text-align: center;
}

h2 {
  font-size: 1.75rem;
  color: #ffffff;
}

h3 {
  font-size: 1.25rem;
  color: #ffffff;
}

h4 {
  font-size: 1.25rem;
  color: #ffffff;
}

/* ===================================
   TABLES
=================================== */
.table-wrapper {
  overflow-x: auto;
  margin: 20px 0;
  background-color: rgb(0, 0, 0);
  border-radius: 8px;
  padding: 10px;
}

table {
  width: 100%;
  border-collapse: collapse;
  background-color: rgb(0, 0, 0);
}

table td,
table th {
  padding: 12px 15px;
  border: 1px solid #008238;
  text-align: left;
}

table th {
  background-color: #ffffff;
  color: rgb(0, 0, 0);
  font-weight: 600;
}
.table-wrapper--casino {
  overflow-x: auto;
  margin: 20px 0;
  background-color: rgb(0, 0, 0);
  border-radius: 8px;
  padding: 10px;
  -webkit-overflow-scrolling: touch;
}

/* Таблица только с классом .casino-table внутри этой обёртки */
.table-wrapper--casino .casino-table {
  width: 100%;
  border-collapse: collapse;
  background-color: rgb(0, 0, 0);
  min-width: 750px; /* чтобы не схлопывалась на мобиле */
}

.table-wrapper--casino .casino-table th,
.table-wrapper--casino .casino-table td {
  padding: 12px 15px;
  border: 1px solid #008238;
  text-align: left;
  white-space: nowrap;
}

/* Шапка */
.table-wrapper--casino .casino-table th {
  background-color: #ffffff;
  color: #000;
  font-weight: 600;
  position: sticky;
  top: 0;
  z-index: 5;
}

/* 📱 Мобильная адаптация ТОЛЬКО для этой таблицы */
@media (max-width: 768px) {
  .table-wrapper--casino .casino-table th,
  .table-wrapper--casino .casino-table td {
    padding: 8px 10px;
    font-size: 14px;
  }

  .table-wrapper--casino {
    padding: 8px;
  }
}

/* ===================================
   FAQ
=================================== */
.faq-block {
  background-color: #232323;
  padding: 30px;
  border-radius: 12px;
}

.faq-item {
  margin-bottom: 15px;
  border-bottom: 1px solid #008238;
  padding-bottom: 10px;
}

.faq-question {
  font-weight: 600;
  cursor: pointer;
  position: relative;
  padding-right: 20px;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  font-weight: bold;
}

.faq-item.open .faq-question::after {
  content: '-';
}

.faq-answer {
  display: none;
  margin-top: 10px;
}

.faq-item.open .faq-answer {
  display: block;
}

/* ===================================
   FOOTER
=================================== */
.footer {
  background-color: #0d0d0d;
  color: #ffffff;
  padding: 30px 0;
}

.footer__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer__logo img {
  max-width: 150px;
  margin-right: 15px;
}

.footer__nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer__link {
  color: #ffffff;
  transition: color 0.3s ease;
}

.footer__link:hover {
  color: #ffffff;
}

/* ===================================
   ADAPTIVE STYLES
=================================== */
@media (max-width: 992px) {
  .header__container {
    padding: 6px 15px;
    width: 100%;
    max-width: 100%;
  }

  .header__auth {
    display: none;
  }

  .logo img {
    max-width: 140px;
  }

  .nav__toggle {
    display: flex;
    position: relative;
    z-index: 2100;
  }

  .nav {
    display: flex;
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    max-width: 80vw;
    transition: right 0.4s ease;
  }

  .nav--open {
    right: 0;
  }

  .btn {
    font-size: 1rem;
    padding: 0.6em 1.2em;
  }

  .faq-block {
    padding: 20px;
  }

  h1 {
    font-size: 1.75rem;
  }
}

@media (max-width: 768px) {
  .header__container {
    padding: 5px 12px;
    width: 100%;
    max-width: 100%;
  }

  .logo img {
    max-width: 135px;
  }

  .main-content {
    padding: 75px 0 40px 0;
  }

  .section {
    padding: 20px 10px;
  }

  .casino-section {
    padding: 40px 15px;
    margin: 20px 10px;
  }

  .casino-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .casino-card {
    border-radius: 15px;
  }

  .casino-header {
    padding: 20px 20px 15px 20px;
    gap: 15px;
  }

  .casino-logo {
    width: 60px;
    height: 60px;
  }

  .casino-info h2 {
    font-size: 1.5rem;
  }

  .casino-rating {
    padding: 6px 12px;
    font-size: 1rem;
  }

  .casino-bonus {
    padding: 15px 20px;
    font-size: 0.95rem;
  }

  .casino-features {
    padding: 15px 20px;
  }

  .casino-features li {
    padding: 6px 0 6px 20px;
    font-size: 0.9rem;
  }

  .casino-actions {
    padding: 15px 20px 8px 20px;
    flex-direction: column;
    gap: 10px;
  }

  .casino-actions .btn {
    min-width: auto;
    padding: 10px 15px;
  }

  .casino-extra {
    padding: 15px 20px;
  }

  .casino-payments img {
    width: 30px;
    height: 20px;
  }

  .casino-section-footer {
    margin-top: 30px;
    padding: 20px;
  }

  .casino-section-footer p {
    font-size: 1rem;
  }

  .faq-question {
    font-size: 1rem;
  }

  .faq-answer {
    font-size: 0.95rem;
  }

  .footer__container {
    flex-direction: column;
    gap: 20px;
  }

  .footer__nav {
    gap: 10px;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 15px;
  }

  .header__container {
    padding: 4px 10px;
    width: 100%;
    max-width: 100%;
  }

  .logo img {
    max-width: 135px;
  }

  .casino-section {
    padding: 30px 10px;
  }

  .casino-header {
    padding: 15px 15px 10px 15px;
    gap: 12px;
  }

  .casino-logo {
    width: 50px;
    height: 50px;
  }

  .casino-info h2 {
    font-size: 1.3rem;
  }

  .casino-rating {
    padding: 5px 10px;
    font-size: 0.9rem;
  }

  .casino-bonus {
    padding: 12px 15px;
    font-size: 0.9rem;
  }

  .casino-features {
    padding: 12px 15px;
  }

  .casino-features li {
    padding: 5px 0 5px 18px;
    font-size: 0.85rem;
  }

  .casino-actions {
    padding: 12px 15px 6px 15px;
  }

  .casino-actions .btn {
    padding: 8px 12px;
    font-size: 0.9rem;
  }

  .casino-extra {
    padding: 12px 15px;
  }

  .casino-payments img {
    width: 25px;
    height: 18px;
  }

  .casino-section-footer {
    margin-top: 25px;
    padding: 15px;
  }

  .casino-section-footer p {
    font-size: 0.95rem;
  }

  .main-content {
    padding: 75px 0 30px 0;
  }

  .btn {
    width: 100%;
    padding: 0.8em 1.5em;
    font-size: 1rem;
  }

  .faq-block {
    padding: 16px;
  }

  .faq-question {
    font-size: 0.95rem;
  }

  .faq-answer {
    font-size: 0.9rem;
  }

  .footer__container {
    padding: 20px 0;
  }

  .nav {
    width: 90%;
    max-width: 90vw;
    padding: 50px 15px 15px 15px;
  }
}

@media (max-width: 360px) {
  .logo img {
    max-width: 120px;
  }

  h1 {
    font-size: 1.4rem;
  }

  h2 {
    font-size: 1.2rem;
  }

  .btn {
    font-size: 0.9rem;
  }
}

.faq-answer {
  display: none;
  padding: 10px 0;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-question {
  cursor: pointer;
  position: relative;
  padding-right: 25px;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 20px;
  transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
  content: "-";
  transform: rotate(180deg);
}