/* ===================================================================
   LUCKY ELF CASINO — stylesheet
   Theme: woodland fairytale, emerald green + antique gold
=================================================================== */

:root {
  --green-900: #08231a;
  --green-800: #0c3325;
  --green-700: #114433;
  --green-600: #165c3a;
  --emerald:   #1f9e5c;
  --emerald-2: #2bbf73;
  --gold:      #d6ae56;
  --gold-2:    #f0d68c;
  --gold-soft: #f5de9f;
  --cream:     #f7f3e6;
  --ink:       #0c1c16;
  --text:      #e8efe6;
  --muted:     #a9c0b0;
  --radius:    16px;
  --shadow:    0 18px 40px -18px rgba(0,0,0,.6);
  --font-disp: "Cinzel Decorative", serif;
  --font-head: "Marcellus", serif;
  --font-body: "Mulish", system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(43,191,115,.18), transparent 60%),
    radial-gradient(900px 500px at 0% 10%, rgba(214,174,86,.12), transparent 55%),
    linear-gradient(180deg, var(--green-900) 0%, var(--green-800) 100%);
  background-attachment: fixed;
  line-height: 1.65;
  overflow-x: hidden;
}

.container { width: min(1180px, 92%); margin: 0 auto; }

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; letter-spacing: .3px; }

a { color: inherit; text-decoration: none; cursor: pointer; }

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

.kicker {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: .72rem;
  color: var(--gold);
  margin-bottom: 10px;
}

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: .5px;
  border: none;
  border-radius: 999px;
  padding: 12px 26px;
  cursor: pointer;
  font-size: .92rem;
  transition: transform .15s ease, box-shadow .2s ease, filter .2s ease;
  text-transform: uppercase;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #3a2c08;
  box-shadow: 0 10px 26px -10px rgba(214,174,86,.8);
}
.btn-gold:hover { filter: brightness(1.06); box-shadow: 0 16px 32px -12px rgba(214,174,86,.9); }
.btn-outline {
  background: transparent;
  color: var(--gold-2);
  border: 2px solid rgba(214,174,86,.55);
}
.btn-outline:hover { background: rgba(214,174,86,.12); }
.btn-lg { padding: 16px 38px; font-size: 1rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(8,35,26,.82);
  border-bottom: 1px solid rgba(214,174,86,.18);
}
.header-inner { display: flex; align-items: center; gap: 24px; padding: 12px 0; }
.brand-logo { height: 46px; width: auto; }
.main-nav { display: flex; gap: 26px; margin-left: auto; }
.main-nav a {
  font-weight: 700; font-size: .9rem; letter-spacing: .5px;
  text-transform: uppercase; color: var(--text); position: relative; padding: 4px 0;
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--gold); transition: width .25s ease;
}
.main-nav a:hover { color: var(--gold-2); }
.main-nav a:hover::after { width: 100%; }
.header-cta { margin-left: 8px; }

/* ---------- Hero ---------- */
.hero { padding: 60px 0 50px; position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 30px; align-items: center; }
.hero-slider { position: relative; min-height: 360px; }
.hero-slide {
  position: absolute; inset: 0; opacity: 0; transform: translateY(14px);
  transition: opacity .6s ease, transform .6s ease; pointer-events: none;
}
.hero-slide.is-active { opacity: 1; transform: translateY(0); position: relative; pointer-events: auto; }
.hero-slide h1 { font-family: var(--font-disp); font-size: clamp(2.2rem, 5vw, 3.6rem); color: var(--cream); text-shadow: 0 4px 20px rgba(0,0,0,.4); }
.hero-bonus { margin: 18px 0 6px; font-family: var(--font-head); font-size: 1.5rem; color: var(--text); }
.hero-bonus .amount {
  font-family: var(--font-disp); font-weight: 900;
  font-size: 2.4rem; color: var(--gold-2);
  display: inline-block; margin-right: 6px;
}
.hero-sub { color: var(--muted); max-width: 460px; margin-bottom: 22px; }
.hero-dots { display: flex; gap: 10px; margin-top: 26px; }
.dot { width: 12px; height: 12px; border-radius: 50%; border: none; background: rgba(255,255,255,.25); cursor: pointer; transition: background .2s, transform .2s; }
.dot.is-active { background: var(--gold); transform: scale(1.2); }
.hero-art { display: flex; justify-content: center; }
.mascot { border-radius: 24px; box-shadow: var(--shadow); border: 2px solid rgba(214,174,86,.3); }

