*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #1a0a0a;
  color: #e8e8e8;
  line-height: 1.5;
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: hidden;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  padding: 0.75rem 1rem;
  background: #c9a227;
  color: #1a0a0a;
  z-index: 100;
  text-decoration: none;
  font-weight: bold;
}

.skip-link:focus {
  top: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.page-header {
  background: linear-gradient(180deg, #2d0f0f 0%, #1a0a0a 100%);
  padding: 0.75rem 1rem;
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(201, 162, 39, 0.3);
}

.page-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  flex-shrink: 0;
  text-decoration: none;
  color: #c9a227;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.05em;
}

.logo-text {
  text-shadow: 0 0 20px rgba(201, 162, 39, 0.5);
}

.page-nav {
  flex-shrink: 0;
}

.page-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.75rem;
}

.page-nav-list .nav-link {
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}

.page-nav-list .nav-link:hover {
  text-decoration: underline;
}

.nav-link-promo {
  color: #e8c547;
  background: rgba(232, 197, 71, 0.12);
}

.nav-link-promo:hover {
  background: rgba(232, 197, 71, 0.25);
  color: #f5d654;
}

.nav-link-support {
  color: #d4af37;
  background: rgba(212, 175, 55, 0.12);
}

.nav-link-support:hover {
  background: rgba(212, 175, 55, 0.25);
  color: #e8c547;
}

.btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
}

.btn:focus {
  outline: 2px solid #c9a227;
  outline-offset: 2px;
}

.btn-login {
  background: #fff;
  color: #1a0a0a;
}

.btn-register {
  background: #228b22;
  color: #fff;
}

.btn-cta {
  background: linear-gradient(135deg, #c9a227, #b8860b);
  color: #1a0a0a;
  padding: 0.875rem 2rem;
  font-size: 1.1rem;
}

.btn-small {
  padding: 0.4rem 0.8rem;
  font-size: 0.85rem;
  background: #8b0000;
  color: #fff;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  color: #e8e8e8;
}

.menu-toggle-bar {
  width: 24px;
  height: 2px;
  background: currentColor;
}

.mobile-menu {
  display: none;
}

.hero-banner {
  position: relative;
  width: 100%;
  min-height: 320px;
  max-height: 85vh;
  overflow: hidden;
}

.hero-banner-img {
  width: 100%;
  height: auto;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

.hero-banner-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(26, 10, 10, 0.55);
  text-align: center;
  padding: 1.5rem;
}

.hero-title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  font-weight: bold;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.hero-subtitle {
  margin: 0 0 1.25rem;
  font-size: clamp(0.95rem, 2.5vw, 1.2rem);
  color: #e8c547;
}

.slots-section {
  padding: 2.5rem 1rem;
  background: #0d0505;
}

.slots-section-inner {
  max-width: 450px;
  margin: 0 auto;
}

.section-title {
  margin: 0 0 1.5rem;
  font-size: 1.5rem;
  text-align: center;
  color: #c9a227;
}

.slots-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.slot-card {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}

.slot-card:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(201, 162, 39, 0.25);
}

.slot-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 280/180;
  object-fit: cover;
  display: block;
}

.promo-section {
  padding: 2rem 1rem;
  background: #1a0a0a;
}

.promo-section-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.promo-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.promo-card {
  background: linear-gradient(145deg, #2d0f0f, #1a0a0a);
  border: 1px solid rgba(201, 162, 39, 0.4);
  border-radius: 8px;
  padding: 1.25rem;
  text-align: center;
}

.promo-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
  color: #e8c547;
}

.site-footer {
  background: #0d0505;
  padding: 2rem 1rem;
  border-top: 1px solid rgba(201, 162, 39, 0.2);
}

.site-footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.footer-payments {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-payments img {
  height: 28px;
  width: auto;
  max-width: 48px;
  object-fit: contain;
  filter: brightness(1.1);
}

.footer-table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 1rem;
}

