/* LuckyOnes Casino Australia — clean static rebuild */

:root {
  --bg: #201e1b;
  --surface: #2a2723;
  --surface-2: #33302b;
  --text: #ffffff;
  --muted: #9d9b98;
  --muted-2: #9b9b9b;
  --gold-1: #f3d997;
  --gold-2: #b69a63;
  --radius: 14px;
  --container: 1140px;
  --font: "Montserrat", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
}

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

a { color: var(--gold-2); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold-1); }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 14px;
  padding: 12px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .15s ease, opacity .2s ease;
}
.btn:hover { transform: translateY(-1px); color: inherit; }

.btn-gold,
.btn-gold-grad {
  background: linear-gradient(180deg, var(--gold-1) 0%, var(--gold-2) 100%);
  color: #000;
}
.btn-gold:hover, .btn-gold-grad:hover { opacity: .9; color: #000; }

.btn-outline {
  background: transparent;
  border-color: var(--gold-2);
  color: var(--text);
}
.btn-outline:hover { background: var(--gold-2); color: #000; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(32, 30, 27, .92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-block: 14px;
}
.logo img { width: 110px; height: auto; }
.header-inner .logo { flex-shrink: 0; }

.primary-nav { margin-inline: auto; }
.primary-nav ul {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.primary-nav a {
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
}
.primary-nav a:hover { color: var(--gold-1); }

.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.header-actions .btn { padding: 10px 20px; }

.lang-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--gold-2);
  color: var(--gold-1);
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}
.lang-switch:hover { background: var(--gold-2); color: #000; }
.mobile-nav-actions .lang-switch { flex: 0 0 auto; padding: 10px 16px; }

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.menu-toggle span { display: block; width: 100%; height: 2px; background: var(--text); }

/* ---------- Mobile nav drawer ---------- */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--bg);
  overflow-y: auto;
}
.mobile-nav[hidden] { display: none; }
.mobile-nav-inner { padding: 20px; position: relative; }
.mobile-nav-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--surface);
  border: none;
  color: var(--text);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.mobile-nav-actions { display: flex; gap: 10px; margin: 24px 0; }
.mobile-nav-actions .btn { flex: 1; }
.mobile-nav-list { list-style: none; margin: 0; padding: 0; }
.mobile-nav-list li { border-top: 1px solid rgba(255,255,255,.08); }
.mobile-nav-list a {
  display: block;
  padding: 16px 4px;
  color: var(--text);
  font-weight: 600;
}

/* ---------- Hero ---------- */
.hero { padding-top: 28px; padding-bottom: 8px; text-align: center; }
.hero h1 {
  font-size: 30px;
  font-weight: 700;
  margin: 0 0 20px;
}

.hero-banner {
  position: relative;
  display: block;
  min-height: 320px;
  border-radius: var(--radius);
  background-color: #833ca3;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  isolation: isolate;
}
.hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.65) 0%, rgba(0,0,0,.15) 60%, rgba(0,0,0,0) 100%);
  z-index: 0;
}
.hero-banner-content {
  position: relative;
  z-index: 1;
  max-width: 66%;
  text-align: left;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  min-height: 320px;
}
.hero-heading { font-size: 28px; font-weight: 800; line-height: 1.15; }
.hero-desc { font-size: 20px; font-weight: 600; color: var(--gold-1); }
.hero-banner-content .btn { align-self: flex-start; margin-top: 8px; padding: 14px 34px; font-size: 15px; }

.pill-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
}
.pill-nav a {
  display: block;
  padding: 9px 18px;
  border-radius: 999px;
  background: var(--surface);
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
}
.pill-nav a:hover { background: var(--surface-2); color: var(--gold-1); }

/* ---------- Game rows ---------- */
.game-row { padding: 34px 0 6px; }
.row-title {
  text-align: center;
  font-size: 22px;
  font-weight: 500;
  color: var(--muted-2);
  margin: 0 0 18px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.card {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  background-color: var(--surface);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,.55) 100%);
  transition: background .3s;
}
.card:hover::before { background: rgba(0,0,0,.35); }
.card:hover { transform: scale(1.02); }
.card { transition: transform .25s ease; }
.card-play {
  position: relative;
  z-index: 1;
  margin-bottom: 14px;
  padding: 7px 18px;
  border-radius: 999px;
  background: var(--gold-1);
  color: #000;
  font-size: 12px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .2s, transform .2s;
}
.card:hover .card-play,
.card:focus-visible .card-play { opacity: 1; transform: translateY(0); }

