/* Google Font loaded via <link> in HTML <head> */

:root {
  --bg: #f2f4f7;
  --bg-accent: #e8edf3;
  --surface: #ffffff;
  --surface-soft: #f5f7fa;
  --surface-strong: #eaeef4;
  --text: #1a2332;
  --text-soft: #5a6a80;
  --heading: #0f1a2b;
  --accent: #e8950a;
  --accent-strong: #f5a820;
  --accent-contrast: #ffffff;
  --line: #e2e8f0;
  --line-strong: #e8950a;
  --shadow: rgba(15, 26, 43, 0.08);
  --shadow-strong: rgba(15, 26, 43, 0.16);
  --cta-blue: #29bdf2;
  --cta-blue-strong: #1498d9;
  --cta-blue-shadow: rgba(41, 189, 242, 0.32);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Barlow', sans-serif;
  font-size: 1.0625rem;
  line-height: 1.75;
}

header {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 12px var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.header-buttons {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-shrink: 0;
}

nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

nav a {
  color: var(--heading);
  text-decoration: none;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--accent-strong);
}

nav a[aria-current="page"] {
  color: var(--accent-strong);
  border-bottom: 2px solid var(--accent);
}

.nav-toggle,
#navToggle {
  display: none;
  min-height: 44px;
  min-width: 44px;
  background: none;
  border: none;
  color: var(--heading);
  font-size: 1.5rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

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

.hero {
  max-width: 100%;
  margin: 0 auto 2rem;
  text-align: left;
  background: none;
  border: none;
  box-shadow: none;
  padding: 1rem 0;
}

.hero h1 {
  text-align: center;
  font-size: 2.5rem;
}

.hero__lead {
  color: var(--text-soft);
  max-width: 100%;
  margin: 0 0 1rem;
  line-height: 1.7;
}

.hero-banner {
  display: block;
  margin-bottom: 2rem;
  overflow: hidden;
}

.hero-banner--full {
  width: 100vw;
  margin-top: -2.5rem;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-bottom: 2rem;
}

.hero-banner__inner {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  overflow: hidden;
}

.hero-banner__image {
  display: block;
  width: min(100%, 1480px);
  height: auto;
  object-fit: cover;
}

.hero-banner__content {
  position: absolute;
  inset: 0;
  width: min(100%, 1480px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem 2rem 2.5rem 5%;
  background: linear-gradient(90deg,
    rgba(10, 18, 30, 0.82) 0%,
    rgba(10, 18, 30, 0.72) 28%,
    rgba(10, 18, 30, 0.3) 50%,
    transparent 66%
  );
}

.hero-banner__label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-strong);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border: 1px solid var(--accent-strong);
  border-radius: 4px;
  padding: 0.2rem 0.65rem;
  margin: 0 0 0.9rem;
  align-self: flex-start;
}

.hero-banner__title {
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin: 0 0 1.75rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-banner__cta {
  align-self: flex-start;
  font-size: 1.05rem;
  padding: 0.95rem 2.25rem;
  background: linear-gradient(180deg, #f9c84a, var(--accent) 50%, #b8781e);
  border-color: rgba(255, 200, 50, 0.4);
  box-shadow:
    0 4px 20px rgba(207, 149, 42, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  color: #fff;
}

.hero-banner__cta:hover {
  background: linear-gradient(180deg, #fbd45e, #e8a020 50%, #c8851e);
  color: #fff;
}

.slot-showcase {
  margin: 1.5rem 0 2rem;
}

.slot-showcase h2 {
  margin-top: 0;
}

.slot-showcase__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}

.slot-card {
  display: grid;
  gap: 0.45rem;
  align-content: start;
  padding: 0;
  text-decoration: none;
  position: relative;
  isolation: isolate;
}

.slot-card__image {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(194, 171, 123, 0.45);
  box-shadow: 0 14px 28px rgba(24, 47, 77, 0.12);
  background: var(--surface-soft);
}

.slot-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(18, 38, 33, 0.1), rgba(18, 38, 33, 0.44));
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
  z-index: 1;
}

.slot-card::after {
  content: "";
  position: absolute;
  top: min(22vw, 86px);
  left: 50%;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  transform: translate(-50%, -50%) scale(0.92);
  background-color: rgba(207, 149, 42, 0.96);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M9 7.5v9l7-4.5-7-4.5Z' fill='%23122a22'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 28px 28px;
  box-shadow: 0 16px 28px rgba(18, 38, 33, 0.26);
  opacity: 0;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
  pointer-events: none;
  z-index: 2;
}

.slot-card:hover::before,
.slot-card:hover::after,
.slot-card:focus-visible::before,
.slot-card:focus-visible::after,
.slot-card.is-armed::before,
.slot-card.is-armed::after {
  opacity: 1;
}

.slot-card:hover::after,
.slot-card:focus-visible::after,
.slot-card.is-armed::after {
  transform: translate(-50%, -50%) scale(1);
}

.slot-card__title {
  color: var(--heading);
  font-weight: 700;
  line-height: 1.35;
}

.slot-card__provider {
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.35;
}

@media (max-width: 1024px) {
  .hero-banner--full {
    margin-top: -2.5rem;
  }

  .slot-showcase__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.hero__points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  text-align: left;
}

.hero__points li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.9rem 1.1rem;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.5;
  box-shadow: 0 2px 8px rgba(24, 47, 77, 0.06);
}