.footer-table {
  width: 100%;
  min-width: 280px;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin: 0 auto;
}

.footer-table th,
.footer-table td {
  padding: 0.5rem 0.75rem;
  text-align: left;
  border: 1px solid rgba(201, 162, 39, 0.25);
}

.footer-table th {
  background: rgba(201, 162, 39, 0.15);
  color: #c9a227;
}

.footer-table tbody tr:nth-child(even) {
  background: rgba(0,0,0,0.2);
}

@media (max-width: 767px) {
  .footer-table th,
  .footer-table td {
    padding: 0.4rem 0.5rem;
    font-size: 0.85rem;
  }
}

.footer-links {
  margin-bottom: 1rem;
}

.footer-links a {
  color: #b0b0b0;
  text-decoration: none;
  margin: 0 0.5rem;
  font-size: 0.9rem;
}

.age-badge {
  display: inline-block;
  margin-left: 0.5rem;
  padding: 0.2rem 0.5rem;
  background: #8b0000;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: bold;
}

.footer-social a {
  color: #c9a227;
  text-decoration: none;
  margin: 0 0.5rem;
  font-size: 0.9rem;
}

.footer-legal {
  margin: 1rem 0 0;
  font-size: 0.8rem;
  color: #888;
}

/* Article content */
.article-content {
  padding: 2rem 1rem 3rem;
  background: linear-gradient(180deg, #1a0a0a 0%, #0d0505 100%);
  border-top: 1px solid rgba(201, 162, 39, 0.2);
}

.article-content-inner {
  max-width: 800px;
  margin: 0 auto;
}

.article-content h2 {
  color: #c9a227;
  font-size: 1.35rem;
  margin: 2rem 0 0.75rem;
  padding-bottom: 0.25rem;
}

.article-content h2:first-of-type {
  margin-top: 0;
}

.article-content h3 {
  color: #d4b84a;
  font-size: 1.1rem;
  margin: 1.5rem 0 0.5rem;
}

.article-content p {
  margin: 0 0 1rem;
  color: #d0d0d0;
}

.article-content ul {
  margin: 0 0 1rem 1.25rem;
  padding: 0;
}

.article-content li {
  margin-bottom: 0.5rem;
}

.article-content .table-wrap {
  overflow-x: auto;
  margin: 1rem 0 1.5rem;
  border: 1px solid rgba(201, 162, 39, 0.25);
  border-radius: 6px;
}

.article-content .table-wrap table {
  width: 100%;
  min-width: 280px;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.article-content .table-wrap th,
.article-content .table-wrap td {
  padding: 0.5rem 0.75rem;
  text-align: left;
  border: 1px solid rgba(201, 162, 39, 0.2);
}

.article-content .table-wrap tbody tr:first-child td {
  background: rgba(201, 162, 39, 0.12);
  font-weight: 600;
  color: #c9a227;
}

.article-content .table-wrap tbody tr:nth-child(even) {
  background: rgba(0, 0, 0, 0.25);
}

@media (min-width: 768px) {
  .page-header {
    padding: 1rem 1.5rem;
  }
  .hero-banner {
    min-height: 420px;
  }
  .slots-grid {
    gap: 1.25rem;
  }
  .slot-card img {
    aspect-ratio: 16/10;
  }
}

@media (max-width: 767px) {
  .page-nav-list {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  .mobile-menu {
    display: none;
    flex-direction: column;
    padding: 1rem;
    background: #2d0f0f;
    border-top: 1px solid rgba(201, 162, 39, 0.3);
  }
  .mobile-menu a {
    padding: 0.75rem;
    color: #e8e8e8;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .mobile-menu.open {
    display: flex;
  }
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
  }
  .footer-links a {
    margin: 0;
  }
}

@media (max-width: 480px) {
  .slots-grid {
    gap: 0.75rem;
  }
}

/* ——— Current site layout (index.html) ——— */

.skip-to-content {
  position: absolute;
  top: -100px;
  left: 0;
  padding: 0.75rem 1rem;
  background: #c9a227;
  color: #1a0a0a;
  z-index: 200;
  text-decoration: none;
  font-weight: bold;
}

.skip-to-content:focus {
  top: 0;
}

.top-bar {
  background: linear-gradient(180deg, #2d0f0f 0%, #1a0a0a 100%);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(201, 162, 39, 0.3);
}

.top-bar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1rem;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-logo {
  font-size: 1.35rem;
  font-weight: bold;
  letter-spacing: 0.06em;
  color: #c9a227;
  text-shadow: 0 0 16px rgba(201, 162, 39, 0.4);
}

.top-bar-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem 0.75rem;
}

.action-link {
  text-decoration: none;
  padding: 0.45rem 0.65rem;
  font-size: 0.9rem;
  font-weight: bold;
  border-radius: 4px;
  white-space: nowrap;
}

.brand {
  flex-shrink: 0;
}

.action-promo {
  color: #e8c547;
  background: rgba(232, 197, 71, 0.12);
}

.action-promo:hover {
  background: rgba(232, 197, 71, 0.22);
  color: #f5d654;
}

.action-support {
  color: #d4af37;
  background: rgba(212, 175, 55, 0.12);
}

.action-support:hover {
  background: rgba(212, 175, 55, 0.22);
  color: #e8c547;
}

.action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  text-align: center;
}

.action-btn:hover {
  opacity: 0.92;
}

.action-btn:focus-visible {
  outline: 2px solid #c9a227;
  outline-offset: 2px;
}

.action-login {
  background: #fff;
  color: #1a0a0a;
}

.action-register {
  background: #228b22;
  color: #fff;
}

.action-small {
  padding: 0.4rem 0.85rem;
  font-size: 0.85rem;
  background: #8b0000;
  color: #fff;
  margin-top: 0.75rem;
}

.action-cta {
  background: linear-gradient(135deg, #c9a227, #b8860b);
  color: #1a0a0a;
  padding: 0.875rem 1.75rem;
  font-size: 1.05rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0.5rem;
  border: none;
  background: transparent;
  color: #e8e8e8;
  cursor: pointer;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
}

.drawer {
  display: none;
  flex-direction: column;
  padding: 0 1rem 1rem;
  background: #2d0f0f;
  border-top: 1px solid rgba(201, 162, 39, 0.25);
  gap: 0.25rem;
}

.drawer a {
  padding: 0.75rem 0.5rem;
  color: #e8e8e8;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.drawer a:last-child {
  border-bottom: none;
}

.drawer.open {
  display: flex;
}

.main-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem 2.5rem;
}

.banner-block {
  position: relative;
  width: calc(100% + 2rem);
  max-width: none;
  margin-left: -1rem;
  margin-right: -1rem;
  min-height: 400px;
  min-height: max(400px, 42vh);
  max-height: 92vh;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  justify-content: center;
  border-radius: 0;
}

.banner-block-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.banner-block-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.banner-block-cta {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.25rem;
  background: rgba(26, 10, 10, 0.6);
}

.banner-headline {
  margin: 0 0 0.35rem;
  font-size: clamp(0.95rem, 3vw, 1.15rem);
  color: #e8c547;
  font-weight: bold;
}

.banner-tagline {
  margin: 0 0 1rem;
  font-size: clamp(1.25rem, 4vw, 2rem);
  font-weight: bold;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
  line-height: 1.25;
}

.review-content {
  padding: 2rem 0 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.review-content h1 {
  font-size: clamp(1.35rem, 4vw, 1.75rem);
  color: #fff;
  line-height: 1.3;
  margin: 0 0 1rem;
}

.review-content h2 {
  color: #c9a227;
  font-size: 1.3rem;
  margin: 2rem 0 0.65rem;
  padding-bottom: 0.2rem;
}

.review-content h2:first-of-type {
  margin-top: 1.25rem;
}

.review-content h3 {
  color: #d4b84a;
  font-size: 1.05rem;
  margin: 1.35rem 0 0.45rem;
}

.review-content p {
  margin: 0 0 1rem;
  color: #d0d0d0;
}

.review-content ul {
  margin: 0 0 1rem 1.25rem;
  padding: 0;
}

.review-content li {
  margin-bottom: 0.45rem;
}

.table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 1rem 0 1.5rem;
  border: 1px solid rgba(201, 162, 39, 0.25);
  border-radius: 6px;
}

.info-table {
  width: 100%;
  min-width: 280px;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin: 0;
}

.info-table th,
.info-table td {
  padding: 0.55rem 0.75rem;
  text-align: left;
  border: 1px solid rgba(201, 162, 39, 0.2);
}

.info-table tbody tr:first-child th {
  background: rgba(201, 162, 39, 0.18);
  color: #c9a227;
  font-weight: 600;
}

.info-table thead th {
  background: rgba(201, 162, 39, 0.18);
  color: #c9a227;
}

.info-table tbody tr:nth-child(even) td {
  background: rgba(0, 0, 0, 0.2);
}

.content-block {
  padding: 2rem 0 1rem;
  border-top: 1px solid rgba(201, 162, 39, 0.15);
}

.block-heading {
  text-align: center;
  color: #c9a227;
  font-size: 1.45rem;
  margin: 0 0 1.5rem;
}

.game-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1rem;
}

