* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #111827;
  color: #f3f4f6;
  line-height: 1.6;
}

img {
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

.wrap {
  width: min(1100px, 92%);
  margin: auto;
}

.narrow {
  max-width: 760px;
}

.disclosure-bar {
  background: #facc15;
  color: #111827;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 8px 0;
}

.site-header {
  background: #0b1220;
  border-bottom: 1px solid #1f2937;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.logo {
  color: #facc15;
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
}

.site-nav {
  display: flex;
  gap: 20px;
}

.site-nav a {
  color: #f3f4f6;
  text-decoration: none;
}

.site-nav a:hover,
.text-link:hover,
.footer-grid a:hover {
  color: #facc15;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

.hero,
.page-hero {
  padding: 80px 0;
  background: linear-gradient(135deg, #111827, #1e293b);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero h1,
.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1.1;
  margin-bottom: 20px;
}

.eyebrow {
  color: #facc15;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-text {
  color: #d1d5db;
  max-width: 650px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 10px;
  border: 0;
  text-decoration: none;
  font-weight: bold;
}

.btn:disabled,
input:disabled {
  cursor: not-allowed;
  opacity: 0.72;
}

.primary {
  background: #facc15;
  color: #111827;
}

.secondary {
  background: #374151;
  color: white;
}

.full-btn {
  width: 100%;
  margin-top: 12px;
}

.hero-card,
.info-card,
.notice-box,
.review-card,
.split-card,
.newsletter-card {
  background: #1f2937;
  border: 1px solid #374151;
  border-radius: 18px;
  padding: 24px;
}

.game-card,
.review-card,
.info-card {
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.game-card:hover,
.review-card:hover,
.info-card:hover {
  transform: translateY(-4px);
  border-color: #facc15;
}

.badge {
  display: inline-block;
  background: #facc15;
  color: #111827;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: bold;
}

.section {
  padding: 70px 0;
}

.compact-section {
  padding: 42px 0;
}

.alt {
  background: #0f172a;
}

.section-head {
  margin-bottom: 32px;
}

.split-head,
.split-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.check-list p {
  background: #1f2937;
  padding: 14px;
  border-radius: 10px;
}

.notice-box a,
.text-link {
  color: #facc15;
  text-decoration: none;
}

.legal-page h2 {
  margin-top: 40px;
  color: #facc15;
}

.rating-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid #374151;
  border-radius: 18px;
  background: #1f2937;
}

.compare-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.compare-table th,
.compare-table td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid #374151;
  vertical-align: top;
}

.compare-table th {
  background: #0b1220;
  color: #facc15;
}

.compare-table tr:last-child td {
  border-bottom: 0;
}

.newsletter-card,
.split-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.signup-placeholder {
  width: min(420px, 100%);
  display: grid;
  gap: 10px;
}

.signup-placeholder label {
  font-weight: 700;
  color: #facc15;
}

.signup-placeholder input {
  width: 100%;
  padding: 14px;
  border: 1px solid #374151;
  border-radius: 10px;
  background: #111827;
  color: #f3f4f6;
}

.slot-machine-card {
  border: 2px solid #facc15;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}

.game-label {
  display: block;
  color: #facc15;
  font-weight: 700;
  margin: 20px 0 8px;
}

.game-select {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #374151;
  background: #111827;
  color: #f3f4f6;
}

.slot-reels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 24px 0;
}

.reel {
  min-height: 110px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  border: 2px solid #374151;
  background: #020617;
  font-size: clamp(2.8rem, 8vw, 5rem);
  box-shadow: inset 0 0 22px rgba(250, 204, 21, 0.15);
}

.slot-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.slot-stats div {
  background: #111827;
  border: 1px solid #374151;
  border-radius: 12px;
  padding: 12px;
  text-align: center;
}

.slot-stats strong,
.slot-stats span {
  display: block;
}

.slot-stats strong {
  color: #facc15;
  font-size: 1.4rem;
}

.slot-stats span {
  color: #d1d5db;
  font-size: 0.8rem;
}

.slot-message {
  min-height: 28px;
  color: #facc15;
  font-weight: 700;
}

.faq-section details {
  background: #1f2937;
  border: 1px solid #374151;
  border-radius: 14px;
  padding: 16px 18px;
  margin: 12px 0;
}

.faq-section summary {
  cursor: pointer;
  color: #facc15;
  font-weight: 700;
}

.lou-section {
  background: linear-gradient(135deg, #0b1220, #1e293b);
  border: 2px solid #facc15;
  border-radius: 20px;
  padding: 24px;
  margin-top: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.lou-box {
  display: flex;
  align-items: center;
  gap: 18px;
}

.lou-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid #facc15;
  background: #111827;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
}

.lou-box h3 {
  margin: 0 0 6px;
  color: #facc15;
}

.lou-box p {
  margin: 0;
  color: #e5e7eb;
  font-size: 1rem;
}

.site-footer {
  background: #020617;
  padding: 40px 0;
  border-top: 1px solid #1f2937;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(140px, 1fr));
  gap: 24px;
}

.footer-grid a {
  color: #d1d5db;
  display: block;
  margin-bottom: 8px;
  text-decoration: none;
}

.small-note {
  color: #9ca3af;
  font-size: 0.9rem;
  margin-top: 12px;
}

@media (max-width: 768px) {
  .hero-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 16px;
  }

  .site-nav.show {
    display: flex;
  }

  .nav-wrap {
    flex-wrap: wrap;
  }

  .lou-box,
  .split-head,
  .split-card,
  .newsletter-card,
  .rating-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .lou-box {
    text-align: center;
    align-items: center;
  }

  .btn,
  .split-card .btn {
    width: 100%;
  }

  .slot-reels,
  .slot-stats {
    gap: 8px;
  }

  .reel {
    min-height: 86px;
  }
}