/* ---------- Promo strip ---------- */
.promo-strip { padding: 20px 0 10px; }
.promo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.promo-card {
  display: flex; gap: 18px; align-items: center; padding: 16px;
  background: linear-gradient(135deg, rgba(17,68,51,.9), rgba(12,51,37,.9));
  border: 1px solid rgba(214,174,86,.22); border-radius: var(--radius);
  cursor: pointer; transition: transform .2s, border-color .2s;
}
.promo-card:hover { transform: translateY(-4px); border-color: rgba(214,174,86,.6); }
.promo-card img { width: 140px; border-radius: 12px; flex-shrink: 0; }
.promo-text h3 { color: var(--gold-2); font-size: 1.25rem; margin-bottom: 6px; }
.promo-text p { color: var(--muted); font-size: .92rem; }

/* ---------- Category nav ---------- */
.cats { padding: 34px 0 8px; }
.cat-row {
  display: flex; gap: 14px; overflow-x: auto; padding-bottom: 10px;
  scrollbar-width: thin; scrollbar-color: var(--gold) transparent;
}
.cat {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  min-width: 84px; padding: 14px 8px; border-radius: 14px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(214,174,86,.15);
  transition: background .2s, transform .2s; flex-shrink: 0;
}
.cat:hover { background: rgba(214,174,86,.14); transform: translateY(-3px); }
.cat img { width: 46px; height: 46px; }
.cat span { font-size: .76rem; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--text); }

/* ---------- Games ---------- */
.games { padding: 34px 0; }
.games-alt { background: rgba(0,0,0,.12); }
.section-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.section-head h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); color: var(--cream); }
.game-row {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(180px, 1fr);
  gap: 18px; overflow-x: auto; padding-bottom: 12px;
  scrollbar-width: thin; scrollbar-color: var(--gold) transparent;
}
.game-card {
  position: relative; border-radius: 14px; overflow: hidden; cursor: pointer;
  background: var(--green-700); border: 1px solid rgba(214,174,86,.18);
  transition: transform .2s, box-shadow .2s;
}
.game-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.game-card img { width: 100%; aspect-ratio: 13/16; object-fit: cover; }
.game-meta { padding: 10px 12px 14px; }
.game-meta strong { display: block; color: var(--cream); font-size: .95rem; }
.game-meta span { color: var(--muted); font-size: .78rem; }
.tag {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  font-size: .66rem; font-weight: 800; text-transform: uppercase;
  padding: 3px 9px; border-radius: 999px; letter-spacing: .6px;
}
.tag.hot { background: #c0392b; color: #fff; }
.tag.new { background: var(--gold); color: #3a2c08; }
.play {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(8,35,26,.6); color: var(--gold-2); font-weight: 800; font-size: 1.05rem;
  opacity: 0; transition: opacity .2s;
}
.game-card:hover .play { opacity: 1; }

/* ---------- Feature CTA ---------- */
.feature-cta {
  padding: 56px 0; margin: 30px 0;
  background:
    radial-gradient(700px 300px at 100% 0%, rgba(43,191,115,.22), transparent 60%),
    linear-gradient(135deg, rgba(17,68,51,.7), rgba(8,35,26,.7));
  border-top: 1px solid rgba(214,174,86,.18);
  border-bottom: 1px solid rgba(214,174,86,.18);
}
.feature-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 36px; align-items: center; }
.feature-lead h2 { font-family: var(--font-disp); font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--cream); margin-bottom: 14px; }
.feature-lead p { color: var(--muted); max-width: 420px; margin-bottom: 24px; }
.feature-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.feature-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(214,174,86,.2);
  border-radius: var(--radius); padding: 22px 16px; text-align: center;
}
.feature-card img { width: 64px; height: 64px; margin: 0 auto 12px; }
.feature-card h4 { color: var(--gold-2); font-size: 1.02rem; margin-bottom: 6px; }
.feature-card p { color: var(--muted); font-size: .84rem; }

/* ---------- Loyalty ---------- */
.loyalty { padding: 56px 0; }
.loyalty-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 40px; align-items: center; }
.loyalty-img { border-radius: var(--radius); box-shadow: var(--shadow); border: 2px solid rgba(214,174,86,.3); }
.loyalty-text h2 { font-family: var(--font-disp); font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--cream); margin-bottom: 14px; }
.loyalty-text > p { color: var(--muted); margin-bottom: 22px; max-width: 520px; }
.loyalty-steps { list-style: none; display: grid; gap: 16px; margin-bottom: 26px; counter-reset: step; }
.loyalty-steps li { position: relative; padding-left: 56px; }
.loyalty-steps li::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 0; top: 0; width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #3a2c08; font-family: var(--font-disp); font-weight: 900;
}
.loyalty-steps strong { display: block; color: var(--gold-2); font-family: var(--font-head); font-size: 1.1rem; }
.loyalty-steps span { color: var(--muted); font-size: .9rem; }

