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

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

body {
  background: #0a0a0a;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.75;
}

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

/* ===== HEADER ===== */

header {
  background: #0a2010;
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0.3rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.site-logo {
  margin-left: 3rem;
}

.site-logo a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #c9a84c;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.1em;
  transition: color 0.25s ease;
}

.site-logo a:hover {
  color: #e8c96b;
}

.site-logo img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 0;
  border: none;
}

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

nav ul li {
  display: flex;
  align-items: center;
}

nav a {
  color: #f0f0f0;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  transition: color 0.25s ease;
}

nav a:hover {
  color: #c9a84c;
}

nav a[aria-current="page"] {
  color: #c9a84c;
  border-bottom: 2px solid #c9a84c;
}

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

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

/* ===== BUTTONS ===== */

.btn-play {
  min-height: 40px;
  padding: 0.55rem 1.25rem;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  background: #c9a84c;
  color: #0a0a0f;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  transition: background 0.25s ease;
  font-family: 'Inter', sans-serif;
  border: none;
  cursor: pointer;
}

.btn-play:hover {
  background: #b8962e;
  color: #0a0a0f;
}

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

.btn-header {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.btn-login {
  min-height: 40px;
  padding: 0.55rem 1.25rem;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: #ffffff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  border: 2px solid #e8e0d0;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: all 0.25s ease;
}

.btn-login:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-color: #fff;
}

/* ===== MAIN ===== */

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

/* ===== HERO IMAGE ===== */

.hero-image {
  display: block;
  max-width: 100%;
  max-height: 480px;
  object-fit: contain;
  border-radius: 12px;
  margin: 0 auto 1.5rem;
}

/* ===== HERO CTA ===== */

.hero-cta {
  text-align: center;
  margin-bottom: 2rem;
}

.cta-center {
  text-align: center;
  margin-top: 1.5rem;
}

.btn-playnow {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  background: #c9a84c;
  color: #0a0a0a;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  border-radius: 8px;
  position: relative;
  transition: background 0.25s ease, transform 0.2s ease;
  box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.5);
  animation: pulse 2s infinite;
}

.btn-playnow:hover {
  background: #e0bb5a;
  color: #0a0a0a;
  transform: scale(1.05);
  animation: none;
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.6);
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.6); }
  70%  { box-shadow: 0 0 0 12px rgba(201, 168, 76, 0); }
  100% { box-shadow: 0 0 0 0 rgba(201, 168, 76, 0); }
}

/* ===== TYPOGRAPHY ===== */

h1 {
  color: #c9a84c;
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
}

h2 {
  color: #c9a84c;
  font-size: 1.5rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.4);
  padding-bottom: 0.5rem;
  margin-top: 0;
}

h3 {
  color: #ffffff;
  font-size: 1.15rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
  line-height: 1.75;
  color: #f0f0f0;
}

a {
  color: #c9a84c;
  transition: color 0.25s ease;
}

a:hover {
  color: #e8c96b;
}

strong {
  color: inherit;
  font-weight: inherit;
}

/* ===== CONTENT SECTIONS ===== */

.content-section {
  margin-bottom: 2.5rem;
}

.content-section h2 {
  margin-top: 0;
  margin-bottom: 1rem;
}

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


/* ===== TABLES ===== */

table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  overflow: hidden;
}

th {
  background: #2a2a2a;
  color: #c9a84c;
  padding: 0.75rem 1rem;
  text-align: left;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-bottom: 2px solid rgba(201, 168, 76, 0.4);
}

td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #f0f0f0;
  font-size: 0.9rem;
  background: #1c1c1c;
}

tr:nth-child(even) td {
  background: #222222;
}

tr:hover td {
  background: #282828;
}

/* ===== LISTS ===== */

ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  color: #f0f0f0;
}

ol li {
  margin-bottom: 0.4rem;
  padding-left: 0.5rem;
}

ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  color: #f0f0f0;
}

ul li {
  margin-bottom: 0.4rem;
}

/* ===== PROS / CONS ===== */

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.pros-cons__card {
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
}

.pros-cons__card--pros {
  background: rgba(74, 222, 128, 0.07);
  border: 1px solid rgba(74, 222, 128, 0.3);
}

