/* === RESET & BASE === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green: #15803d;
  --green-dark: #0f5c2b;
  --green-light: #22c55e;
  --cream: #fef9ef;
  --cream-dark: #fdf0d5;
  --brown: #78350f;
  --brown-light: #a3621a;
  --text: #1a1a1a;
  --text-light: #4a4a4a;
  --white: #ffffff;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-sm: 8px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: var(--brown);
}

h1 { font-size: 2.4rem; margin-bottom: 1rem; }
h2 { font-size: 1.9rem; margin-bottom: 0.8rem; margin-top: 2rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.6rem; margin-top: 1.5rem; }
h4 { font-size: 1.2rem; margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; }

a {
  color: var(--green);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover { color: var(--green-dark); }

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

ul, ol { margin-bottom: 1rem; padding-left: 1.5rem; }
li { margin-bottom: 0.3rem; }

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* === HEADER === */
.site-header {
  background: var(--brown);
  padding: 0.8rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-lg);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--cream);
  text-decoration: none;
  flex-shrink: 0;
}

.logo:hover { color: var(--white); }

.logo-icon {
  font-size: 2.2rem;
  line-height: 1;
}

.logo-text {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.2;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--cream);
  border-radius: 2px;
  transition: 0.3s;
}

.nav-menu {
  display: flex;
  gap: 0.3rem;
  flex-wrap: wrap;
}

.nav-menu a {
  color: var(--cream);
  padding: 0.4rem 0.7rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}

.nav-menu a:hover {
  background: var(--green);
  color: var(--white);
}

/* === HERO === */
.hero {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: var(--white);
  padding: 3.5rem 0;
  text-align: center;
}

.hero h1 {
  color: var(--white);
  font-size: 2.8rem;
  margin-bottom: 0.8rem;
}

.hero p {
  font-size: 1.2rem;
  opacity: 0.92;
  max-width: 650px;
  margin: 0 auto 1.5rem;
}

.hero-emoji {
  font-size: 3.5rem;
  display: block;
  margin-bottom: 1rem;
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s;
  border: none;
  text-decoration: none;
}

.btn-cta {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(21, 128, 61, 0.4);
}

.btn-cta:hover {
  background: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(21, 128, 61, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}

.btn-outline:hover {
  background: var(--green);
  color: var(--white);
}

.btn-large {
  padding: 1.1rem 3rem;
  font-size: 1.2rem;
}

/* === CARDS === */
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.8rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(120, 53, 15, 0.08);
}

/* === CASINO CARD === */
.casino-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(120, 53, 15, 0.08);
  transition: box-shadow 0.3s;
}

.casino-card:hover {
  box-shadow: var(--shadow-lg);
}

.casino-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 1.8rem;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
  border-bottom: 2px solid rgba(120, 53, 15, 0.1);
  cursor: pointer;
}

.casino-rank {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.rank-number {
  background: var(--green);
  color: var(--white);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.casino-name-block h3 {
  margin: 0;
  font-size: 1.35rem;
  color: var(--brown);
}

.casino-tagline {
  font-size: 0.88rem;
  color: var(--text-light);
  margin: 0;
}

.casino-bonus-preview {
  text-align: right;
}

.casino-bonus-preview .bonus-amount {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--green);
  display: block;
}

.casino-bonus-preview .bonus-label {
  font-size: 0.8rem;
  color: var(--text-light);
}

.davos-pick-badge {
  display: inline-block;
  background: var(--brown);
  color: var(--cream);
  padding: 0.25rem 0.8rem;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-left: 0.5rem;
}

.thumbs-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
}

