/* LuckyVegas Casino — dark neon Vegas theme */
:root {
  --bg: #140a22;
  --bg-2: #1c1030;
  --card: #241340;
  --card-2: #2c1850;
  --line: #3a2360;
  --text: #ece3fb;
  --muted: #b9a9d6;
  --pink: #ff2e88;
  --pink-2: #ff5ea8;
  --cyan: #24d3ee;
  --purple: #7a2bd6;
  --radius: 16px;
  --wrap: 1160px;
  --nav-h: 68px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Gabarito', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--pink-2); }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }

/* ---------- NAV ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: linear-gradient(90deg, #2a0b45 0%, #431066 55%, #5a1580 100%);
  border-bottom: 1px solid #6a2ba0;
  box-shadow: 0 4px 20px rgba(0,0,0,.35);
}
.nav-inner { display: flex; align-items: center; gap: 18px; height: var(--nav-h); }
.nav-logo { display: flex; align-items: center; flex: 0 0 auto; }
.nav-logo img { height: 38px; width: auto; }
.nav-menu { display: flex; align-items: center; gap: 4px; margin-left: auto; flex-wrap: wrap; }
.nav-menu a {
  color: #f2e9ff; text-decoration: none; font-weight: 600; font-size: 15px;
  padding: 8px 12px; border-radius: 10px; white-space: nowrap;
}
.nav-menu a:hover, .nav-menu a[aria-current="page"] { background: rgba(255,255,255,.12); color: #fff; }
.nav-cta { display: flex; align-items: center; gap: 10px; margin-left: 8px; }
.burger {
  display: none; margin-left: auto;
  background: transparent; border: 0; cursor: pointer; padding: 8px;
}
.burger span { display: block; width: 26px; height: 3px; background: #fff; margin: 5px 0; border-radius: 3px; transition: .25s; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block; text-decoration: none; font-weight: 700; cursor: pointer;
  padding: 11px 22px; border-radius: 999px; font-size: 15px; border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .2s;
  text-align: center;
}
.btn-primary { background: linear-gradient(90deg, var(--pink), var(--pink-2)); color: #fff; box-shadow: 0 6px 18px rgba(255,46,136,.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(255,46,136,.5); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.65); }
.btn-ghost:hover { background: rgba(255,255,255,.14); }
.btn-lg { padding: 15px 34px; font-size: 18px; }
.cta-row { margin: 22px 0; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(120% 90% at 80% 10%, rgba(255,120,60,.22), transparent 60%),
    linear-gradient(135deg, rgba(58,15,95,.9) 0%, rgba(106,29,143,.72) 45%, rgba(194,58,134,.6) 100%),
    url('/images/promo-welcome.webp') center/cover no-repeat,
    #3a0f5f;
  overflow: hidden;
}
.hero-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 30px; align-items: center; padding: 54px 0 66px; }
.hero-kicker { color: #ffd9ec; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; font-size: 14px; margin: 0 0 10px; }
.hero-title { font-size: clamp(38px, 6vw, 68px); font-weight: 900; line-height: 1.02; margin: 0 0 8px; color: #fff; text-shadow: 0 3px 18px rgba(0,0,0,.3); }
.hero-title .accent { background: linear-gradient(90deg,#ffe27a,#ff8a3d); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub { font-size: clamp(18px,2.5vw,26px); color: #fff; font-weight: 700; margin: 0 0 18px; }
.hero-terms { color: #ffe3f0; font-size: 12.5px; margin-top: 14px; opacity: .9; }
.hero-tiles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.hero-tiles a { display: block; border-radius: 18px; overflow: hidden; box-shadow: 0 12px 30px rgba(0,0,0,.4); transform: rotate(-2deg); }
.hero-tiles a:nth-child(even) { transform: rotate(2deg); }
.hero-tiles img { aspect-ratio: 1/1; object-fit: cover; }

/* ---------- CONTENT ---------- */
main { display: block; }
.content { max-width: 900px; padding: 50px 20px 40px; }
.content h1 { font-size: clamp(30px, 4.5vw, 46px); line-height: 1.1; margin: 0 0 20px; color: #fff; letter-spacing: -.01em; }

/* intro / lead */
.intro { margin-bottom: 28px; }
.intro::after { content: ""; display: block; clear: both; }
.intro .lead { font-size: clamp(17px, 2vw, 20px); line-height: 1.7; color: #f6eeff; margin: 0 0 16px; }
.intro .img-link { float: right; max-width: 290px; margin: 4px 0 16px 26px; }
.intro .cta-row { clear: both; }

/* section panels */
.sec {
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.015));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px; padding: 26px 30px; margin: 0 0 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
}
.content h2 { font-size: clamp(22px,3vw,28px); margin: 0 0 16px; color: #fff; position: relative; padding-left: 16px; line-height: 1.2; }
.content h2::before { content: ""; position: absolute; left: 0; top: 3px; bottom: 3px; width: 5px; border-radius: 4px; background: linear-gradient(var(--pink), var(--cyan)); }
.content h3 { font-size: clamp(18px,2.2vw,21px); margin: 22px 0 10px; color: #ffd7ea; }
.content p { margin: 0 0 15px; color: var(--text); }
.content p:last-child { margin-bottom: 0; }
.content a { color: var(--cyan); text-decoration: underline; text-underline-offset: 2px; }
.content strong { color: #fff; }
.content em { color: #d9c8f5; font-style: italic; }

/* lists */
.content ul, .content ol { margin: 0 0 16px; padding: 0; list-style: none; }
.content li { margin: 9px 0; padding-left: 30px; position: relative; }
.ticks li::before { content: "\2726"; position: absolute; left: 4px; top: 1px; color: var(--pink-2); font-size: 14px; }
.steps { counter-reset: step; }
.steps li { counter-increment: step; padding-left: 46px; margin: 12px 0; }
.steps li::before {
  content: counter(step); position: absolute; left: 0; top: -2px;
  width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--pink), var(--pink-2)); color: #fff; font-weight: 800; font-size: 14px;
  box-shadow: 0 4px 10px rgba(255,46,136,.4);
}

/* offer box */
.content blockquote {
  margin: 4px 0 20px; padding: 22px 26px; border-radius: var(--radius);
  background: linear-gradient(135deg, #3a1360, #63177f);
  border: 1px solid #7a2ba0; border-left: 5px solid var(--pink);
  font-size: 17px; line-height: 1.65; color: #fff; box-shadow: 0 10px 28px rgba(120,20,120,.3);
}
.content blockquote strong { color: #ffe27a; }

/* inline feature image */
.img-link { display: block; margin: 22px auto; max-width: 340px; border-radius: var(--radius); overflow: hidden; box-shadow: 0 14px 32px rgba(0,0,0,.45); border: 1px solid rgba(255,255,255,.1); }
.img-link img { width: 100%; height: auto; display: block; transition: transform .3s; }
.img-link:hover img { transform: scale(1.04); }

/* tables */
.table-wrap { width: 100%; overflow-x: auto; margin: 6px 0 16px; border-radius: 12px; border: 1px solid var(--line); -webkit-overflow-scrolling: touch; }
table { width: 100%; border-collapse: collapse; min-width: 440px; }
th, td { text-align: left; padding: 13px 16px; border-bottom: 1px solid rgba(255,255,255,.07); font-size: 15px; }
th { background: linear-gradient(90deg, #3a1360, #55187a); color: #fff; font-weight: 700; }
tbody tr:nth-child(odd) { background: rgba(255,255,255,.025); }
tr:last-child td { border-bottom: 0; }
td strong { color: var(--pink-2); }

/* FAQ accordion */
.faq-list { display: grid; gap: 12px; }
.faq-item { border: 1px solid rgba(255,255,255,.09); border-radius: 12px; background: rgba(255,255,255,.03); overflow: hidden; }
.faq-item summary { list-style: none; cursor: pointer; padding: 16px 50px 16px 20px; font-weight: 700; color: #fff; font-size: 16px; position: relative; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); font-size: 24px; line-height: 1; color: var(--pink-2); }
.faq-item[open] summary::after { content: "\2212"; }
.faq-item summary:hover { background: rgba(255,255,255,.05); }
.faq-a { padding: 0 20px 16px; }
.faq-a p { margin: 0; color: var(--muted); }

/* payment badges */
.pay-badges { display: flex; flex-wrap: wrap; gap: 10px; margin: 6px 0 16px; }
.pay-badges span { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); color: #fff; padding: 10px 16px; border-radius: 10px; font-weight: 700; font-size: 14px; }

/* galleries */
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 14px; padding: 8px 0 44px; }
.gallery .tile { display: block; border-radius: 14px; overflow: hidden; box-shadow: 0 8px 20px rgba(0,0,0,.35); border: 1px solid var(--line); transition: transform .15s; }
.gallery .tile:hover { transform: translateY(-4px); }
.gallery .tile img { aspect-ratio: 1/1; object-fit: cover; width: 100%; }
.section-title { text-align: center; color: #fff; font-size: clamp(24px,3vw,32px); margin: 10px 0 22px; }

/* CTA band */
.cta-band {
  background:
    linear-gradient(90deg, rgba(58,15,95,.9), rgba(194,58,134,.8)),
    url('/images/promo-reload.webp') center/cover no-repeat,
    #3a0f5f;
  text-align: center; padding: 46px 20px;
}
.cta-band h2 { color: #fff; font-size: clamp(24px,3.4vw,34px); margin: 0 0 8px; }
.cta-band p { color: #ffe3f0; margin: 0 0 20px; }

/* ---------- FOOTER ---------- */
.footer { background: #0f0718; border-top: 1px solid var(--line); padding: 42px 0 24px; color: var(--muted); font-size: 14px; }
.footer-cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 30px; margin-bottom: 26px; }
.footer h4 { color: #fff; font-size: 15px; margin: 0 0 12px; }
.footer a { color: var(--muted); text-decoration: none; }
.footer a:hover { color: #fff; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer-logo img { height: 34px; margin-bottom: 12px; }
.rg { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin: 8px 0 16px; }
.rg .age { border: 2px solid var(--pink); color: #fff; font-weight: 800; border-radius: 50%; width: 40px; height: 40px; display: grid; place-items: center; flex: 0 0 auto; }
.footer-legal { border-top: 1px solid var(--line); padding-top: 18px; font-size: 12.5px; line-height: 1.7; color: #8f7fb0; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; padding: 40px 0 48px; }
  .hero-tiles { max-width: 420px; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .burger { display: block; }
  .nav-menu, .nav-cta {
    position: absolute; left: 0; right: 0; top: var(--nav-h);
    flex-direction: column; align-items: stretch; gap: 6px;
    background: #2a0b45; padding: 14px 20px; margin: 0;
    border-bottom: 1px solid #6a2ba0;
    display: none;
  }
  .nav-open .nav-menu, .nav-open .nav-cta { display: flex; }
  .nav-open .nav-cta { top: auto; position: static; padding-top: 0; border: 0; }
  .nav-menu a { padding: 12px 10px; font-size: 16px; }
  .nav-cta .btn { width: 100%; }
}
@media (max-width: 680px) {
  .intro .img-link { float: none; max-width: 100%; margin: 16px auto; }
  .sec { padding: 20px 18px; }
  .content h2 { padding-left: 13px; }
}
@media (max-width: 560px) {
  .footer-cols { grid-template-columns: 1fr; }
  .hero-tiles { grid-template-columns: repeat(2,1fr); }
  .content { padding: 30px 16px; }
}
