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

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

body {
  background: #0d1117;
  color: #e6edf3;
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
}

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

.main-banner {
  width: 100vw;
  max-height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
  margin: 1.25rem 0 1.75rem;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

header {
  background: #161b22;
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

nav a {
  color: #e6edf3;
  text-decoration: none;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #f0a500;
}

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

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

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

h1 {
  color: #f0a500;
  font-size: 2rem;
  margin-bottom: 1rem;
}

h2 {
  color: #f0a500;
  font-size: 1.5rem;
  border-bottom: 1px solid #f0a500;
  padding-bottom: 0.5rem;
  margin-top: 0;
}

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

p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

a {
  color: #f0a500;
  transition: color 0.3s ease;
}

a:hover {
  color: #d4920a;
}

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

section {
  margin-bottom: 2rem;
}

section h2 {
  margin-top: 0;
  border-bottom: 1px solid #f0a500;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

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

th {
  background: rgba(240, 165, 0, 0.15);
  color: #f0a500;
  padding: 0.85rem 1rem;
  text-align: left;
  font-weight: 600;
  border-bottom: 2px solid rgba(240, 165, 0, 0.5);
}

td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(240, 165, 0, 0.12);
}

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

tr:nth-child(even) {
  background: rgba(240, 165, 0, 0.04);
}

footer {
  background: #161b22;
  text-align: center;
  padding: 2rem;
  margin-top: 3rem;
  font-size: 0.85rem;
  color: #e6edf3;
}

footer a {
  color: #f0a500;
}

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

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

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

ul li {
  margin-bottom: 0.4rem;
}

.btn-play {
  min-height: 44px;
  padding: 0.75rem 1.5rem;
  white-space: normal;
  display: inline-block;
  background: #f0a500;
  color: #0d1117;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  transition: background 0.3s ease;
}

.btn-play:hover {
  background: #d4920a;
  color: #0d1117;
}

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

.btn-header {
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
  white-space: nowrap;
  min-height: unset;
}

.btn-signin {
  min-height: 44px;
  padding: 0.5rem 1.25rem;
  white-space: nowrap;
  display: inline-block;
  background: transparent;
  color: #f0a500;
  border: 2px solid #f0a500;
  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: #f0a500;
  color: #0d1117;
}

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

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

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

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

.site-logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 6px;
}

.review-card {
  background: #161b22;
  border-radius: 8px;
  border: 1px solid rgba(240, 165, 0, 0.3);
  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 #161b22;
}

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

.review-card__pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(240, 165, 0, 0.2);
}

.review-card__pros h4 {
  color: #22c55e;
  margin-bottom: 0.5rem;
}

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

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

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

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

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

.review-card__footer {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(240, 165, 0, 0.2);
  text-align: right;
}

.faq {
  margin: 2rem 0;
}

.faq__item {
  border: 1px solid rgba(240, 165, 0, 0.2);
  border-radius: 8px;
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq__item:hover {
  border-color: rgba(240, 165, 0, 0.5);
}

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

.faq__question {
  width: 100%;
  background: rgba(240, 165, 0, 0.05);
  border: none;
  color: #e6edf3;
  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.3s ease, color 0.3s ease;
}

.faq__question:hover {
  background: rgba(240, 165, 0, 0.1);
}

.faq__question::after {
  content: "+";
  color: #f0a500;
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq__question[aria-expanded="true"] {
  color: #f0a500;
  background: rgba(240, 165, 0, 0.1);
}

.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: #e6edf3;
  opacity: 0.85;
  border-top: 1px solid rgba(240, 165, 0, 0.15);
}

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

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

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

  nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #161b22;
    padding: 1rem 2rem;
    gap: 0;
    z-index: 99;
  }

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

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

  main {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  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;
  }

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

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

  thead {
    display: none;
  }

  tr {
    display: block;
    margin-bottom: 1rem;
    border: 1px solid #161b22;
    border-radius: 8px;
  }

  td {
    display: block;
    padding: 0.5rem 0.75rem;
    border-bottom: 1px solid #161b22;
    text-align: left;
    word-break: break-word;
  }

  th {
    word-break: break-word;
  }

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

.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;
    background: #161b22;
    border-top: 1px solid #f0a500;
    padding: 0.75rem 1rem;
    gap: 0.75rem;
    justify-content: center;
  }

  .mobile-bottom-bar a {
    flex: 1;
    max-width: 160px;
    text-align: center;
  }

  body {
    padding-bottom: 70px;
  }
}