.game-card {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}

.game-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(201, 162, 39, 0.2);
}

.game-card:focus-visible {
  outline: 2px solid #c9a227;
  outline-offset: 3px;
}

.game-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 280 / 180;
  object-fit: cover;
  display: block;
  vertical-align: middle;
}

.offers-block {
  padding: 2rem 0 0;
}

.offers-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.offer-box {
  background: linear-gradient(145deg, #2d0f0f, #1a0a0a);
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-radius: 8px;
  padding: 1.25rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.offer-box h3 {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
  color: #e8c547;
}

.bottom-bar {
  background: #0d0505;
  border-top: 1px solid rgba(201, 162, 39, 0.2);
  padding: 2rem 1rem;
  margin-top: 1rem;
}

.bottom-bar-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.payment-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem 1.25rem;
  margin-bottom: 1.5rem;
}

.payment-strip img {
  height: 28px;
  width: auto;
  max-width: 52px;
  object-fit: contain;
  filter: brightness(1.08);
}

.bottom-bar .table-scroll {
  margin-bottom: 1.25rem;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin-bottom: 1rem;
}

.legal-links a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.9rem;
}

.legal-links a:hover {
  color: #c9a227;
  text-decoration: underline;
}

.age-18 {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  background: #8b0000;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: bold;
  color: #fff;
}

.social-links {
  margin-bottom: 0.75rem;
}

.social-links a {
  color: #c9a227;
  text-decoration: none;
  margin: 0 0.5rem;
  font-size: 0.9rem;
}

.social-links a:hover {
  text-decoration: underline;
}

.disclaimer {
  margin: 0;
  font-size: 0.8rem;
  color: #888;
}

@media (max-width: 767px) {
  .top-bar-actions {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .drawer:not(.open) {
    display: none;
  }

  .game-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .info-table th,
  .info-table td {
    padding: 0.45rem 0.55rem;
    font-size: 0.85rem;
  }
}

@media (min-width: 768px) {
  .top-bar-container {
    padding: 1rem 1.25rem;
  }

  .drawer,
  .drawer.open {
    display: none !important;
  }

  .hamburger {
    display: none !important;
  }

  .banner-block {
    min-height: 520px;
    min-height: max(520px, 48vh);
    border-radius: 0 0 10px 10px;
  }

  .game-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .banner-block {
    min-height: 560px;
    min-height: max(560px, 52vh);
  }

  .game-cards {
    grid-template-columns: repeat(6, 1fr);
  }
}
