/* =========================================================
   LUCKY NUGGET CASINO — STYLES.CSS
   Brand Palette (gold-rush / gold-nugget theme):
   --col-dark:    #120d08  (near-black graphite-brown, backgrounds)
   --col-mid:     #1e160d  (dark brown, cards)
   --col-surface: #2a1f12  (warmer brown surface)
   --col-accent:  #f5c518  (gold-nugget accent, CTAs)
   --col-accent2: #d98c1f  (copper/amber, secondary)
   --col-text:    #f0e9dc  (warm off-white text)
   --col-muted:   #b8a888  (muted tan)
   ========================================================= */

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

:root {
  --col-dark:     #120d08;
  --col-mid:      #1e160d;
  --col-surface:  #2a1f12;
  --col-accent:   #f5c518;
  --col-accent2:  #d98c1f;
  --col-green:    #22c55e;
  --col-red:      #ef4444;
  --col-text:     #f0e9dc;
  --col-muted:    #b8a888;
  --col-border:   #4a3a20;
  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --shadow:       0 4px 24px rgba(0,0,0,0.5);
  --transition:   0.22s ease;
  --max-width:    1140px;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--col-dark);
  color: var(--col-text);
  font-family: 'Segoe UI', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

a {
  color: var(--col-accent);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: #fff; }

ul { list-style: none; }

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

/* === CONTAINER === */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
  text-align: center;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245,197,24,0.35);
}

.btn--primary {
  background: var(--col-accent);
  color: #1e160d;
}
.btn--primary:hover { background: #ffe066; color: #120d08; }

.btn--hero {
  background: var(--col-accent);
  color: #1e160d;
  font-size: 18px;
  padding: 16px 40px;
  border-radius: var(--radius-md);
  display: block;
  width: fit-content;
  margin: 0 auto 12px;
}
.btn--hero:hover { background: #ffe066; }

.btn--strip {
  background: var(--col-accent);
  color: #1e160d;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  flex-shrink: 0;
}
.btn--strip:hover { background: #ffe066; }

.btn--card {
  background: transparent;
  border: 2px solid var(--col-accent);
  color: var(--col-accent);
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  width: 100%;
  margin-top: 14px;
}
.btn--card:hover {
  background: var(--col-accent);
  color: #1e160d;
}

.btn--cta-main {
  background: var(--col-accent);
  color: #1e160d;
  font-size: 18px;
  padding: 18px 44px;
  border-radius: var(--radius-lg);
  display: block;
  width: fit-content;
  margin: 24px auto;
}
.btn--cta-main:hover { background: #ffe066; }

/* === BONUS STRIP (TOP BANNER) === */
.bonus-strip {
  background: linear-gradient(90deg, #1e160d 0%, #3a2a14 50%, #1e160d 100%);
  border-bottom: 2px solid var(--col-accent);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.bonus-strip--inline {
  position: static;
  margin: 32px 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--col-accent);
}

.bonus-strip__text {
  font-size: 14px;
  color: var(--col-text);
}
.bonus-strip__text strong { color: var(--col-accent); }

/* === HERO BANNER === */
.hero-banner {
  background: linear-gradient(135deg, #120d08 0%, #241a0c 40%, #3a2a14 70%, #1e160d 100%);
  border-bottom: 1px solid var(--col-border);
  padding: 48px 0 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-banner::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(217,140,31,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-banner__inner {
  position: relative;
  z-index: 1;
}

.hero-banner__logo {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}
.hero-banner__logo svg {
  width: 200px;
  height: auto;
}

.hero-banner h1 {
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #fff;
  margin-bottom: 8px;
  text-shadow: 0 0 40px rgba(245,197,24,0.3);
}

.hero-banner__tagline {
  font-size: clamp(15px, 2.5vw, 20px);
  color: var(--col-muted);
  margin-bottom: 28px;
}

.hero-banner__offer {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}

.hero-offer-box {
  background: rgba(245,197,24,0.08);
  border: 1px solid var(--col-accent);
  border-radius: var(--radius-md);
  padding: 16px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.offer-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--col-muted);
}

.offer-value {
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 900;
  color: var(--col-accent);
}

.offer-sub {
  font-size: 12px;
  color: var(--col-muted);
}

.hero-banner__disclaimer {
  font-size: 12px;
  color: var(--col-muted);
  margin-top: 10px;
}

/* === QUICK FACTS === */
.quick-facts {
  background: var(--col-mid);
  border-bottom: 1px solid var(--col-border);
  padding: 16px 0;
}

.quick-facts__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  text-align: center;
}

.qf-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 6px;
}

.qf-icon { font-size: 22px; }
.qf-label { font-size: 12px; font-weight: 700; color: var(--col-text); }

/* === MAIN CONTENT === */
.main-content {
  padding: 48px 20px;
}

/* === SECTIONS === */
.section {
  margin-bottom: 72px;
}

.section h2 {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--col-accent2);
  position: relative;
}

.section h2::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--col-accent);
}

.section h3 {
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: 700;
  color: var(--col-accent);
  margin: 28px 0 12px;
}

.section p {
  margin-bottom: 14px;
  color: var(--col-text);
}

.section__intro p { font-size: 16px; }

/* === RATING BOX === */
.rating-box {
  background: var(--col-mid);
  border: 1px solid var(--col-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-top: 32px;
  text-align: center;
}

.rating-box__score {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin-bottom: 8px;
}

.score-number {
  font-size: 64px;
  font-weight: 900;
  color: var(--col-accent);
  line-height: 1;
}

.score-label {
  font-size: 22px;
  color: var(--col-muted);
}

.rating-box__stars {
  font-size: 28px;
  color: var(--col-accent);
  margin-bottom: 24px;
  letter-spacing: 2px;
}

.rating-box__cats {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.rc-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--col-text);
}

.rc-item span:first-child { width: 70px; text-align: left; flex-shrink: 0; }
.rc-item span:last-child { width: 30px; text-align: right; flex-shrink: 0; font-weight: 700; }

.rc-bar {
  flex: 1;
  height: 8px;
  background: var(--col-surface);
  border-radius: 4px;
  overflow: hidden;
}

.rc-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--col-accent2), var(--col-accent));
  border-radius: 4px;
}

