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

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

body {
  background: #f5f8f4;
  color: #101e10;
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
}

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

header {
  background: #e8ede6;
  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: #101e10;
  text-decoration: none;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #2e6e2e;
}

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

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

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

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

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

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

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

section {
  margin-bottom: 1.5rem;
}

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

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

th {
  background: #2e6e2e;
  color: #f5f8f4;
  padding: 0.85rem 1rem;
  text-align: left;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
}

td {
  padding: 0.8rem 1rem;
  border-bottom: 1px solid #d6e5d6;
  font-size: 0.95rem;
}

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

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

tr:nth-child(odd) {
  background: #fff;
}

tr:hover td {
  background: #dceadc;
  transition: background 0.2s ease;
}

a {
  color: #2e6e2e;
  transition: color 0.3s ease;
}

a:hover {
  color: #245824;
}

strong {
  color: #101e10;
  font-weight: 600;
}

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

footer {
  background: #e8ede6;
  text-align: center;
  padding: 2rem;
  margin-top: 3rem;
  font-size: 0.85rem;
  color: #101e10;
}

footer a {
  color: #2e6e2e;
}

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

.btn-play:hover {
  background: #245824;
  color: #f5f8f4;
}

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

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

.review-card {
  background: #e8ede6;
  border-radius: 12px;
  border: 1px solid rgba(46, 110, 46, 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 #e8ede6;
}

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

.review-card__pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(46, 110, 46, 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 {
  margin-bottom: 0.4rem;
}

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

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

.review-card__cons ul li {
  margin-bottom: 0.4rem;
}

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

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

.faq {
  margin: 2rem 0;
}

.faq__item {
  background: #fff;
  border: 1px solid #d6e5d6;
  border-radius: 10px;
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.faq__item:hover {
  box-shadow: 0 4px 16px rgba(46, 110, 46, 0.12);
  border-color: #2e6e2e;
}

.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: #101e10;
  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: color 0.2s ease, background 0.2s ease;
}

.faq__question:hover {
  background: #f0f7f0;
  color: #2e6e2e;
}

.faq__question::after {
  content: "+";
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: #e8ede6;
  color: #2e6e2e;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 28px;
  text-align: center;
  border-radius: 50%;
  transition: background 0.2s ease, transform 0.3s ease;
}

.faq__question[aria-expanded="true"] {
  color: #2e6e2e;
  background: #f0f7f0;
  border-bottom: 1px solid #d6e5d6;
}

.faq__question[aria-expanded="true"]::after {
  content: "−";
  background: #2e6e2e;
  color: #fff;
}

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

.faq__answer p {
  padding: 1rem 1.25rem 1.1rem;
  margin: 0;
  color: #101e10;
  line-height: 1.7;
}

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, #1a4d1a 0%, #2e6e2e 60%, #3d8c3d 100%);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  margin-bottom: 2rem;
  text-align: center;
  color: #f5f8f4;
}

.hero h1 {
  color: #f5f8f4;
  text-align: center;
  margin-bottom: 0.75rem;
  font-size: 2.1rem;
}

.hero p {
  color: rgba(245,248,244,0.9);
  max-width: 680px;
  margin: 0 auto 1.75rem;
  font-size: 1.05rem;
}

.hero p strong {
  color: #fff;
}

.hero__stats {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}

.hero__stat {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  padding: 0.9rem 1.5rem;
  min-width: 130px;
}

.hero__stat-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.hero__stat-label {
  display: block;
  font-size: 0.8rem;
  color: rgba(245,248,244,0.75);
  margin-top: 0.2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-hero {
  font-size: 1rem;
  padding: 0.9rem 2rem;
  background: #fff;
  color: #2e6e2e;
  border-radius: 12px;
}

.btn-hero:hover {
  background: #eef4ee;
  color: #1a4d1a;
}

/* ── Providers ── */
.providers {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}

.provider-badge {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
  font-size: 0.88rem;
  font-weight: 500;
  background: #f0f7f0;
  border: 1px solid #c4dac4;
  color: #2e6e2e;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.provider-badge:hover {
  background: #dceadc;
  border-color: #2e6e2e;
}

.provider-badge--featured {
  background: #2e6e2e;
  color: #fff;
  border-color: #2e6e2e;
  font-weight: 600;
}

.provider-badge--featured:hover {
  background: #245824;
  border-color: #245824;
}

/* ── Steps ── */
.steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: #fff;
  border: 1px solid #d6e5d6;
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  transition: box-shadow 0.2s ease;
}

.step:hover {
  box-shadow: 0 4px 14px rgba(46,110,46,0.1);
}

.step__number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: #2e6e2e;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
}

.step__content h3 {
  margin-top: 0;
  margin-bottom: 0.4rem;
  color: #2e6e2e;
}

.step__content p {
  margin-bottom: 0;
}

/* ── Pros/Cons table ── */
.pros-cons-table .pros-header {
  background: #1e5c1e;
  color: #fff;
}

.pros-cons-table .cons-header {
  background: #5a5a5a;
  color: #fff;
}

.pros-cons-table .pros-cell {
  background: #f0f9f0;
  color: #1a4d1a;
  border-bottom: 1px solid #c8e6c8;
}

.pros-cons-table .cons-cell {
  background: #f9f9f9;
  color: #555;
  border-bottom: 1px solid #e0e0e0;
}

.pros-cons-table tr:nth-child(even) .pros-cell {
  background: #e6f5e6;
}

.pros-cons-table tr:nth-child(even) .cons-cell {
  background: #f2f2f2;
}

.pros-cons-table tr:hover .pros-cell {
  background: #d4edda;
}

.pros-cons-table tr:hover .cons-cell {
  background: #ebebeb;
}

.intro-list {
  background: #e8ede6;
  border-left: 4px solid #2e6e2e;
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
}

.intro-list__title {
  font-weight: 700;
  color: #2e6e2e;
  margin-bottom: 0.75rem;
}

.intro-list ul {
  margin-bottom: 0;
}

.intro-list ul li {
  position: relative;
  padding-left: 0.5rem;
  margin-bottom: 0.5rem;
}

.intro-list ul li::marker {
  color: #2e6e2e;
}

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

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

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

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

@media (max-width: 768px) {
  .btn-header {
    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;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #e8ede6;
    padding: 0 2rem 1rem;
    z-index: 99;
  }

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

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

  main {
    padding: 1rem;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 1.75rem 1.25rem;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .hero__stats {
    gap: 0.75rem;
  }

  .hero__stat {
    min-width: 100px;
    padding: 0.7rem 1rem;
  }

  .hero__stat-value {
    font-size: 1.2rem;
  }

  .step {
    flex-direction: column;
    gap: 0.75rem;
  }
}

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

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

  thead {
    display: none;
  }

  tr {
    display: block;
    margin-bottom: 1rem;
    border: 1px solid #e8ede6;
    border-radius: 12px;
    overflow: hidden;
  }

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

  th {
    word-break: break-word;
  }

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

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

/* Mobile bottom CTA 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: 200;
    background: #1a1a1a;
    padding: 10px 16px;
    gap: 12px;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.3);
  }

  .mobile-bottom-bar a {
    flex: 1;
    text-align: center;
    padding: 12px 0;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
  }

  .mobile-bottom-bar .btn-login {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
  }

  .mobile-bottom-bar .btn-register {
    background: #f5a623;
    border: 2px solid #f5a623;
    color: #1a1a1a;
  }

  body {
    padding-bottom: 70px;
  }
}