    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --black: #111;
      --red: #d32f2f;
      --red-dark: #b71c1c;
      --green: #2e7d32;
      --yellow: #f9a825;
      --gray-bg: #f0f0f0;
      --card-bg: #fff;
      --rtp-bg: #fce4ec;
    }
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      scroll-behavior: smooth;
    }
    body {
      font-family: 'Segoe UI', Arial, sans-serif;
      background: var(--gray-bg);
      color: #222;
      font-size: 16px;
    }
    p{
        margin: 15px 0;
    }
    /* ========== HEADER ========== */
    header {
      background: var(--black);
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .header-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      height: 56px;
      padding: 0 16px;
    }

    /* Logo */
    .logo {
      display: flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
      margin-right: 24px;
      flex-shrink: 0;
    }
    .logo img{
      width: 80px;
      margin: 5px 0;
    }
    .logo-icon {
      width: 36px;
      height: 36px;
    }
    .logo-text {
      display: flex;
      flex-direction: column;
      line-height: 1.1;
      color: #fff;
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    .logo-text span { color: #ff5722; }
    .desktop-nav a{
      text-decoration: none;
      color: #ffffff;
      display: flex;
      align-items: center;
      gap: 5px;
      padding: 0 10px;
      height: 56px;
      color: #fff;
      text-decoration: none;
      font-size: 12.5px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.3px;
      white-space: nowrap;
      cursor: pointer;
      transition: color 0.2s;
      border: none;
      background: none;
    }
    .desktop-nav a:hover{
      color: #ff5722;
    }
    /* Desktop nav */
    nav.desktop-nav {
      display: flex;
      align-items: center;
      gap: 10px;
      flex: 1;
    }

    .nav-item {
      position: relative;
    }

    .nav-link {
      display: flex;
      align-items: center;
      gap: 5px;
      padding: 0 10px;
      height: 56px;
      color: #fff;
      text-decoration: none;
      font-size: 12.5px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.3px;
      white-space: nowrap;
      cursor: pointer;
      transition: color 0.2s;
      border: none;
      background: none;
    }
    .nav-link:hover, .nav-item:hover .nav-link { color: #ff5722; }
    .nav-link .icon { font-size: 14px; }
    .nav-link .arrow {
      font-size: 9px;
      margin-left: 1px;
      transition: transform 0.2s;
    }
    .nav-item:hover .arrow { transform: rotate(180deg); }

    /* Dropdown */
    .dropdown {
      display: none;
      position: absolute;
      top: 56px;
      left: 0;
      background: #fff;
      min-width: 220px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.18);
      border-radius: 0 0 6px 6px;
      padding: 6px 0;
      z-index: 999;
    }
    .nav-item:hover .dropdown { display: block; }

    .dropdown a {
      display: flex;
      padding: 10px 20px;
      color: #222;
      text-decoration: none;
      font-size: 13.5px;
      transition: background 0.15s, color 0.15s;
    }
    .dropdown a:hover { background: #d2d2d2; color: var(--red); }
    .dropdown a.see-all {
      color: var(--red);
      font-weight: 600;
      border-top: 1px solid #eee;
      margin-top: 4px;
    }

    /* Header icons (mobile) */
    .header-icons {
      display: none;
      align-items: center;
      gap: 12px;
      margin-left: auto;
    }
    .header-icons button {
      background: none;
      border: none;
      color: #fff;
      font-size: 22px;
      cursor: pointer;
      display: flex;
      align-items: center;
    }

    /* ========== MOBILE MENU ========== */
    .mobile-overlay {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 2000;
      background: #fff;
      overflow-y: auto;
    }
    .mobile-overlay.open { display: block; }

    .mobile-header {
      background: var(--black);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 16px;
      height: 56px;
    }
    .mobile-header .logo-text { color: #fff; }
    .mobile-close {
      background: none;
      border: none;
      color: #fff;
      font-size: 28px;
      cursor: pointer;
      line-height: 1;
    }

    .mobile-nav { padding-bottom: 20px; }

    .mobile-nav-item { border-bottom: 1px solid #e0e0e0; }

    .mobile-nav-link {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 20px;
      font-size: 14px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.3px;
      color: #222;
      cursor: pointer;
      user-select: none;
    }
    .mobile-nav-link a{
      color: #000;
      text-decoration: none;
    }
    .mobile-nav-link.active { color: var(--red); }
    .mobile-nav-link .m-arrow { font-size: 18px; transition: transform 0.2s; }
    .mobile-nav-link.open .m-arrow { transform: rotate(180deg); }

    .mobile-submenu {
      display: none;
      background: #fafafa;
    }
    .mobile-submenu.open { display: block; }
    .mobile-submenu a {
      display: block;
      padding: 12px 32px;
      color: #333;
      text-decoration: none;
      font-size: 14px;
      border-bottom: 1px solid #eee;
    }
    .mobile-submenu a:last-child { border-bottom: none; }
    .mobile-submenu a:hover { color: var(--red); }
    .mobile-submenu a.see-all { color: var(--red); font-weight: 600; }

    /* ========== MAIN ========== */
    main {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0px 15px;
    }

    .section-title {
      font-size: 26px;
      font-weight: 700;
      margin-bottom: 24px;
      color: #111;
    }

    /* ========== GAMES GRID ========== */
    .games-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .game-card {
      width: 80%;
      margin: 0 auto;
      background: var(--card-bg);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0,0,0,0.08);
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .game-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.14);
    }

    .game-img-wrap {
      position: relative;
      aspect-ratio: 4/3;
      overflow: hidden;
    }
    .game-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .badge {
      position: absolute;
      top: 10px;
      left: 10px;
      padding: 4px 10px;
      border-radius: 4px;
      font-size: 12px;
      font-weight: 700;
      color: #fff;
    }
    .badge-top { background: var(--green); }
    .badge-exclusive { background: var(--yellow); color: #333; }

    .game-info {
      padding: 14px 16px 16px;
    }

    .game-name {
      font-size: 15px;
      font-weight: 700;
      text-align: center;
      margin-bottom: 12px;
      color: #111;
    }

    .rtp-row {
      display: flex;
      align-items: center;
      background: var(--rtp-bg);
      border-radius: 20px;
      padding: 6px 14px;
      margin-bottom: 12px;
      font-size: 13px;
    }
    .rtp-label {
      color: #999;
      flex: 1;
    }
    .rtp-value {
      font-weight: 700;
      color: #111;
    }

    .bonus-row {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
      background: linear-gradient(135deg, #fff8e1, #fff3cd);
      border: 1px solid #ffe082;
      border-radius: 8px;
      padding: 10px 14px;
      margin-bottom: 12px;
      text-align: center;
    }
    .bonus-label {
      font-size: 11.5px;
      font-weight: 600;
      color: #7b5800;
      text-transform: uppercase;
      letter-spacing: 0.4px;
    }
    .bonus-value {
      font-size: 15px;
      font-weight: 800;
      color: #d32f2f;
    }

    .btn-play {
      display: block;
      width: 100%;
      padding: 12px;
      background: linear-gradient(to bottom, #ef5350, #c62828);
      color: #fff;
      font-size: 15px;
      font-weight: 700;
      text-align: center;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      text-decoration: none;
      transition: filter 0.2s;
    }
    .btn-play:hover { filter: brightness(1.1); }

    /* ========== RESPONSIVE ========== */
    @media (max-width: 860px) {
      nav.desktop-nav { display: none; }
      .header-icons { display: flex; }
      .games-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 560px) {
      .games-grid { grid-template-columns: 1fr; }
      .section-title { font-size: 20px; }
    }


    
.faq {
  position: relative;
  margin: 20px 0;
}

.faq-item {
  /* background: #0b66f0; */
  border-radius: 18px;
  padding: 20px 22px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  color: #000000;
  border: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 15px;
}

.faq-item h3,
.faq-item h4 {
  font-size: clamp(18px, 2.6vw, 22px);
  font-weight: 600;
  margin-bottom: 10px;
}
.mobile-bar,
.navigation--collapsed .navigation__panel {
  display: none;
}

.navigation .section-title {
  position: relative;
  /* padding-bottom: 14px; */
  margin-bottom: 18px;
}

.navigation .section-title::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--accent);
  opacity: 0.9;
}

h2 {
  font-size: 30px;
  color: #000000;
}
h3{
  font-size: 25px;
  margin: 15px 0;
}

.navigation__toggle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: none;
  color: #000;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  margin: 10px 0;
}

.navigation__icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #77d9ff 0%, #3e6be5 55%, #4b3fb3 100%);
  position: relative;
  box-shadow: 0 4px 12px rgba(68, 120, 220, 0.45);
}

.navigation__icon::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 4px;
  border-radius: 999px;
  background: #7b3f92;
  right: -6px;
  bottom: -2px;
  transform: rotate(40deg);
}

.navigation__panel {
  margin-top: 16px;
  padding: 20px 24px;
  border-radius: 16px;
  /* background: linear-gradient(180deg, #0d2236 0%, #0c1c2c 100%); */
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 12px 32px;
}

.navigation__link {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
}

.conclusion {
  margin: 20px 0;
}

.section p {
  margin: 10px 0;
  line-height: 1.6;
}

.section-title {
  position: relative;
  margin: 15px 0;
  font-size: 30px;
}

.faq::after,
.section h2::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--accent);
  opacity: 0.9;
}