/* === BONUS CARDS === */
.bonus-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 28px 0;
}

.bonus-card {
  background: var(--col-mid);
  border: 1px solid var(--col-border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition), transform var(--transition);
}

.bonus-card:hover {
  border-color: var(--col-accent);
  transform: translateY(-4px);
}

.bonus-card__badge {
  display: inline-block;
  background: var(--col-accent2);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
  width: fit-content;
}

.bonus-card__title {
  font-size: 18px;
  font-weight: 900;
  color: var(--col-accent);
  margin-bottom: 8px;
}

.bonus-card__detail {
  font-size: 14px;
  color: var(--col-text);
  margin-bottom: 8px;
}

.bonus-card__terms {
  font-size: 12px;
  color: var(--col-muted);
  margin-top: auto;
}

/* === INFO BOX === */
.info-box {
  background: rgba(217,140,31,0.12);
  border-left: 4px solid var(--col-accent2);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  margin: 20px 0;
  font-size: 14px;
  color: var(--col-text);
}

.info-box--tip {
  background: rgba(245,197,24,0.08);
  border-left-color: var(--col-accent);
}

/* === GAME CATEGORIES === */
.game-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 28px 0;
}

.game-cat-card {
  background: var(--col-mid);
  border: 1px solid var(--col-border);
  border-radius: var(--radius-md);
  padding: 24px 18px;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}

.game-cat-card:hover {
  border-color: var(--col-accent);
  transform: translateY(-3px);
}

.game-cat-icon { font-size: 36px; margin-bottom: 12px; }

.game-cat-card h3 {
  font-size: 16px;
  color: var(--col-accent);
  margin: 0 0 10px;
}

.game-cat-card p {
  font-size: 13px;
  color: var(--col-muted);
  margin: 0;
}