.thumbs-up { background: #dcfce7; color: var(--green); }
.thumbs-down { background: #fce4ec; color: #c62828; }

/* === ACCORDION === */
.accordion-trigger {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  text-align: left;
  padding: 0;
}

.accordion-trigger::after {
  content: "\25BC";
  font-size: 0.8rem;
  color: var(--green);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 1rem;
}

.accordion-trigger.active::after {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.casino-card-body {
  padding: 1.8rem;
}

.casino-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.info-item {
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(120, 53, 15, 0.06);
}

.info-label {
  font-size: 0.78rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
  display: block;
}

.info-value {
  font-weight: 600;
  color: var(--brown);
}

.thumbs-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.thumbs-list h4 {
  margin-bottom: 0.5rem;
}

.thumbs-list ul {
  list-style: none;
  padding: 0;
}

.thumbs-list li {
  padding: 0.3rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.thumbs-list li::before {
  position: absolute;
  left: 0;
}

.thumbs-list.pros li::before { content: "\1F44D"; }
.thumbs-list.cons li::before { content: "\1F44E"; }

.casino-cta {
  text-align: center;
  padding: 1.5rem 0 0.5rem;
}

/* === SECTION STYLES === */
.content-section {
  padding: 3rem 0;
}

.content-section:nth-child(even) {
  background: var(--white);
}

.section-intro {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 700px;
  margin-bottom: 2rem;
}

/* === TABLE === */
.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.info-table th {
  background: var(--brown);
  color: var(--cream);
  padding: 0.9rem 1.2rem;
  text-align: left;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
}

.info-table td {
  padding: 0.8rem 1.2rem;
  border-bottom: 1px solid rgba(120, 53, 15, 0.06);
}

.info-table tr:nth-child(even) td {
  background: var(--cream);
}

.info-table tr:hover td {
  background: var(--cream-dark);
}

/* === FAQ === */
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 0.8rem;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-question {
  padding: 1.2rem 1.5rem;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  color: var(--brown);
  font-size: 1.05rem;
}

.faq-answer {
  padding: 0 1.5rem 1.2rem;
}

/* === POKIE CARD === */
.pokie-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--green);
}

.pokie-card h3 {
  margin-top: 0;
}

/* === AUTHOR BOX === */
.author-box {
  background: linear-gradient(135deg, var(--cream-dark) 0%, var(--cream) 100%);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  margin: 2rem 0;
  border: 2px solid rgba(120, 53, 15, 0.1);
}

.author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
  color: var(--white);
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
}

.author-info h4 { margin-bottom: 0.3rem; }
.author-info p { margin-bottom: 0.5rem; font-size: 0.95rem; }

/* === BREADCRUMBS === */
.breadcrumbs {
  padding: 1rem 0;
  font-size: 0.88rem;
  color: var(--text-light);
}

.breadcrumbs a {
  color: var(--text-light);
}

.breadcrumbs a:hover {
  color: var(--green);
}

.breadcrumbs span {
  margin: 0 0.4rem;
}

/* === QUICK LIST === */
.quick-list {
  counter-reset: quicklist;
}

.quick-list-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.3rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  margin-bottom: 0.6rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s;
}

.quick-list-item:hover {
  transform: translateX(4px);
}

.quick-list-item .rank-number {
  width: 36px;
  height: 36px;
  font-size: 0.95rem;
}

.quick-list-item .ql-name {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  color: var(--brown);
  flex: 1;
}

.quick-list-item .ql-bonus {
  font-size: 0.88rem;
  color: var(--green);
  font-weight: 700;
}

/* === WARNING BOX === */
.warning-box {
  background: #fff3cd;
  border: 1px solid #ffc107;
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
  margin: 1.5rem 0;
}

.warning-box::before {
  content: "\26A0\FE0F ";
}

.tip-box {
  background: #d1fae5;
  border: 1px solid var(--green-light);
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
  margin: 1.5rem 0;
}

.tip-box::before {
  content: "\1F4A1 ";
}

/* === FOOTER === */
.site-footer {
  background: var(--brown);
  color: var(--cream);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-col h4 {
  color: var(--cream);
  margin-bottom: 0.8rem;
  font-size: 1rem;
}

.footer-col p {
  font-size: 0.9rem;
  opacity: 0.85;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col li { margin-bottom: 0.4rem; }

.footer-col a {
  color: var(--cream);
  font-size: 0.9rem;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.footer-col a:hover { opacity: 1; color: var(--cream); }

.footer-bottom {
  border-top: 1px solid rgba(254, 249, 239, 0.15);
  padding-top: 1.5rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.82rem;
  opacity: 0.7;
  margin-bottom: 0.5rem;
}

/* === 404 === */
.page-404 {
  text-align: center;
  padding: 5rem 0;
}

.page-404 .emoji-big {
  font-size: 5rem;
  display: block;
  margin-bottom: 1rem;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  body { font-size: 16px; }
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.25rem; }

  .hero { padding: 2.5rem 0; }
  .hero h1 { font-size: 2rem; }

  .nav-toggle { display: flex; }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--brown);
    flex-direction: column;
    padding: 1rem;
    box-shadow: var(--shadow-lg);
  }

  .nav-menu.active { display: flex; }

  .nav-menu a {
    padding: 0.7rem 1rem;
  }

  .casino-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }

  .casino-bonus-preview { text-align: left; }

  .casino-info-grid { grid-template-columns: 1fr; }

  .thumbs-section { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }

  .author-box { flex-direction: column; align-items: center; text-align: center; }

  .quick-list-item {
    flex-wrap: wrap;
  }

  .quick-list-item .ql-bonus {
    width: 100%;
    margin-top: 0.2rem;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .hero h1 { font-size: 1.7rem; }
  .btn-large {
    padding: 0.9rem 2rem;
    font-size: 1.05rem;
  }
}