.section-list {
  list-style: none;
  margin: 20px 0 24px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.section-list li {
  position: relative;
  padding: 11px 16px 11px 46px;
  background: #f9f9f9;
  border-radius: 8px;
  border-left: 3px solid var(--red);
  font-size: 0.95rem;
  line-height: 1.5;
  color: #333;
  transition: background 0.18s, transform 0.15s;
}

.section-list li::before {
  content: "▶";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--red);
  font-size: 0.6rem;
}

.section-list li:hover {
  background: #fff4f4;
  transform: translateX(4px);
}

/* ========== CASINO CARDS ========== */
.casino-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 auto;
  max-width: 700px;
}

.casino-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  padding: 16px 20px;
}

.cc-rank {
  font-size: 22px;
  font-weight: 700;
  color: #555;
  min-width: 28px;
  text-align: center;
}

.cc-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 100px;
}

.cc-logo img {
  width: 80px;
  height: 50px;
  object-fit: contain;
  border-radius: 6px;
  background: #f0f0f0;
}

.cc-name {
  font-size: 13px;
  font-weight: 600;
  color: #333;
  text-align: center;
}

.cc-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cc-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 14px;
}

.cc-label {
  color: #888;
  font-size: 12px;
  white-space: nowrap;
}

.cc-bonus {
  font-weight: 700;
  color: var(--red);
  font-size: 15px;
}