/* === STEPS === */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 28px 0;
}

.step-item {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--col-border);
}

.step-item:last-child { border-bottom: none; }

.step-number {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--col-accent2), var(--col-accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 900;
  color: #fff;
  margin-top: 2px;
}

.step-content h3 {
  margin-top: 0;
  color: #fff;
  font-size: 16px;
}

.step-content p {
  font-size: 14px;
  margin: 0;
  color: var(--col-muted);
}

/* === PAYMENTS TABLE === */
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-md);
  margin: 20px 0;
}

.payments-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 14px;
}

.payments-table th {
  background: var(--col-surface);
  color: var(--col-accent);
  font-weight: 700;
  padding: 12px 14px;
  text-align: left;
  border-bottom: 2px solid var(--col-border);
  white-space: nowrap;
}

.payments-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--col-border);
  color: var(--col-text);
}

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

.payments-table tbody tr:hover {
  background: rgba(245,197,24,0.05);
}

/* === MOBILE FEATURES === */
.mobile-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 24px 0;
}

.mobile-feat-item {
  display: flex;
  gap: 20px;
  background: var(--col-mid);
  border: 1px solid var(--col-border);
  border-radius: var(--radius-md);
  padding: 20px;
  align-items: flex-start;
}

.mfi {
  font-size: 30px;
  flex-shrink: 0;
  margin-top: 2px;
}

.mobile-feat-item strong {
  display: block;
  color: var(--col-accent);
  font-size: 15px;
  margin-bottom: 6px;
}

.mobile-feat-item p {
  font-size: 14px;
  color: var(--col-muted);
  margin: 0;
}

/* === SAFETY GRID === */
.safety-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 28px 0;
}

.safety-item {
  background: var(--col-mid);
  border: 1px solid var(--col-border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  transition: border-color var(--transition);
}

.safety-item:hover { border-color: var(--col-accent); }

.safety-icon { font-size: 32px; margin-bottom: 12px; }

.safety-item h3 {
  font-size: 16px;
  color: var(--col-accent);
  margin: 0 0 10px;
}

.safety-item p {
  font-size: 13px;
  color: var(--col-muted);
  margin: 0;
}

/* === SUPPORT === */
.support-channels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 28px 0;
}

.support-card {
  background: var(--col-mid);
  border: 1px solid var(--col-border);
  border-radius: var(--radius-md);
  padding: 24px 18px;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}

.support-card:hover {
  border-color: var(--col-accent);
  transform: translateY(-3px);
}

.support-icon { font-size: 32px; margin-bottom: 12px; }

.support-card h3 {
  font-size: 16px;
  color: var(--col-accent);
  margin: 0 0 12px;
}

.support-card p {
  font-size: 13px;
  color: var(--col-muted);
  margin: 0 0 12px;
}

.support-rating { font-size: 14px; color: var(--col-accent); margin-top: 12px; }

/* === PROS & CONS === */
.pros-cons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 20px;
}

.pros-box, .cons-box {
  background: var(--col-mid);
  border-radius: var(--radius-md);
  padding: 28px 24px;
}

.pros-box {
  border: 1px solid rgba(34,197,94,0.3);
}

.cons-box {
  border: 1px solid rgba(239,68,68,0.3);
}

.pros-box h3 { color: var(--col-green); font-size: 16px; margin-bottom: 16px; }
.cons-box h3 { color: var(--col-red); font-size: 16px; margin-bottom: 16px; }

.pros-box ul li, .cons-box ul li {
  font-size: 14px;
  color: var(--col-text);
  padding: 7px 0;
  border-bottom: 1px solid var(--col-border);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.pros-box ul li:last-child,
.cons-box ul li:last-child { border-bottom: none; }

.pros-box ul li::before { content: '✓'; color: var(--col-green); font-weight: 900; flex-shrink: 0; }
.cons-box ul li::before { content: '✗'; color: var(--col-red); font-weight: 900; flex-shrink: 0; }

/* === FAQ === */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 24px;
}