.pros-cons__card--cons {
  background: rgba(248, 113, 113, 0.07);
  border: 1px solid rgba(248, 113, 113, 0.3);
}

.pros-cons__title {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pros-cons__card--pros .pros-cons__title {
  color: #4ade80;
}

.pros-cons__card--cons .pros-cons__title {
  color: #f87171;
}

.pros-cons__icon {
  font-size: 1.1rem;
}

.pros-cons__card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.pros-cons__card li {
  padding-left: 1.25rem;
  position: relative;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #f0f0f0;
  margin: 0;
}

.pros-cons__card--pros li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4ade80;
  font-weight: 700;
}

.pros-cons__card--cons li::before {
  content: "✗";
  position: absolute;
  left: 0;
  color: #f87171;
  font-weight: 700;
}

@media (max-width: 600px) {
  .pros-cons {
    grid-template-columns: 1fr;
  }
}

/* ===== REVIEW CARD ===== */

.review-card {
  background: #13131f;
  border-radius: 10px;
  border: 1px solid rgba(201, 168, 76, 0.25);
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.review-card__header h3 {
  margin: 0;
  color: #c9a84c;
}

.review-card__pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
}

.review-card__pros h4 {
  color: #4ade80;
  margin-bottom: 0.5rem;
}

.review-card__cons h4 {
  color: #f87171;
  margin-bottom: 0.5rem;
}

.review-card__pros ul,
.review-card__cons ul {
  list-style: none;
  padding-left: 0;
}

.review-card__pros ul li::before {
  content: "✓ ";
  color: #4ade80;
}

.review-card__cons ul li::before {
  content: "✗ ";
  color: #f87171;
}

.review-card__footer {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  text-align: right;
}

/* ===== FAQ ===== */

#faq h2 {
  border-bottom: none;
  padding-bottom: 0;
}

.faq__item {
  background: #1a1a1a;
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 8px;
  margin-bottom: 0.5rem;
  padding: 0;
  overflow: hidden;
}

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

.faq__question {
  width: 100%;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  padding: 1rem 1.25rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.25s ease;
  font-family: 'Inter', sans-serif;
}

.faq__question::after {
  content: "+";
  color: #c9a84c;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.faq__question[aria-expanded="true"] {
  color: #c9a84c;
}

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

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

.faq__answer p {
  padding: 0 1.25rem 1rem;
  color: #f0f0f0;
  opacity: 0.9;
}

/* ===== SLOTS LOBBY ===== */
.slots-carousel {
  margin-bottom: 1.5rem;
}

.slots-carousel__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.slots-carousel__header h3 {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(201, 168, 76, 0.45);
  background: linear-gradient(180deg, rgba(201, 168, 76, 0.24), rgba(201, 168, 76, 0.08));
  color: #f9e7aa;
  box-shadow: 0 6px 18px rgba(201, 168, 76, 0.22);
}

.slots-carousel[data-tab="popular"] .slots-carousel__header h3 {
  border-color: rgba(201, 168, 76, 0.65);
  background: linear-gradient(180deg, rgba(201, 168, 76, 0.28), rgba(201, 168, 76, 0.1));
  color: #ffe8a0;
}

.slots-carousel[data-tab="new"] .slots-carousel__header h3 {
  border-color: rgba(74, 222, 128, 0.65);
  background: linear-gradient(180deg, rgba(74, 222, 128, 0.24), rgba(74, 222, 128, 0.08));
  color: #d8ffe8;
  box-shadow: 0 6px 18px rgba(74, 222, 128, 0.22);
}

.slots-carousel[data-tab="hot"] .slots-carousel__header h3 {
  border-color: rgba(248, 113, 113, 0.65);
  background: linear-gradient(180deg, rgba(248, 113, 113, 0.24), rgba(248, 113, 113, 0.08));
  color: #ffe0e0;
  box-shadow: 0 6px 18px rgba(248, 113, 113, 0.22);
}

.slots-carousel__controls {
  display: flex;
  gap: 0.5rem;
}