.cc-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 150px;
}

.cc-btn {
  display: block;
  text-align: center;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cc-btn--review {
  background: var(--green);
  color: #fff;
}

.cc-btn--review:hover {
  background: #1b5e20;
}

.cc-btn--play {
  background: var(--red);
  color: #fff;
}

.cc-btn--play:hover {
  background: var(--red-dark);
}

@media (max-width: 700px) {
  .casino-card {
    flex-wrap: wrap;
    gap: 12px;
  }
  .cc-rank {
    display: none;
  }
  .cc-logo {
    width: 100%;
    order: 1;
    align-items: center;
  }
  .cc-logo img {
    width: 130px;
    height: 80px;
  }
  .cc-info {
    min-width: 100%;
    order: 2;
  }
  .cc-actions {
    min-width: 100%;
    order: 3;
    flex-direction: row;
  }
  .cc-btn {
    flex: 1;
  }
}

/* ========== ONLINE CARDS ========== */
.online-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 20px 0;
}

.online-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.oc-logo {
  width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.oc-logo img {
  max-width: 100%;
  max-height: 70px;
  object-fit: contain;
  border-radius: 8px;
  background: #f0f0f0;
  width: 100%;
  height: 70px;
}

.oc-name {
  font-size: 16px;
  font-weight: 700;
  color: #222;
}

.oc-bonus {
  background: #fce4ec;
  color: var(--red);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 12px;
  border-radius: 8px;
  width: 100%;
  line-height: 1.4;
}

.oc-deposit {
  font-size: 13px;
  color: #777;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 6px 10px;
  width: 100%;
}

.oc-btn {
  display: block;
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, var(--red), #ff7043);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: auto;
}

.oc-btn:hover {
  background: linear-gradient(135deg, var(--red-dark), var(--red));
}

.oc-disclaimer {
  font-size: 11px;
  color: #aaa;
}

@media (max-width: 900px) {
  .online-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .online-cards {
    grid-template-columns: 1fr;
  }
}

/* ========== SITE FOOTER ========== */
.site-footer {
  background: #111;
  color: #ccc;
  font-size: 14px;
  margin-top: 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px 32px;
}

.footer-col--about .footer-logo img {
  height: 50px;
  width: auto;
  margin-bottom: 16px;
  /* background: #333; */
  border-radius: 4px;
  display: block;
}

.footer-col--about p {
  line-height: 1.6;
  color: #aaa;
  font-size: 13px;
}

.footer-contact {
  margin-top: 12px;
  font-size: 13px;
}

.footer-contact a {
  color: #ccc;
  text-decoration: none;
}

.footer-contact a:hover {
  color: #fff;
}

.footer-heading {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #aaa;
  text-decoration: none;
  font-size: 13px;
  line-height: 1.4;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid #2a2a2a;
  text-align: center;
  padding: 24px 24px 20px;
}

.footer-disclaimer {
  color: #888;
  font-size: 13px;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 20px;
}

.footer-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.footer-badges img {
  height: 40px;
  width: auto;
  /* background: #222; */
  border-radius: 4px;
  padding: 4px;
}

.footer-copy {
  color: #555;
  font-size: 12px;
}

@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .footer-col--about {
    grid-column: 1 / -1;
  }
}

