/* ============================================================
   Bizzo Casino — satellite site styles
   Brand-driven visual style, structure from reference layout
   Prefix: bz-   |   Mobile-first   |   BP: 480 / 768 / 1024 / 1280
   ============================================================ */

:root {
  /* Brand palette */
  --bz-bg:            #2d1b3d;   /* main background (eggplant purple) */
  --bz-bg-deep:       #231330;   /* darker header / footer */
  --bz-bg-light:      #3a2150;   /* lighter purple panels */
  --bz-surface:       #34204a;   /* cards / media boxes */
  --bz-green:         #5fd500;   /* primary CTA */
  --bz-green-hi:      #6fe000;   /* CTA gradient top */
  --bz-green-lo:      #52c000;   /* CTA gradient bottom */
  --bz-gold:          #ffc107;   /* highlights / headings accent */
  --bz-text:          #ffffff;
  --bz-text-muted:    #c9b8d6;   /* muted lilac */
  --bz-border:        rgba(255,255,255,0.10);
  --bz-gold-line:     rgba(255,193,7,0.45);

  /* Shape & rhythm */
  --bz-radius:        8px;
  --bz-radius-lg:     14px;
  --bz-header-h:      72px;
  --bz-maxw:          1080px;
  --bz-pad:           16px;

  --bz-font-head: "Montserrat", "Poppins", "Segoe UI", system-ui, sans-serif;
  --bz-font-body: "Open Sans", "Montserrat", "Segoe UI", system-ui, sans-serif;

  --bz-shadow:        0 10px 30px rgba(0,0,0,0.35);
  --bz-ease:          0.25s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--bz-font-body);
  background: var(--bz-bg);
  color: var(--bz-text);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ============================================================
   BUTTONS
   ============================================================ */
.bz-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: var(--bz-radius);
  font-family: var(--bz-font-head);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.2px;
  cursor: pointer;
  border: 0;
  transition: transform var(--bz-ease), box-shadow var(--bz-ease),
              background var(--bz-ease), color var(--bz-ease);
  white-space: nowrap;
}

.bz-btn--primary {
  background: linear-gradient(180deg, var(--bz-green-hi), var(--bz-green-lo));
  color: #11240a;
  box-shadow: 0 6px 16px rgba(95,213,0,0.30);
}
.bz-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(95,213,0,0.45);
}

.bz-btn--ghost {
  background: transparent;
  color: var(--bz-text);
  border: 1px solid var(--bz-gold);
}
.bz-btn--ghost:hover {
  background: rgba(255,193,7,0.12);
  color: var(--bz-gold);
}

.bz-btn--lg {
  min-height: 52px;
  padding: 0 34px;
  font-size: 1.05rem;
}

/* ============================================================
   HEADER
   ============================================================ */
.bz-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bz-bg-deep);
  border-bottom: 1px solid var(--bz-gold-line);
  min-height: var(--bz-header-h);
}
.bz-header__inner {
  max-width: var(--bz-maxw);
  margin: 0 auto;
  min-height: var(--bz-header-h);
  padding: 0 var(--bz-pad);
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.bz-brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.bz-brand__logo { height: 36px; width: auto; }
.bz-brand__name {
  font-family: var(--bz-font-head);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--bz-text);
}

.bz-nav {
  display: none;
  gap: 6px;
  margin-left: 8px;
}
.bz-nav__link {
  font-family: var(--bz-font-head);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--bz-text);
  padding: 8px 12px;
  border-radius: 6px;
  transition: color var(--bz-ease), background var(--bz-ease);
}
.bz-nav__link:hover { color: var(--bz-gold); background: rgba(255,255,255,0.05); }

.bz-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

/* ============================================================
   HERO
   ============================================================ */