.faq-item {
  border: 1px solid var(--col-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--col-mid);
  transition: border-color var(--transition);
}

.faq-item:has(.faq-question.open) {
  border-color: var(--col-accent2);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--col-text);
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  padding: 18px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: color var(--transition);
}

.faq-question:hover, .faq-question.open {
  color: var(--col-accent);
}

.faq-arrow {
  font-size: 12px;
  color: var(--col-muted);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-question.open .faq-arrow { transform: rotate(180deg); color: var(--col-accent); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding var(--transition);
  padding: 0 20px;
}

.faq-answer.open {
  max-height: 400px;
  padding: 0 20px 18px;
}

.faq-answer p {
  font-size: 14px;
  color: var(--col-muted);
  margin: 0;
}

/* === CTA SECTION === */
.section--cta {
  text-align: center;
}

.cta-block {
  background: linear-gradient(135deg, #241a0c 0%, #3a2a14 50%, #241a0c 100%);
  border: 1px solid var(--col-accent);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
}

.cta-block h2 {
  border-bottom: none;
  font-size: clamp(22px, 4vw, 32px);
  margin-bottom: 16px;
}

.cta-block h2::after { display: none; }

.cta-block p { color: var(--col-muted); font-size: 15px; }

.cta-offer {
  margin: 24px 0;
  display: flex;
  justify-content: center;
}

.cta-offer-text {
  background: rgba(245,197,24,0.1);
  border: 2px solid var(--col-accent);
  border-radius: var(--radius-md);
  padding: 16px 32px;
  font-size: clamp(18px, 3vw, 26px);
  font-weight: 900;
  color: var(--col-accent);
}

.cta-disclaimer {
  font-size: 12px;
  color: var(--col-muted);
  margin-top: 0;
}

/* === FOOTER === */
.site-footer {
  background: #0c0805;
  border-top: 1px solid var(--col-border);
  padding: 48px 0 32px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}

.footer-logo svg { width: 160px; height: auto; }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
}

.footer-links a {
  font-size: 13px;
  color: var(--col-muted);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--col-accent); }

.footer-disclaimer {
  max-width: 780px;
  font-size: 12px;
  color: var(--col-muted);
  line-height: 1.6;
}

.footer-disclaimer p { margin-bottom: 8px; }

.footer-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.badge {
  background: var(--col-surface);
  border: 1px solid var(--col-border);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--col-muted);
}

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

/* Tablet: ≤ 1024px */
@media (max-width: 1024px) {
  .quick-facts__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .game-categories {
    grid-template-columns: repeat(2, 1fr);
  }

  .bonus-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .support-channels {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tablet small / large mobile: ≤ 768px */
@media (max-width: 768px) {
  .bonus-cards {
    grid-template-columns: 1fr;
  }

  .game-categories {
    grid-template-columns: repeat(2, 1fr);
  }

  .safety-grid {
    grid-template-columns: 1fr;
  }

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

  .support-channels {
    grid-template-columns: 1fr;
  }

  .quick-facts__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .step-item {
    flex-direction: column;
    gap: 12px;
  }

  .step-number {
    width: 44px;
    height: 44px;
  }

  .hero-banner {
    padding: 32px 0 40px;
  }

  .rating-box {
    padding: 24px 16px;
  }

  .cta-block {
    padding: 32px 16px;
  }

  .bonus-strip {
    flex-direction: column;
    gap: 8px;
  }
}

/* Mobile: ≤ 480px */
@media (max-width: 480px) {
  .game-categories {
    grid-template-columns: 1fr;
  }

  .quick-facts__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-banner h1 {
    letter-spacing: 1px;
  }

  .hero-offer-box {
    padding: 14px 20px;
  }

  .mobile-feat-item {
    flex-direction: column;
    gap: 12px;
  }

  .footer-links {
    gap: 6px 12px;
  }

  .btn--hero, .btn--cta-main {
    width: 100%;
  }

  .main-content {
    padding: 32px 16px;
  }

  .section {
    margin-bottom: 48px;
  }
}