/* Game Cards (.games-777) */
.games-777 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 24px 0 32px;
}

.game-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.game-card__img-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #eee;
}

.game-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.game-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.game-badge--right {
  left: auto;
  right: 8px;
}

.game-badge--green  { background: #2e7d32; }
.game-badge--pink   { background: #c2185b; }
.game-badge--orange { background: #e65100; }
.game-badge--blue   { background: #1565c0; }

.game-card__info {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.game-card__name {
  font-size: 0.9rem;
  font-weight: 700;
  color: #111;
  margin: 0 0 10px;
  line-height: 1.3;
}

.game-card__rtp {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f5f5f5;
  border-radius: 6px;
  padding: 5px 10px;
  margin-bottom: 10px;
  font-size: 0.85rem;
}

.rtp-label {
  color: #777;
  font-weight: 500;
}

.rtp-value {
  color: var(--red);
  font-weight: 700;
}

.game-card__btn {
  display: block;
  background: linear-gradient(135deg, #ff5722, #ff8a00);
  color: #fff;
  text-align: center;
  padding: 10px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  margin-top: auto;
  transition: opacity 0.2s;
}

.game-card__btn:hover {
  opacity: 0.88;
}

@media (max-width: 900px) {
  .games-777 {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

@media (max-width: 768px) {
  .games-777 {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .game-card {
    flex-direction: row;
    align-items: stretch;
  }

  .game-card__img-wrap {
    width: 130px;
    min-width: 130px;
    aspect-ratio: unset;
    min-height: 100px;
  }

  .game-card__info {
    padding: 10px 12px 12px;
    flex: 1;
  }

  .game-card__name {
    font-size: 0.88rem;
    margin-bottom: 8px;
  }

  table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
}

/* Footer breakpoints */
@media (max-width: 500px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
}

/* Author Box */
.author-box {
  display: grid;
  grid-template-columns: 120px 1fr;
  grid-template-rows: auto auto auto;
  column-gap: 28px;
  row-gap: 6px;
  align-items: start;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  padding: 28px 32px;
  margin: 40px 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.author-box img {
  grid-column: 1;
  grid-row: 1 / 4;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--red);
  align-self: start;
  justify-self: center;
}

.author-box .section-title {
  grid-column: 2;
  grid-row: 1;
  font-size: 1.1rem;
  margin: 0;
}

.author-box p {
  grid-column: 2;
  margin: 0;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.65;
}

.author-box p:first-of-type {
  color: #333;
  font-weight: 500;
}

@media (max-width: 600px) {
  .author-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 20px;
    gap: 12px;
  }
  .author-box img {
    width: 90px;
    height: 90px;
  }
}


.table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 12px;
}

.section-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  color: var(--text);
  /* background: #141924; */
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35);
  margin: 10px 0;
}

.section-table th,
.section-table td {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow-wrap: anywhere;
}

.section-table thead th {
  font-weight: 600;
  /* background: #141924; */
}

.section-table tbody tr:nth-child(odd) {
  background: #26428b;
  color: #ffffff;
  font-weight: 600;
}

.section-table tbody tr:nth-child(even) {
  color: #000000;
}

/* === Цветная таблица (светлый стиль с красными акцентами) === */
.section-table--casino {
  background: #fff;
  border: 1px solid #e8e8e8;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.section-table--casino thead th {
  background: #fff;
  color: #c0392b;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 2px solid #c0392b;
  border-color: #e8e8e8;
}

.section-table--casino tbody tr:nth-child(odd) {
  background: #fff;
  color: #333;
  font-weight: 400;
}

.section-table--casino tbody tr:nth-child(even) {
  background: #fafafa;
  color: #333;
}

.section-table--casino tbody tr:hover {
  background: #fff5f5;
}

.section-table--casino tbody td:first-child {
  color: #c0392b;
  font-weight: 700;
}

.section-table--casino tbody td:nth-child(2) {
  color: #c0392b;
  font-weight: 600;
}

.section-table--casino tbody td {
  border-color: #f0f0f0;
}

@media (max-width: 768px) {
  .section-table--casino td::before {
    color: #c0392b;
  }
}

@media (max-width: 768px) {
  .section-table thead {
    display: none;
  }

  .section-table,
  .section-table tbody,
  .section-table tr,
  .section-table td {
    display: block;
    width: 100%;
  }

  .section-table tr {
    border-radius: 8px;
    margin-bottom: 12px;
    border: 1px solid #e8e8e8;
    overflow: hidden;
  }

  .section-table td {
    padding: 10px 14px;
    text-align: left;
    border: none;
    border-bottom: 1px solid #f0f0f0;
    white-space: normal;
    font-size: 13px;
    background: inherit;
    color: inherit;
  }

  .section-table td::before {
    content: attr(data-label);
    display: block;
    font-weight: 700;
    font-size: 11px;
    color: #888;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }

  .section-table td:last-child {
    border-bottom: none;
  }
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
  /* opacity: 0.7; */
}

h1 {
  font-family: "Antonio", sans-serif;
  font-size: clamp(32px, 4vw, 44px);
  letter-spacing: 0.02em;
}

.btn {
  font-family: inherit;
  padding: 12px 22px;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn--primary {
  background: #991700;
  color: #ffffff;
  text-decoration: none;
  /* box-shadow: 0 12px 24px rgba(255, 53, 111, 0.35); */
}
.btn--primary:hover {
  background: #0d572c;
  transform: scale(1.02);
  transition: background 0.3s ease, transform 0.3s ease;
}
/* ========== PAGE CARD ========== */
.page-card {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 24px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  padding: 20px;
  margin-bottom: 24px;
  overflow: hidden;
  justify-content: space-evenly;
}

.page-card__img {
  flex-shrink: 0;
  width: 220px;
  height: 220px;
  border-radius: 10px;
  overflow: hidden;
}

.page-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-card__body {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
}

.page-card__badge {
  display: inline-block;
  background: #fff3e0;
  color: #e65100;
  font-weight: 700;
  font-size: 14px;
  padding: 4px 12px;
  border-radius: 20px;
  width: fit-content;
}

.page-card__bonus {
  font-size: 22px;
  font-weight: 700;
  color: var(--red);
  line-height: 1.2;
}

.page-card__btn {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 12px 32px;
  border-radius: 8px;
  text-decoration: none;
  width: fit-content;
  transition: background 0.3s ease, transform 0.3s ease;
}

.page-card__btn:hover {
  background: #1b5e20;
  transform: scale(1.02);
}

@media (max-width: 600px) {
  .page-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .page-card__img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }
  .page-card__badge {
    margin: 0 auto;
  }
  .page-card__btn {
    width: 100%;
    text-align: center;
  }
}

.page-link{
  font-weight: 700;
  font-style: italic;
  color: #000768;
}