/* Wiz Casino NZ — wizcasino-nz.com — prefix: wz7 — theme: light */

/* 1. Fonts */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@500;700;800&family=Inter:wght@400;600;700&display=swap');

/* 2. Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img, svg { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; background: none; border: none; }
ul, ol { list-style-position: inside; }

/* 3. Tokens */
:root {
  --bg-base: #f7f5fb;
  --bg-card: #ffffff;
  --accent: #5b2d91;
  --highlight: #d98f1f;
  --text: #251b38;
  --muted: #6c6484;
  --border: #e5dff0;
  --font-display: 'Manrope', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --radius: 14px;
  --radius-sm: 8px;
  --transition: 0.22s ease;
  --shadow: 0 8px 28px rgba(37, 27, 56, 0.09);
}

/* 4. Base */
html { scroll-behavior: smooth; }
body {
  background: var(--bg-base);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body::-webkit-scrollbar { width: 10px; }
body::-webkit-scrollbar-track { background: var(--bg-base); }
body::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 5px; }

/* 5. Type scale */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; font-weight: 800; }
h1 { font-size: 1.85rem; letter-spacing: -0.02em; }
h2 { font-size: 1.45rem; margin-bottom: 0.7rem; }
h3 { font-size: 1.12rem; margin-bottom: 0.45rem; }
p { margin-bottom: 1rem; }
strong { font-weight: 700; }
a { color: var(--accent); text-decoration-thickness: 1px; text-underline-offset: 2px; transition: color var(--transition); }
a:hover { color: var(--highlight); }

/* 6. Container */
.wz7_container { width: 100%; max-width: 1080px; margin: 0 auto; padding: 0 1rem; }

/* 7. Buttons */
.wz7_btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; text-decoration: none;
  border-radius: var(--radius-sm); transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  min-height: 48px; padding: 0.7rem 1.5rem; text-align: center;
}
.wz7_btn:active { transform: scale(0.97); }
.wz7_btn--primary { background: var(--accent); color: var(--bg-card); }
.wz7_btn--primary:hover { color: var(--bg-card); box-shadow: var(--shadow); transform: translateY(-2px); }
.wz7_btn--highlight { background: var(--highlight); color: var(--text); }
.wz7_btn--highlight:hover { color: var(--text); box-shadow: var(--shadow); transform: translateY(-2px); }
.wz7_btn--outline { border: 2px solid var(--accent); color: var(--accent); background: transparent; }
.wz7_btn--outline:hover { background: var(--accent); color: var(--bg-card); }
.wz7_btn--lg { font-size: 1.08rem; padding: 0.9rem 2rem; min-height: 54px; }
.wz7_btn--full { width: 100%; }

/* 8. Nav */
.wz7_nav { background: var(--bg-card); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 50; }
.wz7_nav-inner { display: flex; align-items: center; justify-content: space-between; min-height: 64px; gap: 1rem; }
.wz7_nav-logo { display: flex; align-items: center; text-decoration: none; }
.wz7_nav-links { display: none; }
.wz7_nav-cta { display: none; }
.wz7_nav-toggle {
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; align-items: center;
}
.wz7_nav-toggle span { display: block; width: 24px; height: 3px; background: var(--accent); border-radius: 2px; transition: transform var(--transition); }
.wz7_mobile-nav { display: none; background: var(--bg-card); border-bottom: 1px solid var(--border); }
.wz7_mobile-nav.open { display: block; }
.wz7_mobile-nav a {
  display: block; padding: 0.9rem 1rem; text-decoration: none; font-weight: 600;
  border-top: 1px solid var(--border); color: var(--text);
}
.wz7_mobile-nav a:hover { background: var(--bg-base); color: var(--accent); }

/* 9. Ticker */
.wz7_ticker { background: var(--accent); color: var(--bg-card); font-size: 0.85rem; padding: 0.45rem 0; text-align: center; }
.wz7_ticker strong { color: var(--highlight); }

