:root {
  --bg-dark: #0f0e0f;
  --bg-light: #1c1b1b;
  --text: #e0e0e0;
  --accent: #f8c045;
  --aqua: #1ad4d9;
  --font: "Inter", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--bg-dark);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.7;
}

/* HEADER */
header {
  background: var(--bg-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 25px;
  border-bottom: 1px solid #222;
  position: sticky;
  top: 0;
  z-index: 999;
}

.logo img {
  height: 40px;
}

.nav {
  display: flex;
  gap: 20px;
}

.nav a {
  color: #d6d6d6;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
}

.nav a:hover {
  color: var(--accent);
}

.slots a, .slots a h3, .slot h3 {
  text-decoration: none !important;
  color: #e6e6e6; /* чтобы текст остался читабельный */
}

a, .btn, .nav-buttons a {
  text-decoration: none !important;
}

/* Ссылки без подчёркивания */
a {
  text-decoration: none;
  color: inherit;
  transition: color .25s ease;
}

a:hover {
  color: #f8c045; /* фирменный золотистый цвет при наведении */
}

.nav-buttons {
  display: flex;
  gap: 10px;
}

.btn {
  padding: 8px 14px;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
  cursor: pointer;
  transition: 0.3s;
}

.btn-yellow {
  background: var(--accent);
  color: #000;
}

.btn-yellow:hover {
  background: #ffd75a;
}

.btn-dark {
  background: #222;
  color: var(--text);
}

.btn-dark:hover {
  background: #333;
}

/* BURGER MENU */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--accent);
  font-size: 26px;
  cursor: pointer;
}

/* BANNER */
.banner {
  max-width: 1200px;
  margin: 30px auto;
  border-radius: 10px;
  overflow: hidden;
}

.banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* SLOTS */
.slots {
  max-width: 1200px;
  margin: 30px auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 20px;
  padding: 0 20px;
}

.slot {
  background: var(--bg-light);
  border-radius: 10px;
  overflow: hidden;
  transition: 0.3s;
}

.slot:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.08);
}

.slot img {
  width: 100%;
  border-bottom: 1px solid #222;
}

.slot h3 {
  text-align: center;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
}

/* CONTENT */
.content {
  max-width: 1000px;
  margin: 50px auto;
  padding: 0 20px;
}

.content h1 {
  color: var(--accent);
  font-size: 26px;
  margin-bottom: 20px;
}

.content h2 {
  color: var(--aqua);
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 20px;
}

.content p {
  margin-bottom: 16px;
  color: #bbb;
  font-size: 15px;
}

    .content ol {
  counter-reset: item;
  list-style: none;
  padding-left: 0;
  margin: 20px 0;
}

.content ol li {
  counter-increment: item;
  margin: 12px 0;
  padding-left: 42px;
  position: relative;
  line-height: 1.5;
}

.content ol li:before {
  content: counter(item);
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  background: #f8c045;
  color: #000;
  font-weight: 700;
  border-radius: 50%;
  text-align: center;
  line-height: 28px;
  font-size: 14px;
}

/* FOOTER */
footer {
  background: var(--bg-light);
  padding: 40px 20px;
  text-align: center;
  color: #777;
  font-size: 14px;
}

.footer-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 25px;
}

.footer-logos img {
  height: 28px;
  filter: grayscale(100%) brightness(0.8);
  transition: 0.3s;
}

.footer-logos img:hover {
  filter: grayscale(0) brightness(1);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .nav {
    display: none;
    position: absolute;
    top: 65px;
    right: 0;
    flex-direction: column;
    background: var(--bg-light);
    width: 100%;
    text-align: center;
    padding: 20px 0;
  }

  .nav.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .nav-buttons {
    display: none;
  }
}

@media (max-width: 600px) {
  .content h1 {
    font-size: 22px;
  }
  .content h2 {
    font-size: 18px;
  }
  .slot h3 {
    font-size: 13px;
  }
}