.bz-hero {
  background:
    radial-gradient(120% 90% at 50% 0%, #4a2a66 0%, rgba(74,42,102,0) 55%),
    linear-gradient(180deg, #3a2150 0%, #2d1b3d 100%);
  padding: 48px var(--bz-pad) 56px;
}
.bz-hero__inner {
  max-width: var(--bz-maxw);
  margin: 0 auto;
  text-align: center;
}
.bz-hero__badge {
  display: inline-block;
  font-family: var(--bz-font-head);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  color: var(--bz-gold);
  background: rgba(0,0,0,0.35);
  border: 1px solid var(--bz-gold-line);
  border-radius: 999px;
  padding: 7px 16px;
  margin-bottom: 22px;
}
.bz-hero__title {
  font-family: var(--bz-font-head);
  font-weight: 800;
  font-size: 2rem;
  line-height: 1.15;
  margin-bottom: 18px;
  text-wrap: balance;
}
.bz-hero__subtitle {
  color: var(--bz-text-muted);
  font-size: 1.05rem;
  max-width: 760px;
  margin: 0 auto 28px;
  text-wrap: pretty;
}
.bz-hero__cta { margin-bottom: 40px; }

.bz-hero__banner {
  position: relative;
  width: 100%;
  border-radius: var(--bz-radius-lg);
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.04) 0 12px, rgba(255,255,255,0) 12px 24px),
    linear-gradient(135deg, #4a2a66, #2a1840);
  border: 1px solid var(--bz-border);
  box-shadow: var(--bz-shadow);
  overflow: hidden;
}
.bz-hero__banner:empty,
.bz-hero__banner:has(.bz-media__label) { aspect-ratio: 16 / 7; }
.bz-hero__banner img { width: 100%; height: auto; display: block; }

/* ============================================================
   MEDIA PLACEHOLDERS (replaced by real images via ID)
   ============================================================ */
.bz-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 8;
  margin: 26px 0;
  border-radius: var(--bz-radius);
  background:
    repeating-linear-gradient(45deg, rgba(255,193,7,0.06) 0 14px, rgba(255,193,7,0) 14px 28px),
    var(--bz-surface);
  border: 1.5px dashed var(--bz-gold-line);
  display: flex;
  align-items: center;
  justify-content: center;
}
.bz-media--shot {
  aspect-ratio: auto;
  border-style: solid;
  border-color: var(--bz-border);
  background: var(--bz-surface);
  overflow: hidden;
}
.bz-media--shot img { width: 100%; height: auto; display: block; }

.bz-media--device {
  aspect-ratio: auto;
  border: 0;
  background: transparent;
  padding: 12px 0;
}
.bz-media--device img { width: auto; max-width: 100%; max-height: 520px; height: auto; margin: 0 auto; display: block; }

.bz-media__label,
.bz-hero__banner .bz-media__label {
  font-family: monospace;
  font-size: 0.8rem;
  letter-spacing: 1px;
  color: var(--bz-gold);
  background: rgba(0,0,0,0.45);
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid var(--bz-gold-line);
}

/* Payment logos */
.bz-pay {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 26px 0;
}
.bz-pay__item {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: var(--bz-radius);
  padding: 8px;
  height: 72px;
  transition: transform var(--bz-ease);
}
.bz-pay__item img { max-height: 100%; max-width: 100%; width: auto; object-fit: contain; }
.bz-pay__item:hover { transform: translateY(-3px); }

/* Game cards grid */
.bz-games {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 26px 0;
}
.bz-games__card {
  display: block;
  border-radius: var(--bz-radius);
  overflow: hidden;
  border: 1px solid var(--bz-border);
  background: var(--bz-surface);
  transition: transform var(--bz-ease), box-shadow var(--bz-ease);
}
.bz-games__card img { width: 100%; height: auto; display: block; }
.bz-games__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(0,0,0,0.45);
}

/* ============================================================
   MAIN CONTENT
   ============================================================ */
.bz-main {
  background: var(--bz-bg);
  padding: 48px var(--bz-pad) 64px;
}
.bz-main__inner {
  max-width: 820px;
  margin: 0 auto;
}
.bz-section { margin-bottom: 44px; }
.bz-section:last-child { margin-bottom: 0; }

.bz-h2 {
  font-family: var(--bz-font-head);
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 1.25;
  margin-bottom: 16px;
  color: var(--bz-text);
  text-wrap: balance;
}
.bz-section p { color: var(--bz-text-muted); margin-bottom: 14px; }
.bz-section p:last-of-type { margin-bottom: 0; }