/* Touch devices have no hover — keep the CTA visible so it isn't hidden */
@media (hover: none) {
  .card-play { opacity: 1; transform: none; }
  .card::before { background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,.6) 100%); }
}

.diamond-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 28px 20px;
  margin-bottom: 14px;
}
.diamond-intro img { height: 40px; width: auto; }
.diamond-intro p { margin: 0; color: var(--muted); }

/* ---------- Providers / logo rows ---------- */
.providers { padding: 40px 0; text-align: center; }
.logos-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px 40px;
  margin-top: 20px;
}
.logos-row img {
  height: 36px;
  width: auto;
  opacity: .85;
  transition: opacity .2s;
}
.logos-row img:hover { opacity: 1; }
.logos-row--small img { height: 26px; }

/* ---------- Article / long-form content ---------- */
.content {
  max-width: 800px;
  padding-top: 40px;
  padding-bottom: 20px;
  color: var(--muted);
}
.content h1 {
  color: var(--text);
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 18px;
}
.content h2 {
  color: var(--text);
  font-size: 26px;
  font-weight: 700;
  margin: 40px 0 14px;
}
.content h3 {
  color: var(--text);
  font-size: 20px;
  font-weight: 700;
  margin: 28px 0 10px;
}
.content p { margin: 0 0 16px; }
.content ul { margin: 0 0 16px; padding-left: 20px; }
.content li { margin-bottom: 8px; }
.content a { color: var(--gold-2); }
.content strong { color: var(--text); }
.content .btn { margin: 6px 0 20px; }
.content-img {
  border-radius: var(--radius);
  margin: 16px 0;
  max-width: min(320px, 100%);
}

/* ---------- FAQ ---------- */
.faq { margin-top: 8px; }
.faq-item {
  background: var(--surface);
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 20px;
  color: var(--text);
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 20px;
  color: var(--gold-1);
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-answer { padding: 0 20px 18px; }
.faq-answer p { margin: 0 0 10px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--surface);
  margin-top: 40px;
  padding: 48px 0 28px;
  font-size: 14px;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 20px;
}
.footer-col h3 {
  color: var(--text);
  font-size: 15px;
  margin: 0 0 12px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: var(--muted); }
.footer-col a:hover { color: var(--gold-1); }

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,.08);
  margin: 26px 0;
}
.footer-subtitle {
  color: var(--text);
  font-size: 15px;
  text-align: center;
  margin: 0;
}
.copyright { color: var(--muted); text-align: center; margin: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .cards { grid-template-columns: repeat(3, 1fr); }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .container { padding-inline: 16px; }

  /* Nav links move into the drawer; Log in / Sign up stay one tap away, same as the source site */
  .primary-nav { display: none; }
  .menu-toggle { display: flex; }
  .header-inner { justify-content: space-between; gap: 12px; }
  .logo img { width: 84px; }
  .header-actions { gap: 8px; }
  .header-actions .btn { padding: 8px 14px; font-size: 12px; }

  .hero { padding-top: 20px; }
  .hero h1 { font-size: 22px; margin-bottom: 14px; }
  .hero-banner { min-height: 240px; border-radius: 12px; }
  .hero-banner-content { max-width: 100%; min-height: 240px; padding: 20px; gap: 8px; }
  .hero-heading { font-size: 19px; }
  .hero-desc { font-size: 15px; }
  .hero-banner-content .btn { padding: 11px 26px; font-size: 13px; }

  .pill-nav { gap: 8px; margin-top: 18px; }
  .pill-nav a { padding: 8px 14px; font-size: 12px; }

  .game-row { padding: 26px 0 4px; }
  .row-title { font-size: 18px; margin-bottom: 14px; }
  .cards { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .card { border-radius: 10px; }
  .card-play { font-size: 11px; padding: 6px 14px; margin-bottom: 10px; }

  .diamond-intro { padding: 20px 16px; }

  .providers { padding: 30px 0; }
  .logos-row { gap: 20px 24px; }
  .logos-row img { height: 28px; }

  .content { padding-top: 26px; }
  .content h1 { font-size: 24px; }
  .content h2 { font-size: 20px; margin: 30px 0 12px; }
  .content h3 { font-size: 17px; margin: 22px 0 8px; }

  .footer-cols { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
  .site-footer { padding: 36px 0 24px; }
}

@media (max-width: 400px) {
  .logo img { width: 72px; }
  .header-actions .btn { padding: 7px 11px; font-size: 11px; }
  .header-actions .lang-switch { padding: 7px 9px; font-size: 10px; }
  .hero h1 { font-size: 19px; }
  .cards { gap: 8px; }
}