/* PROVIDERS SPRITE */
.providers-sprite {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 30px;
  padding: 10px 0;
}

.provider {
  display: inline-block;
  width: 100px;       /* ширина одного лого в спрайте */
  height: 40px;       /* высота одного лого */
  background-image: url("/img/providers.png");
  background-repeat: no-repeat;
  background-size: cover;
  filter: grayscale(100%) brightness(0.8);
  transition: filter 0.3s;
}

.provider:hover {
  filter: grayscale(0) brightness(1);
}

/* Координаты каждого логотипа (примерные, корректируй под свой спрайт) */
.provider.pragmaticplay { background-position: 0 0; }
.provider.netent        { background-position: -100px 0; }
.provider.novomatic     { background-position: -200px 0; }
.provider.bgaming       { background-position: -300px 0; }
.provider.quickspin     { background-position: -400px 0; }
.provider.relax         { background-position: -500px 0; }
.provider.rubyplay      { background-position: -600px 0; }
.provider.amatic        { background-position: -700px 0; }

/* PAYMENTS */
.payments {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.payments img {
  height: 28px;
  filter: grayscale(100%) brightness(0.8);
  transition: 0.3s;
}

.payments img:hover {
  filter: grayscale(0) brightness(1);
}
/* ===================== */
/* TABLES IN CONTENT     */
/* ===================== */

table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px auto;
  background: var(--bg-light);
  border: 1px solid #222;
  border-radius: 10px;
  overflow: hidden;
  font-size: 15px;
}

table caption {
  caption-side: top;
  text-align: left;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 10px;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

thead {
  background: #1e1e1e;
}

thead th {
  color: var(--accent);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.5px;
  padding: 12px 15px;
  border-bottom: 1px solid #333;
  text-align: left;
}

tbody td {
  padding: 12px 15px;
  color: #ccc;
  border-bottom: 1px solid #222;
}

tbody tr:hover {
  background: rgba(255, 255, 255, 0.05);
  transition: 0.2s;
}

tbody tr:last-child td {
  border-bottom: none;
}

/* Альтернирующие строки */
tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.02);
}

/* Нумерованные таблицы */
table.numbered tbody tr td:first-child {
  text-align: center;
  color: var(--aqua);
  font-weight: 600;
}

/* Подписи под таблицами */
.table-note {
  font-size: 13px;
  color: #888;
  margin-top: 10px;
  text-align: left;
  line-height: 1.4;
}

/* MOBILE */
@media (max-width: 768px) {
  table,
  thead,
  tbody,
  th,
  td,
  tr {
    display: block;
  }

  thead {
    display: none;
  }

  tbody tr {
    background: var(--bg-light);
    margin-bottom: 15px;
    border: 1px solid #222;
    border-radius: 8px;
    padding: 10px;
  }

  tbody td {
    padding: 8px 10px;
    border: none;
    position: relative;
  }

  tbody td::before {
    content: attr(data-label);
    display: block;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    font-size: 12px;
    margin-bottom: 4px;
  }
}
/* FAQ BLOCK */
.faq {
  max-width: 1000px;
  margin: 40px auto 60px;
  padding: 0 20px;
}

.faq-item {
  background: var(--bg-light);
  border: 1px solid #222;
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: 0.3s;
}

.faq-item:hover {
  border-color: var(--accent);
  box-shadow: 0 0 10px rgba(248, 192, 69, 0.2);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  color: var(--accent);
  font-weight: 600;
  font-size: 16px;
  padding: 16px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  transition: color 0.3s;
}

.faq-question::after {
  content: "+";
  font-size: 20px;
  color: var(--aqua);
  transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
  content: "–";
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #141414;
  color: #ccc;
  font-size: 15px;
  line-height: 1.6;
  padding: 0 20px;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 15px 20px 20px;
}

@media (max-width: 600px) {
  .faq-question {
    font-size: 15px;
    padding: 14px 16px;
  }
  .faq-answer {
    font-size: 14px;
  }
}