.hero__points-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  line-height: 1.4;
}

.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 12px;
  border: 1px solid var(--line);
  box-shadow: 0 4px 16px var(--shadow);
  margin: 1.5rem 0;
}

.info-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.95rem;
}

.info-table thead tr {
  background: linear-gradient(180deg, #5ed8ff, var(--cta-blue) 45%, var(--cta-blue-strong));
}

.info-table thead th {
  padding: 0.9rem 1.5rem;
  text-align: left;
  font-weight: 700;
  color: #fff;
  font-size: 0.95rem;
  text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.info-table tbody tr {
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  transition: background 0.2s;
}

.info-table tbody tr:last-child {
  border-bottom: none;
}

.info-table tbody tr:hover {
  background: rgba(207, 149, 42, 0.1);
}

.info-table tbody td {
  padding: 0.85rem 1.5rem;
  color: var(--heading);
  vertical-align: top;
}

.info-table tbody td:first-child {
  font-weight: 600;
  width: 30%;
  color: var(--text-soft);
}

.toc {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0 0 2rem;
  padding: 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(24, 47, 77, 0.08);
}

.toc a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.45rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1.35;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
}

.games-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 1.5rem 0;
}

.games-image--small {
  width: 360px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.cta-inline {
  margin: 1.25rem 0 2rem;
  text-align: center;
}

.hero + .info-table ~ .cta-inline,
section:not(.hero) .cta-inline {
  text-align: center;
}

.cta-inline .btn-play {
  min-width: 260px;
  font-size: 1.05rem;
  padding: 1rem 2.5rem;
}

h1 {
  color: var(--heading);
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
  text-align: center;
  line-height: 1.3;
}

h2 {
  color: var(--heading);
  font-size: 1.5rem;
  border-left: 4px solid var(--accent);
  padding-left: 0.75rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

h3 {
  color: var(--text);
  font-size: 1.15rem;
  margin-top: 2rem;
  margin-bottom: 0.6rem;
}

p {
  margin-bottom: 1.25rem;
  line-height: 1.75;
  color: var(--text-soft);
}

section {
  background: var(--surface);
  border-radius: 10px;
  padding: 1.75rem 2rem;
  margin-bottom: 2rem;
  border: 1px solid var(--line);
  box-shadow: 0 4px 16px var(--shadow);
}

section h2 {
  margin-top: 0;
  border-left: 4px solid var(--accent);
  border-bottom: none;
  padding-left: 0.75rem;
  padding-bottom: 0;
  margin-bottom: 1rem;
}

table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 0;
}

th {
  background: linear-gradient(180deg, #5ed8ff, var(--cta-blue) 45%, var(--cta-blue-strong));
  color: #fff;
  padding: 1rem 1.05rem;
  text-align: left;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.78rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

td {
  padding: 0.95rem 1.05rem;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  text-transform: capitalize;
}

tr:nth-child(even) td {
  background: var(--surface-soft);
}

tr:hover td {
  background: rgba(232, 149, 10, 0.06);
}

a {
  color: var(--heading);
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent-strong);
}

strong {
  color: var(--text);
  font-weight: 700;
}

footer {
  background: var(--surface);
  text-align: center;
  padding: 2.5rem 2rem;
  margin-top: 4rem;
  font-size: 0.875rem;
  color: var(--text-soft);
  border-top: 1px solid var(--line);
}

footer a {
  color: var(--heading);
}

ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}

ol li {
  margin-bottom: 0.55rem;
  padding-left: 0.5rem;
  line-height: 1.7;
}

ul {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}

ul li {
  margin-bottom: 0.55rem;
  line-height: 1.7;
  color: var(--text-soft);
}

img {
  max-width: 100%;
  height: auto;
}

.btn-play {
  min-height: 50px;
  padding: 0.9rem 2rem;
  white-space: normal;
  display: inline-block;
  background: linear-gradient(180deg, #5ed8ff, var(--cta-blue) 45%, var(--cta-blue-strong));
  color: #fefefe;
  border: 1px solid rgba(201, 150, 60, 0.55);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  box-shadow:
    0 12px 26px var(--cta-blue-shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.38);
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-play:hover {
  background: linear-gradient(180deg, #80e2ff, #39c6f7 45%, #1eace8);
  color: #fefefe;
  transform: translateY(-1px);
  box-shadow:
    0 16px 30px rgba(20, 152, 217, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.btn-header {
  padding: 0.6rem 1.5rem;
  font-size: 0.9rem;
  white-space: nowrap;
  flex-shrink: 0;
  min-height: unset;
  font-weight: 700;
}

.btn-signin {
  min-height: 44px;
  padding: 0.75rem 1.5rem;
  white-space: normal;
  display: inline-block;
  background: transparent;
  color: var(--heading);
  border: 2px solid var(--line-strong);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn-signin:hover {
  background: var(--heading);
  color: var(--accent-contrast);
}

.nav-play-mobile {
  display: none;
}

.site-logo a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: transparent;
  font-size: 0;
  text-decoration: none;
}

.site-logo a:hover {
  color: transparent;
}

.site-logo img {
  width: auto;
  height: 48px;
  object-fit: contain;
}

.faq {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq__item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.faq__item:hover {
  box-shadow: 0 12px 26px rgba(24, 47, 77, 0.1);
}

.faq__item h3 {
  margin: 0;
  padding: 0;
  border: none;
  font-size: inherit;
  color: inherit;
}

.faq__question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  padding: 1.1rem 1.25rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background 0.2s ease, color 0.2s ease;
  font-family: 'Barlow', sans-serif;
}

.faq__question:hover {
  background: var(--surface-soft);
}

.faq__question::after {
  content: "+";
  color: var(--accent);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.faq__question[aria-expanded="true"] {
  color: var(--heading);
  background: var(--surface-soft);
  border-bottom: 1px solid var(--line);
}

.faq__question[aria-expanded="true"]::after {
  content: "−";
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq__answer p {
  padding: 1rem 1.25rem 1.1rem;
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .header-buttons {
    display: none;
  }

  .nav-toggle,
  #navToggle {
    display: flex;
  }

  nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface);
    padding: 1rem 2rem;
    gap: 0;
    z-index: 99;
    box-shadow: 0 14px 30px rgba(24, 76, 64, 0.14);
  }

  nav ul li {
    min-height: 44px;
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
  }

  nav ul.nav-open {
    display: flex;
  }

  .nav-play-mobile {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
  }

  main {
    padding: 1rem;
  }

  header {
    padding: 0.75rem 1rem;
  }

  section {
    padding: 1.25rem 1rem;
  }

  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.3rem;
  }

  .hero__points {
    grid-template-columns: 1fr;
  }

  .info-table tbody td:first-child {
    width: auto;
  }

  .hero-banner--full {
    margin-top: -1rem;
  }

  .hero-banner__inner {
    min-height: 220px;
    overflow: hidden;
  }

  .hero-banner__image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center center;
  }

  .hero-banner__content {
    background: linear-gradient(180deg,
      rgba(10, 18, 30, 0.75) 0%,
      rgba(10, 18, 30, 0.85) 100%
    );
    padding: 1.25rem 1.25rem;
    justify-content: flex-end;
  }

  .hero-banner__label {
    font-size: 0.7rem;
    margin: 0 0 0.4rem;
  }

  .hero-banner__title {
    font-size: 1.4rem;
    margin: 0 0 1rem;
  }

  .hero-banner__cta {
    font-size: 0.9rem;
    padding: 0.7rem 1.5rem;
  }

  .slot-showcase__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-card {
    min-height: 280px;
  }

  .hero h1 {
    text-align: center;
  }

  .toc {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .slot-card::after {
    top: min(28vw, 84px);
    width: 54px;
    height: 54px;
    background-size: 26px 26px;
  }

  .slot-showcase__grid {
    gap: 0.85rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  p {
    font-size: 0.95rem;
  }

  li {
    font-size: 0.95rem;
  }

  table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    font-size: 0.875rem;
  }

  .review-card__pros-cons {
    grid-template-columns: 1fr;
  }
}

.mobile-cta-bar {
  display: none;
}

@media (max-width: 768px) {
  .mobile-cta-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--surface);
    padding: 10px 16px;
    gap: 10px;
    box-shadow: 0 -10px 24px rgba(24, 76, 64, 0.14);
  }

  .mobile-cta-bar .btn-signin,
  .mobile-cta-bar .btn-play {
    flex: 1;
    text-align: center;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  body {
    padding-bottom: 72px;
  }
}
