/* ===================================
   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 {
  background-color: #1a1a1a;
  overflow-x: hidden;
  max-width: 100vw;
}

/* ===================================
   GLOBAL ELEMENTS
=================================== */
img {
  display: block;
  margin: 20px auto;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 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(0,0,0,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;
}

/* ===================================
   HEADER
=================================== */
.header {
  background-color: #2c2c2c;
  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: #ffb805;
  border: 1px solid #ffb805;
}

.header__auth .btn--login:hover {
  background-color: #ffb805;
  color: #000;
  transform: translateY(-1px);
}

.header__auth .btn--register {
  background-color: #ffb805;
  color: #000;
  border: 1px solid #ffb805;
  font-weight: 600;
}

.header__auth .btn--register:hover {
  background-color: #e6a600;
  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: #ffb805;
  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: #b69e51;
  color: #000000;
  border: 2px solid #fab520;
}

.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: #376daa;
  color: #fff;
  border: 2px solid #ffb805;
  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: 30px 0 50px 0;
  margin-top: 0;
}

.section {
  margin-bottom: 60px;
  background-color: #1a1a1a;
  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: #3b3b3b;
  padding: 30px 20px;
  margin: 20px 10px;
  border-radius: 20px;
  border: 1px solid rgba(255, 184, 5, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 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: #e0e0e0;
  font-size: 1.1rem;
  line-height: 1.6;
  text-align: left;
  margin: 0;
  max-width: 800px;
}

.section--dark {
  background-color: #3b3b3b;
  color: #ffffff;
}

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

table {
  width: 100%;
  border-collapse: collapse;
}

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

table th {
  background-color: #1a1a1a;
  font-weight: 600;
}
/* ====== BIG TABLE WRAPPER (SCROLL) ====== */
.big-table-section{
  width: 100%;
  max-width: 100%;
}

.big-table-scroll{
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 18px;

  /* чтобы таблица не "распирала" страницу */
  display: block;
}

/* важно: таблица шире контейнера => появляется скролл */
.big-table-scroll .table-compare{
  width: 100%;
  min-width: 1100px; /* можешь поднять до 1200-1400 если надо */
}

/* ====== BIG TABLE STYLE (не трогаем маленькую) ====== */
.table-compare{
  border-collapse: separate;
  border-spacing: 0;
  background: radial-gradient(circle at top,#2f2f2f,#1f1f1f);
  color: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,180,0,.35);
  box-shadow: 0 15px 40px rgba(0,0,0,.75);
}

/* Header */
.table-compare thead th{
  background: linear-gradient(180deg,#1b1b1b,#000);
  color: #ffc933;
  padding: 18px 16px;
  font-weight: 800;
  text-align: center;
  border-bottom: 1px solid rgba(255,180,0,.35);
  letter-spacing: .5px;
  font-size: 13px;
  white-space: nowrap;
}

/* Cells */
.table-compare td{
  padding: 16px 14px;
  background: rgba(255,255,255,.03);
  border-bottom: 1px solid rgba(255,180,0,.15);
  text-align: center;
  white-space: nowrap;
}

/* First column */
.table-compare td:first-child{
  text-align: left;
  white-space: normal;
  font-weight: 800;
  color: #ffd24a;
  min-width: 160px;
}

/* Zebra */
.table-compare tbody tr:nth-child(even) td{
  background: rgba(255,255,255,.06);
}

/* Hover */
.table-compare tbody tr:hover td{
  background: rgba(255,180,0,.18);
}

/* Vertical separators */
.table-compare th+th,
.table-compare td+td{
  border-left: 1px solid rgba(255,180,0,.15);
}

/* Mobile tuning */
@media (max-width: 860px){
  .table-compare td,.table-compare th{
    font-size: 13px;
    padding: 12px 10px;
  }
  .big-table-scroll .table-compare{
    min-width: 980px; /* на мобилке можно чуть меньше */
  }
}

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

.faq-item {
  margin-bottom: 15px;
  border-bottom: 1px solid #ffb805;
  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: #2c2c2c;
  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: 30px 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);
}
/* =========================================
   PREMIUM NEON GOLD HEADER — FINAL VERSION
========================================= */

:root{
  --gold:#ffd100;
  --gold-soft:rgba(255,209,0,.35);
  --gold-strong:rgba(255,209,0,.7);
  --bg-dark:#050505;
  --bg-soft:#111;
}

/* HEADER */
.header{
  position:relative;
  width:100%;
  z-index:50;
}

.header__container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

/* CENTER NAV */
.header__nav{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  flex:1;
}

.header__link{
  color:var(--gold);
  text-decoration:none;
  white-space:nowrap;
  padding:9px 16px;
  border-radius:10px;
  border:1px solid rgba(255,209,0,.25);
  box-shadow:0 0 10px rgba(255,209,0,.18);
  text-shadow:0 0 6px var(--gold-soft);
  transition:.25s ease;
}

.header__link:hover{
  background:rgba(255,209,0,.1);
  box-shadow:0 0 22px var(--gold-strong);
}

/* AUTH BUTTONS */
.header__auth{
  display:flex;
  gap:12px;
}

/* LOGIN — secondary */
.btn--login{
  border:2px solid var(--gold);
  color:var(--gold);
  background:transparent;
  padding:12px 26px;
  border-radius:12px;
  font-weight:600;
  box-shadow:0 0 12px var(--gold-soft);
  text-shadow:0 0 6px var(--gold-soft);
  transition:.25s;
}

/* REGISTER — primary glow */
.btn--register{
  background:linear-gradient(180deg,#ffd100,#ffb700);
  color:#000;
  padding:12px 28px;
  border-radius:14px;
  font-weight:800;
  box-shadow:
    0 0 12px var(--gold-soft),
    0 0 30px rgba(255,209,0,.9);
  transition:.25s;
}

.btn--login:hover{
  background:rgba(255,209,0,.08);
  box-shadow:0 0 20px var(--gold-strong);
}

.btn--register:hover{
  transform:translateY(-2px) scale(1.03);
  box-shadow:0 0 45px rgba(255,209,0,1);
}

.nav__toggle{
  border-radius:12px;
  box-shadow:0 0 12px rgba(255,209,0,.25);
  transition:.3s ease;
}

.nav__toggle:hover{
  box-shadow:0 0 26px rgba(255,209,0,.8);
  background:rgba(255,209,0,.06);
}

/* glowing bars */
.nav__toggle span{
  transition:.35s cubic-bezier(.4,0,.2,1);
}

/* open state (when aria-expanded=true) */
.nav__toggle[aria-expanded="true"] span:nth-child(1){
  transform:translateY(8px) rotate(45deg);
}

.nav__toggle[aria-expanded="true"] span:nth-child(2){
  opacity:0;
}

.nav__toggle[aria-expanded="true"] span:nth-child(3){
  transform:translateY(-8px) rotate(-45deg);
}

/* pulsing glow */
@keyframes burgerPulse{
  0%,100%{ box-shadow:0 0 12px rgba(255,209,0,.35); }
  50%{ box-shadow:0 0 22px rgba(255,209,0,.85); }
}

.nav__toggle{
  animation:burgerPulse 2.8s ease-in-out infinite;
}
@keyframes burgerClick {
  0%   { transform:scale(1); }
  30%  { transform:scale(.92); }
  60%  { transform:scale(1.06); }
  100% { transform:scale(1); }
}

.nav__toggle:active{
  animation:burgerClick .35s cubic-bezier(.4,0,.2,1);
  box-shadow:
    0 0 35px rgba(255,209,0,.9),
    0 0 12px rgba(255,209,0,.5);
}

/* subtle vibration */
@keyframes burgerShake {
  0%{ transform:translateX(0); }
  25%{ transform:translateX(-1px); }
  50%{ transform:translateX(1px); }
  75%{ transform:translateX(-1px); }
  100%{ transform:translateX(0); }
}

.nav__toggle:active span{
  animation:burgerShake .18s linear;
}

/* MOBILE MENU */
.mobile-menu{
  position:absolute;
  left:0;
  right:0;
  top:100%;
  padding:14px;
  background:linear-gradient(180deg,var(--bg-dark),var(--bg-soft));
}

.mobile-menu__inner{
  background:radial-gradient(circle at top,#1a1a1a,var(--bg-dark) 70%);
  border-radius:16px;
  border:1px solid rgba(255,209,0,.35);
  box-shadow:0 0 45px rgba(255,209,0,.3);
  padding:16px;
  display:flex;
  flex-direction:column;
  gap:14px;
}

.mobile-menu__link{
  color:var(--gold);
  text-decoration:none;
  padding:12px;
  border-radius:10px;
  border:1px solid rgba(255,209,0,.25);
  box-shadow:0 0 10px rgba(255,209,0,.2);
}

.mobile-menu__link:hover{
  background:rgba(255,209,0,.1);
  box-shadow:0 0 24px rgba(255,209,0,.7);
}

.mobile-menu__auth .btn--login,
.mobile-menu__auth .btn--register{
  width:100%;
}

/* ADAPTIVE */
@media(max-width:992px){
  .header__nav,.header__auth{display:none;}
  .nav__toggle{display:inline-flex;margin-left:auto;}
}

/* BODY LOCK */
body.menu-open{overflow:hidden;}
/* Выделение анкорных ссылок в тексте */
.main-content a {
  color: #ffa600;        /* неоново-зелёный */
  font-weight: 600;
  text-decoration: underline;
}

.main-content a:hover {
  color: #ff7b00;
  text-decoration: none;
}
/* MOBILE MENU FIX */
.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-menu__auth {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-menu__link {
  display: block;
  width: 100%;
  white-space: normal;
  word-break: break-word;
  text-align: center;
}

.mobile-menu__auth .btn {
  display: block;
  width: 100%;
  text-align: center;
}

/* чтобы меню не вылезало по ширине */
.mobile-menu,
.mobile-menu__inner {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
.header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
}

.mobile-menu{
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  padding: 14px;
  background: linear-gradient(180deg, var(--bg-dark), var(--bg-soft));
  z-index: 999;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.mobile-menu__inner{
  width: 100%;
  max-width: 100%;
  background: radial-gradient(circle at top,#1a1a1a,var(--bg-dark) 70%);
  border-radius: 16px;
  border: 1px solid rgba(255,209,0,.35);
  box-shadow: 0 0 45px rgba(255,209,0,.3);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mobile-menu__nav{
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-menu__auth{
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-menu__link{
  display: block;
  width: 100%;
  padding: 12px 14px;
  text-align: center;
  white-space: normal;
  word-break: break-word;
  color: var(--gold);
  text-decoration: none;
  border-radius: 10px;
  border: 1px solid rgba(255,209,0,.25);
  box-shadow: 0 0 10px rgba(255,209,0,.2);
}

.mobile-menu__auth .btn{
  display: block;
  width: 100%;
  text-align: center;
}