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

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

body {
  background: #f4f6f4;
  color: #1a2e22;
  font-family: 'Barlow', sans-serif;
  line-height: 1.6;
}

header {
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

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

nav a:hover {
  color: #00875a;
}

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

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

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

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

section {
  margin-bottom: 2rem;
}

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

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

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

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

table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 135, 90, 0.12);
}

th {
  background: #00875a;
  color: #ffffff;
  padding: 0.85rem 1rem;
  text-align: left;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
}

td {
  padding: 0.8rem 1rem;
  border-bottom: 1px solid #e2ede7;
  vertical-align: top;
}

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

tr:hover td {
  background: #e6f5ee;
  transition: background 0.15s ease;
}

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

a:hover {
  color: #006644;
}

strong {
  color: #3d5c47;
  font-weight: 600;
}

footer {
  background: #1a2e22;
  text-align: center;
  padding: 2rem;
  margin-top: 3rem;
  font-size: 0.85rem;
  color: #e0fff8;
}

footer a {
  color: #4dd4a8;
}

footer a:hover {
  color: #7eeac7;
}

footer p {
  margin-bottom: 0.35rem;
}

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

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

ol ol {
  list-style-type: lower-alpha;
  margin-top: 0.4rem;
  margin-bottom: 0;
}

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

ul li {
  margin-bottom: 0.4rem;
}

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

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

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

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

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

.btn-play {
  min-height: 44px;
  padding: 0.75rem 1.5rem;
  white-space: normal;
  display: inline-block;
  background: #00875a;
  color: #ffffff;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  transition: background 0.3s ease;
  line-height: 1.4;
  text-align: center;
}

.btn-play:hover {
  background: #006644;
  color: #ffffff;
}

.btn-signin {
  padding: 0.5rem 1.25rem;
  display: inline-block;
  background: transparent;
  color: #00875a;
  border: 2px solid #00875a;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  white-space: nowrap;
  line-height: 1.4;
  text-align: center;
}

.btn-signin:hover {
  background: #00875a;
  color: #ffffff;
}

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

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

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

.review-card {
  background: #ffffff;
  border-radius: 6px;
  border: 1px solid rgba(0, 135, 90, 0.2);
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.07);
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e2ede7;
}

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

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

.review-card__pros h4 {
  color: #16a34a;
  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__cons ul {
  list-style: none;
  padding-left: 0;
}

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

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

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

.faq {
  margin: 2rem 0;
}

.faq__item {
  border-bottom: 1px solid #e2ede7;
  padding: 0.5rem 0;
}

.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: #1a2e22;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  padding: 1rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
  font-family: 'Barlow', sans-serif;
}

.faq__question::after {
  content: "+";
  color: #00875a;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

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

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

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

.faq__answer p {
  padding-bottom: 1rem;
  color: #1a2e22;
}

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

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

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

  nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    padding: 1rem 2rem;
    gap: 0;
    z-index: 99;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

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

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

  main {
    padding: 1rem;
  }
}

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, #00875a 0%, #005c3d 100%);
  border-radius: 12px;
  padding: 3rem 2.5rem;
  margin-bottom: 2.5rem;
  text-align: center;
}
.hero h1 {
  color: #ffffff;
  font-size: 2.2rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}
.hero > p {
  color: rgba(255,255,255,0.9);
  font-size: 1.05rem;
  max-width: 720px;
  margin: 0 auto 1rem;
}
.hero ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem 1.5rem;
  margin-bottom: 1.75rem;
}
.hero ul li {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  margin: 0;
}
.hero ul li::before {
  content: "✓ ";
  color: #7eeac7;
  font-weight: 700;
}
.hero .btn-play {
  background: #ffffff;
  color: #00875a;
  font-size: 1rem;
  padding: 0.9rem 2.25rem;
  border-radius: 6px;
}
.hero .btn-play:hover {
  background: #e6f5ee;
  color: #005c3d;
}

/* ── Feature cards ── */
.feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1rem;
  margin: 1rem 0 1.5rem;
}
.feature-card {
  background: #f0faf5;
  border: 1px solid #c8e6d8;
  border-radius: 8px;
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.feature-card__icon {
  font-size: 1.75rem;
  line-height: 1;
}
.feature-card strong {
  display: block;
  color: #00875a;
  font-size: 0.95rem;
}
.feature-card span {
  color: #3d5c47;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ── Bonus highlight ── */
.bonus-highlight {
  border-left: 5px solid #00875a;
  background: #f0faf5;
  border-radius: 0 8px 8px 0;
  padding: 1.5rem 2rem;
  margin-bottom: 2rem;
}
.bonus-highlight h2 {
  margin-top: 0;
}

/* ── Pros / Cons columns ── */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 1rem 0;
}
.pros-col,
.cons-col {
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
}
.pros-col {
  background: #f0faf5;
  border: 1px solid #a8d8be;
}
.cons-col {
  background: #fff5f5;
  border: 1px solid #f5c0c0;
}
.pros-col h3 {
  margin-top: 0;
  font-size: 1rem;
  margin-bottom: 0.75rem;
  color: #00875a;
}
.cons-col h3 {
  margin-top: 0;
  font-size: 1rem;
  margin-bottom: 0.75rem;
  color: #c0392b;
}
.pros-col ul,
.cons-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pros-col ul li,
.cons-col ul li {
  padding: 0.4rem 0;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  margin: 0;
}
.pros-col ul li:last-child,
.cons-col ul li:last-child {
  border-bottom: none;
}
.pros-col ul li::before {
  content: "✓ ";
  color: #00875a;
  font-weight: 700;
}
.cons-col ul li::before {
  content: "✗ ";
  color: #c0392b;
  font-weight: 700;
}

@media (max-width: 768px) {
  .hero { padding: 2rem 1.25rem; }
  .hero h1 { font-size: 1.6rem; }
  .pros-cons { grid-template-columns: 1fr; }
}

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

  h2 {
    font-size: 1.25rem;
  }

  section 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;
  }

  table thead {
    display: none;
  }

  table tbody tr {
    display: block;
    border: 1px solid #e2ede7;
    border-radius: 6px;
    margin-bottom: 1rem;
    box-shadow: 0 1px 4px rgba(0,135,90,0.08);
  }

  table tbody td {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    border-bottom: 1px solid #e2ede7;
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
    word-break: break-word;
  }

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

  table tbody td::before {
    content: attr(data-label);
    font-weight: 600;
    color: #00875a;
    min-width: 120px;
    flex-shrink: 0;
  }

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

/* Mobile sticky bottom auth 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: #1a2e22;
    border-top: 1px solid #2e4a38;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.3);
  }
  .mobile-bottom-bar a {
    flex: 1;
    text-align: center;
  }
  body {
    padding-bottom: 72px;
  }
}