.slots-carousel__btn {
  background: #1a1a1a;
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.2s ease;
  font-family: 'Inter', sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.slots-carousel__btn:hover {
  border-color: #c9a84c;
  color: #c9a84c;
}

.slots-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(185px, 1fr);
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  padding-bottom: 0.25rem;
}

.slot-card {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.slot-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.2);
}

.slot-card__thumb {
  height: 140px;
  display: block;
  background: #101010;
  position: relative;
}

.slot-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slot-card__thumb--fallback {
  background: linear-gradient(135deg, #1a1a1a, #3a3a3a);
}

.slot-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 10, 0.72);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  text-decoration: none;
  color: transparent;
  font-size: 0;
  line-height: 0;
  pointer-events: none;
}

.slot-card__play::after {
  content: 'Play Now';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 116px;
  height: 40px;
  padding: 0 1rem;
  border-radius: 999px;
  background: #c9a84c;
  border: 1px solid #e8c96b;
  color: #0a0a0a;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  transform: scale(1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.slot-card:hover .slot-card__play,
.slot-card.is-active .slot-card__play {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.slot-card:hover .slot-card__play::after,
.slot-card.is-active .slot-card__play::after {
  transform: scale(1.04);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
}

.slot-card__info {
  background: #1a1a1a;
  padding: 0.6rem 0.75rem;
}

.slot-card__name {
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 0.2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.slot-card__provider {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.slot-card__badge {
  position: absolute;
  top: 8px;
  left: 8px;
  color: #0a0a0a;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.slot-card__badge--popular { background: #c9a84c; }
.slot-card__badge--new { background: #4ade80; }
.slot-card__badge--hot { background: #f87171; }

@media (max-width: 768px) {
  .slots-grid { grid-auto-columns: minmax(150px, 1fr); }
  .slots-carousel__header h3 { font-size: 0.95rem; }
}

/* ===== CASINO LOGO ===== */

.casino-logo {
  width: 120px;
  height: 50px;
  object-fit: contain;
  display: block;
}

/* ===== FOOTER ===== */

footer {
  background: #0a2010;
  text-align: center;
  padding: 2rem;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: #f0f0f0;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
}

footer a {
  color: #c9a84c;
}

footer a:hover {
  color: #e8c96b;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {
  header {
    padding: 0.75rem 1rem;
  }

  .site-logo {
    margin-left: 0;
  }

  .header-btns {
    display: none;
  }

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

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

  nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #0a2010;
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 1.5rem 1rem;
    z-index: 99;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  }

  nav ul li {
    min-height: 44px;
    padding: 0.6rem 0;
    width: 100%;
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  }

  nav ul li:last-child {
    border-bottom: none;
  }

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

  main {
    padding: 1.25rem 1rem;
  }

  section {
    padding: 1.25rem 1rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  h3 {
    font-size: 1.05rem;
  }

  p {
    font-size: 0.95rem;
  }

  li {
    font-size: 0.95rem;
  }

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

  table {
    display: block;
    overflow-x: auto;
  }

  thead {
    display: none;
  }

  tbody {
    display: block;
    width: 100%;
  }

  tr {
    display: block;
    margin-bottom: 1rem;
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 8px;
    overflow: hidden;
  }

  td {
    display: block;
    padding: 0.5rem 0.75rem;
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
    text-align: left;
    word-break: break-word;
  }

  td::before {
    content: attr(data-label);
    display: block;
    color: #c9a84c;
    font-weight: 600;
    font-size: 0.75rem;
    margin-bottom: 0.2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  td:last-child {
    border-bottom: none;
  }

  tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.03);
  }
}

/* Quick-access navigation bar */
.quick-access {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0 1.5rem;
}

.quick-access a {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: 20px;
  color: #c9a84c;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.quick-access a:hover {
  background: rgba(201, 168, 76, 0.25);
  border-color: #c9a84c;
}

/* ===== MOBILE BOTTOM BAR ===== */
.mobile-bottom-bar {
  display: none;
}

@media (max-width: 768px) {
  .mobile-bottom-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .mobile-bottom-btn {
    flex: 1;
    justify-content: center;
    min-height: 44px;
  }

  body {
    padding-bottom: 80px;
  }
}