/* Lists */
.bz-list {
  list-style: none;
  margin: 8px 0 4px;
  display: grid;
  gap: 10px;
}
.bz-list li {
  position: relative;
  padding-left: 28px;
  color: var(--bz-text-muted);
}
.bz-list li::before {
  content: "◆";
  position: absolute;
  left: 4px;
  top: 0;
  color: var(--bz-gold);
  font-size: 0.7rem;
  line-height: 1.7;
}
.bz-list--ordered { counter-reset: bz-step; }
.bz-list--ordered li::before {
  counter-increment: bz-step;
  content: counter(bz-step);
  left: 0;
  top: 1px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--bz-font-head);
  font-size: 0.72rem;
  font-weight: 700;
  color: #11240a;
  background: var(--bz-green);
  border-radius: 50%;
}
.bz-list--ordered li { padding-left: 32px; }

/* Table */
.bz-table-wrap {
  margin-top: 22px;
  overflow-x: auto;
  border-radius: var(--bz-radius);
  border: 1px solid var(--bz-border);
}
.bz-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bz-surface);
  font-size: 0.95rem;
}
.bz-table th {
  text-align: left;
  font-family: var(--bz-font-head);
  font-weight: 700;
  color: #11240a;
  background: var(--bz-gold);
  padding: 12px 16px;
}
.bz-table td {
  padding: 11px 16px;
  border-top: 1px solid var(--bz-border);
  color: var(--bz-text);
}
.bz-table tbody tr:nth-child(even) td { background: rgba(255,255,255,0.03); }

/* ============================================================
   FAQ
   ============================================================ */
.bz-faq__item {
  border: 1px solid var(--bz-border);
  border-radius: var(--bz-radius);
  background: var(--bz-surface);
  margin-bottom: 12px;
  overflow: hidden;
}
.bz-faq__q {
  font-family: var(--bz-font-head);
  font-weight: 700;
  font-size: 1.02rem;
  padding: 16px 48px 16px 18px;
  cursor: pointer;
  list-style: none;
  position: relative;
  color: var(--bz-text);
  transition: color var(--bz-ease);
}
.bz-faq__q::-webkit-details-marker { display: none; }
.bz-faq__q::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--bz-gold);
  font-size: 1.4rem;
  font-weight: 400;
  transition: transform var(--bz-ease);
}
.bz-faq__item[open] .bz-faq__q { color: var(--bz-gold); }
.bz-faq__item[open] .bz-faq__q::after { content: "−"; }
.bz-faq__q:hover { color: var(--bz-gold); }
.bz-faq__a { padding: 0 18px 18px; }
.bz-faq__a p { color: var(--bz-text-muted); margin: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.bz-footer {
  background: var(--bz-bg-deep);
  border-top: 1px solid var(--bz-gold-line);
  padding: 36px var(--bz-pad);
}
.bz-footer__inner {
  max-width: var(--bz-maxw);
  margin: 0 auto;
  text-align: center;
  display: grid;
  gap: 16px;
  justify-items: center;
}
.bz-brand--footer .bz-brand__logo { height: 40px; }
.bz-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  justify-content: center;
}
.bz-footer__link {
  color: var(--bz-text-muted);
  font-size: 0.92rem;
  transition: color var(--bz-ease);
}
.bz-footer__link:hover { color: var(--bz-gold); }
.bz-footer__disclaimer { color: var(--bz-text-muted); font-size: 0.82rem; max-width: 540px; }
.bz-footer__copy { color: rgba(201,184,214,0.6); font-size: 0.82rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 480px) {
  .bz-hero__title { font-size: 2.3rem; }
}

@media (min-width: 768px) {
  .bz-nav { display: flex; }
  .bz-games { grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .bz-pay { grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .bz-hero { padding: 64px var(--bz-pad) 72px; }
  .bz-hero__title { font-size: 2.8rem; }
  .bz-h2 { font-size: 1.75rem; }
  .bz-main { padding: 64px var(--bz-pad) 80px; }
  .bz-footer__inner { grid-template-columns: auto 1fr; justify-items: start; text-align: left; gap: 14px 28px; }
  .bz-brand--footer { grid-row: span 1; }
  .bz-footer__nav { justify-content: flex-end; grid-column: 2; grid-row: 1; }
  .bz-footer__disclaimer { grid-column: 1 / -1; }
  .bz-footer__copy { grid-column: 1 / -1; }
}

@media (min-width: 1024px) {
  .bz-hero__title { font-size: 3.1rem; }
  .bz-hero__inner { text-align: left; }
  .bz-hero__subtitle { margin-left: 0; margin-right: 0; }
}

@media (min-width: 1280px) {
  :root { --bz-pad: 24px; }
  .bz-hero__title { font-size: 3.4rem; }
}