/* 10. Hero — LAYOUT B: centred */
.wz7_hero { padding: 2.6rem 0 2.2rem; text-align: center; position: relative; overflow: hidden; }
.wz7_hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(ellipse at 50% -20%, rgba(91, 45, 145, 0.14), transparent 60%),
              radial-gradient(ellipse at 85% 110%, rgba(217, 143, 31, 0.12), transparent 55%);
}
.wz7_hero-badge {
  display: inline-block; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 999px; padding: 0.3rem 1rem; font-size: 0.82rem; font-weight: 600;
  color: var(--accent); margin-bottom: 1rem;
}
.wz7_hero h1 { max-width: 780px; margin: 0 auto 1rem; }
.wz7_hero-sub { max-width: 640px; margin: 0 auto 1.5rem; font-size: 1.05rem; color: var(--muted); }
.wz7_hero-ctas { display: flex; flex-direction: column; gap: 0.7rem; align-items: center; margin-bottom: 1rem; }
.wz7_hero-note { font-size: 0.78rem; color: var(--muted); }

/* 11. Trust bar */
.wz7_trustbar { background: var(--bg-card); border-block: 1px solid var(--border); padding: 1.1rem 0; }
.wz7_trustbar-grid { display: grid; grid-template-columns: 1fr; gap: 0.8rem; }
.wz7_trust-item { display: flex; align-items: center; gap: 0.65rem; font-size: 0.92rem; font-weight: 600; }
.wz7_trust-item svg { flex-shrink: 0; }

/* 12. Content sections */
.wz7_section { padding: 2.4rem 0; }
.wz7_section--alt { background: var(--bg-card); border-block: 1px solid var(--border); }
.wz7_section-head { max-width: 720px; margin-bottom: 1.4rem; }
.wz7_section-head p { color: var(--muted); margin-bottom: 0; }

.wz7_card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.3rem; margin-bottom: 1rem;
}
.wz7_card--accent { border-top: 4px solid var(--accent); }
.wz7_card--gold { border-top: 4px solid var(--highlight); }
.wz7_grid-2, .wz7_grid-3 { display: grid; grid-template-columns: 1fr; gap: 1rem; }

.wz7_table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg-card); margin: 1.1rem 0; }
table.wz7_table { width: 100%; border-collapse: collapse; font-size: 0.92rem; min-width: 520px; }
.wz7_table th {
  background: var(--accent); color: var(--bg-card); text-align: left;
  padding: 0.75rem 0.9rem; font-family: var(--font-display); font-weight: 700; white-space: nowrap;
}
.wz7_table td { padding: 0.72rem 0.9rem; border-top: 1px solid var(--border); vertical-align: top; }
.wz7_table tr:nth-child(even) td { background: var(--bg-base); }

.wz7_steps { list-style: none; counter-reset: step; margin: 1.1rem 0; }
.wz7_steps li { counter-increment: step; position: relative; padding: 0 0 1.1rem 3rem; }
.wz7_steps li::before {
  content: counter(step); position: absolute; left: 0; top: 0;
  width: 2.1rem; height: 2.1rem; border-radius: 50%; background: var(--accent); color: var(--bg-card);
  display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 800;
}
.wz7_steps li:not(:last-child)::after {
  content: ""; position: absolute; left: 1rem; top: 2.3rem; bottom: 0.2rem; width: 2px; background: var(--border);
}
.wz7_steps h3 { margin-bottom: 0.2rem; }
.wz7_steps p { margin-bottom: 0; color: var(--muted); font-size: 0.95rem; }

.wz7_check { list-style: none; margin: 0.8rem 0 1rem; }
.wz7_check li { padding-left: 1.7rem; position: relative; margin-bottom: 0.55rem; }
.wz7_check li::before { content: "✓"; position: absolute; left: 0; color: var(--highlight); font-weight: 800; }

/* Slots grid */
.wz7_slots-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.9rem; margin: 1.2rem 0; }
.wz7_slot-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: transform var(--transition), box-shadow var(--transition); }
.wz7_slot-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.wz7_slot-card img { width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover; }
.wz7_slot-meta { padding: 0.65rem 0.75rem; }
.wz7_slot-meta strong { font-family: var(--font-display); font-size: 0.9rem; display: block; }
.wz7_slot-meta span { font-size: 0.78rem; color: var(--muted); }