/* ---------- Review article ---------- */
.review { padding: 60px 0 40px; }
.review-inner { width: min(820px, 92%); }
.review h1 {
  font-family: var(--font-disp); font-size: clamp(1.9rem, 4.4vw, 3rem);
  color: var(--cream); margin-bottom: 22px; line-height: 1.2;
}
.review h2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem); color: var(--gold-2);
  margin: 38px 0 12px; padding-bottom: 8px;
  border-bottom: 1px solid rgba(214,174,86,.22);
}
.review p { color: var(--text); margin-bottom: 16px; }
.review-lead { font-size: 1.12rem; color: var(--cream); border-left: 3px solid var(--gold); padding-left: 18px; }
.guide-list, .review ol.guide-list { margin: 0 0 18px 0; padding-left: 22px; }
.guide-list li { margin-bottom: 10px; color: var(--text); }
.guide-list strong, .review p strong { color: var(--gold-2); }

/* FAQ */
.faq { display: grid; gap: 12px; margin: 10px 0 30px; }
.faq details {
  background: rgba(255,255,255,.04); border: 1px solid rgba(214,174,86,.2);
  border-radius: 12px; padding: 4px 18px; cursor: pointer;
}
.faq summary {
  font-family: var(--font-head); font-size: 1.05rem; color: var(--gold-2);
  padding: 14px 0; list-style: none; position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 0; top: 12px; font-size: 1.4rem; color: var(--gold); }
.faq details[open] summary::after { content: "−"; }
.faq details p { padding-bottom: 16px; color: var(--muted); margin: 0; }
.review-foot {
  margin-top: 30px; padding: 18px 20px; border-radius: 12px;
  background: rgba(192,57,43,.12); border: 1px solid rgba(192,57,43,.4);
  font-size: .92rem; color: var(--cream);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--green-900); border-top: 1px solid rgba(214,174,86,.2);
  padding: 48px 0 30px; margin-top: 30px; position: relative;
}
.footer-top { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 18px; padding-bottom: 24px; }
.footer-top .brand img { height: 44px; }
.socials { display: flex; gap: 10px; }
.socials img { width: 38px; height: 38px; transition: transform .2s; }
.socials a:hover img { transform: translateY(-3px); }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px 26px; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.08); border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-links a { font-size: .82rem; text-transform: uppercase; letter-spacing: .6px; color: var(--muted); font-weight: 700; }
.footer-links a:hover { color: var(--gold-2); }
.footer-block { padding: 22px 0; }
.footer-block h4 { font-size: .82rem; text-transform: uppercase; letter-spacing: 2px; color: var(--gold); margin-bottom: 14px; }
.logo-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.logo-row img { height: 40px; width: auto; opacity: .92; border-radius: 6px; }
.footer-badges { display: flex; gap: 16px; padding: 18px 0; flex-wrap: wrap; }
.footer-badges img { height: 50px; }
.footer-legal { font-size: .8rem; color: var(--muted); line-height: 1.7; border-top: 1px solid rgba(255,255,255,.08); padding-top: 20px; }
.to-top {
  position: absolute; right: 24px; bottom: 24px; width: 46px; height: 46px;
  border-radius: 50%; border: none; cursor: pointer; font-size: 1rem;
  background: linear-gradient(135deg, var(--gold-2), var(--gold)); color: #3a2c08;
  box-shadow: var(--shadow); transition: transform .2s;
}
.to-top:hover { transform: translateY(-3px); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-grid, .feature-grid, .loyalty-grid { grid-template-columns: 1fr; }
  .hero-art { order: -1; }
  .mascot { max-height: 320px; }
  .promo-grid { grid-template-columns: 1fr; }
  .main-nav { display: none; }
  .feature-cards { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .header-cta { padding: 10px 18px; font-size: .82rem; }
  .brand-logo { height: 38px; }
  .feature-cards { grid-template-columns: repeat(3,1fr); }
  .feature-card { padding: 14px 8px; }
  .feature-card img { width: 48px; height: 48px; }
  .feature-card p { display: none; }
  .review-lead { font-size: 1rem; }
}
.h1{
    font-family: var(--font-disp);
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    color: var(--cream);
    text-shadow: 0 4px 20px rgba(0, 0, 0, .4);
	line-height: 1.15;
    letter-spacing: .3px;
}

.h2 {
    font-family: var(--font-disp);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    color: var(--cream);
    margin-bottom: 14px;
	line-height: 1.15;
    letter-spacing: .3px;
}

.h3{
	color: var(--gold-2);
    font-size: 1.25rem;
    margin-bottom: 6px;
    font-family: var(--font-head);
    line-height: 1.15;
    letter-spacing: .3px;
}