/* Notice / info boxes */
.wz7_notice { border-left: 4px solid var(--highlight); background: var(--bg-card); border-radius: var(--radius-sm); padding: 1rem 1.1rem; margin: 1.1rem 0; }
.wz7_notice--accent { border-left-color: var(--accent); }
.wz7_notice p:last-child { margin-bottom: 0; }

/* 13. FAQ */
.wz7_faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-sm); margin-bottom: 0.7rem; overflow: hidden; }
.wz7_faq-btn {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1rem 1.1rem; text-align: left; font-family: var(--font-display); font-weight: 700;
  color: var(--text); min-height: 48px;
}
.wz7_faq-btn::after { content: "+"; font-size: 1.4rem; color: var(--accent); transition: transform var(--transition); flex-shrink: 0; }
.wz7_faq-item.open .wz7_faq-btn::after { transform: rotate(45deg); }
.wz7_faq-body { display: none; padding: 0 1.1rem 1rem; color: var(--muted); }
.wz7_faq-body p:last-child { margin-bottom: 0; }
.wz7_faq-item.open .wz7_faq-body { display: block; }

/* 14. CTA band */
.wz7_cta-band { background: linear-gradient(120deg, var(--accent), #3d1d66); color: var(--bg-card); padding: 2.4rem 0; text-align: center; }
.wz7_cta-band h2 { color: var(--bg-card); }
.wz7_cta-band p { color: rgba(255, 255, 255, 0.82); max-width: 560px; margin: 0 auto 1.3rem; }

/* 15. Footer */
.wz7_footer { background: var(--bg-card); border-top: 1px solid var(--border); padding: 2rem 0 5.5rem; font-size: 0.88rem; color: var(--muted); }
.wz7_footer-grid { display: grid; grid-template-columns: 1fr; gap: 1.4rem; margin-bottom: 1.4rem; }
.wz7_footer h3 { font-size: 0.95rem; }
.wz7_footer ul { list-style: none; }
.wz7_footer li { margin-bottom: 0.4rem; }
.wz7_footer a { color: var(--muted); text-decoration: none; }
.wz7_footer a:hover { color: var(--accent); }
.wz7_footer-legal { border-top: 1px solid var(--border); padding-top: 1.2rem; font-size: 0.8rem; }
.wz7_footer-legal p { margin-bottom: 0.5rem; }
.wz7_18badge {
  display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px;
  border: 2px solid var(--accent); border-radius: 50%; font-weight: 800; color: var(--accent);
  font-family: var(--font-display); margin-right: 0.6rem;
}

/* 16. Sticky mobile CTA */
.wz7_sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 60;
  background: var(--bg-card); border-top: 1px solid var(--border); padding: 0.6rem 1rem;
  box-shadow: 0 -6px 18px rgba(37, 27, 56, 0.12);
}

/* 17. Animations */
@keyframes wz7-rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.wz7_animate { animation: wz7-rise 0.5s ease both; }

/* 18. Responsive */
@media (min-width: 480px) {
  h1 { font-size: 2.2rem; }
  .wz7_hero-ctas { flex-direction: row; justify-content: center; }
  .wz7_slots-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 768px) {
  h1 { font-size: 2.6rem; }
  h2 { font-size: 1.7rem; }
  .wz7_nav-toggle { display: none; }
  .wz7_nav-links { display: flex; gap: 1.4rem; align-items: center; }
  .wz7_nav-links a { text-decoration: none; font-weight: 600; font-size: 0.95rem; color: var(--text); }
  .wz7_nav-links a:hover { color: var(--accent); }
  .wz7_nav-cta { display: inline-flex; }
  .wz7_mobile-nav { display: none !important; }
  .wz7_sticky-cta { display: none; }
  .wz7_footer { padding-bottom: 2rem; }
  .wz7_trustbar-grid { grid-template-columns: repeat(4, 1fr); }
  .wz7_grid-2 { grid-template-columns: 1fr 1fr; }
  .wz7_grid-3 { grid-template-columns: repeat(3, 1fr); }
  .wz7_section { padding: 3.2rem 0; }
}
@media (min-width: 1024px) {
  .wz7_hero { padding: 3.6rem 0 3rem; }
  .wz7_slots-grid { grid-template-columns: repeat(6, 1fr); }
}
