:root {
  --navy: #121C4D;
  --blue: #2F65F5;
  --violet: #6D63F6;
  --magenta: #E3267A;
  --lavender: #EEF0FF;
  --white: #FFFFFF;
  --gold: #F2B84B;
  --ink: #18213F;
  --muted: #667099;
  --line: rgba(18, 28, 77, 0.12);
  --shadow: 0 18px 45px rgba(18, 28, 77, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--lavender);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
}

body.nav-open {
  overflow: hidden;
}

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

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

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3 {
  margin: 0 0 1rem;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: clamp(2.7rem, 6vw, 5.6rem);
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.7rem);
}

h3 {
  font-size: 1.35rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
  overflow: hidden;
}

caption {
  padding: 0 0 0.85rem;
  color: var(--muted);
  font-weight: 700;
  text-align: left;
}

th,
td {
  padding: 1rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--white);
  background: var(--navy);
}

tbody tr:nth-child(even) {
  background: #F7F8FF;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--navy);
  box-shadow: 0 10px 30px rgba(8, 14, 46, 0.18);
}

.site-header.is-scrolled {
  box-shadow: 0 14px 40px rgba(8, 14, 46, 0.28);
}

.nav-wrap {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.brand img,
.site-footer img {
  width: 166px;
  height: auto;
}

.main-nav,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
  padding: 0.65rem 0.8rem;
}

.main-nav a:hover {
  color: var(--white);
}

.au-badge {
  display: inline-flex;
  width: 42px;
  height: 34px;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  background: var(--gold);
  border-radius: var(--radius);
  font-weight: 900;
}

.btn {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.74rem 1.05rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover,
.category-row a:hover,
.game-card:hover,
.promo-link:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: var(--magenta);
  box-shadow: 0 12px 26px rgba(227, 38, 122, 0.25);
}

.btn-secondary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--violet));
  box-shadow: 0 12px 26px rgba(47, 101, 245, 0.22);
}

.btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

.btn-large {
  min-height: 52px;
  padding: 0.95rem 1.25rem;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  overflow: hidden;
  background: var(--white);
}

.hero-media {
  position: absolute;
  inset: auto 0 0;
  height: 47%;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(238,240,255,0.94) 100%), url("../assets/hero-banner/imgi_5_hero-bg.jpg") center bottom / cover no-repeat;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: calc(100vh - 76px);
  align-content: center;
  padding: 4.2rem 0 8rem;
}

.eyebrow,
.section-kicker {
  margin: 0 0 0.8rem;
  color: var(--magenta);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-lead {
  max-width: 720px;
  color: #3F496D;
  font-size: 1.14rem;
}

.bonus-strip {
  display: flex;
  width: fit-content;
  max-width: 100%;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin: 1rem 0 1.2rem;
  padding: 0.85rem 1rem;
  color: var(--navy);
  background: rgba(242, 184, 75, 0.24);
  border: 1px solid rgba(242, 184, 75, 0.55);
  border-radius: var(--radius);
  font-size: 1.1rem;
}

.hero-actions,
.trust-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.trust-list {
  margin: 1.2rem 0 0;
  padding: 0;
  color: #3F496D;
  list-style: none;
}

.trust-list li {
  padding: 0.42rem 0.7rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.category-band {
  position: relative;
  z-index: 2;
  margin-top: -38px;
}

.category-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.7rem;
  padding: 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.category-row a {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0.8rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--violet));
  border-radius: var(--radius);
  font-weight: 900;
  text-align: center;
  transition: transform 160ms ease;
}

.section {
  padding: 5rem 0;
}

.intro-grid,
.signup-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 2rem;
  align-items: start;
}

.summary-card,
.steps-card,
.content-grid article {
  padding: 1.4rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card-title {
  font-size: 1.35rem;
}

.summary-card ul {
  display: grid;
  gap: 0.75rem;
  margin: 0 0 1.2rem;
  padding: 0;
  list-style: none;
}

.summary-card li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
}

.summary-card span {
  color: var(--muted);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 1.7rem;
}

.section-heading.compact {
  margin-top: 3rem;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.small-grid {
  grid-template-columns: repeat(4, 1fr);
}

.game-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 30px rgba(18, 28, 77, 0.1);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.game-card:hover {
  box-shadow: 0 18px 36px rgba(18, 28, 77, 0.16);
}

.game-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.game-card span {
  display: flex;
  min-height: 58px;
  align-items: center;
  padding: 0.9rem 1rem;
  color: var(--navy);
  font-weight: 900;
}

.split-sections,
.content-grid.two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-top: 2rem;
}

.split-sections > div {
  padding: 1.5rem;
  color: var(--white);
  background: var(--navy);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.split-sections h2,
.split-sections p {
  color: var(--white);
}

.promo-link {
  display: inline-flex;
  margin-top: 0.5rem;
  padding: 0.75rem 1rem;
  color: var(--navy);
  background: var(--gold);
  border-radius: var(--radius);
  font-weight: 900;
  transition: transform 160ms ease;
}

.bonus-section,
.payments-section,
.faq-section {
  background: rgba(255, 255, 255, 0.44);
}

.promo-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1.5rem;
  padding: 1.6rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), #222E72 58%, var(--violet));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.promo-banner h2,
.promo-banner p {
  color: var(--white);
}

.promo-banner .section-kicker {
  color: var(--gold);
}

.table-wrap {
  overflow-x: auto;
  margin: 1.3rem 0;
  padding: 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.number-list,
.check-list {
  margin: 0;
  padding-left: 1.2rem;
}

.number-list li,
.check-list li {
  margin-bottom: 0.65rem;
}

.prose {
  max-width: 980px;
}

.prose p {
  color: #394466;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 24px rgba(18, 28, 77, 0.08);
}

summary {
  cursor: pointer;
  padding: 1rem 1.1rem;
  color: var(--navy);
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 1.1rem 1.1rem;
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: var(--navy);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.1fr;
  gap: 2rem;
  padding: 3rem 0 2rem;
}

.footer-title {
  color: var(--white);
  font-size: 1rem;
}

.site-footer a {
  display: block;
  margin-bottom: 0.55rem;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .nav-wrap {
    flex-wrap: wrap;
    padding: 0.7rem 0;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .category-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .intro-grid,
  .signup-grid,
  .split-sections,
  .content-grid.two-col {
    grid-template-columns: 1fr;
  }

  .summary-card,
  .steps-card {
    width: 100%;
  }

  .small-grid,
  .game-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .site-header {
    position: relative;
  }

  .nav-wrap {
    min-height: auto;
  }

  .brand img,
  .site-footer img {
    width: 145px;
  }

  .nav-actions {
    gap: 0.45rem;
  }

  .nav-actions .btn {
    min-height: 38px;
    padding: 0.62rem 0.72rem;
    font-size: 0.88rem;
  }

  .au-badge {
    width: 36px;
    height: 31px;
  }

  .main-nav {
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 0.1rem;
  }

  .main-nav a {
    white-space: nowrap;
  }

  .hero,
  .hero-inner {
    min-height: auto;
  }

  .hero-inner {
    padding: 3rem 0 6rem;
  }

  .hero-media {
    height: 38%;
  }

  .hero-actions .btn,
  .bonus-strip {
    width: 100%;
  }

  .bonus-strip {
    justify-content: center;
  }

  .category-band {
    margin-top: -24px;
  }

  .category-row {
    grid-template-columns: repeat(2, 1fr);
    padding: 0.7rem;
  }

  .category-row a {
    min-height: 48px;
    font-size: 0.9rem;
  }

  .section {
    padding: 3.4rem 0;
  }

  .game-grid,
  .small-grid {
    grid-template-columns: 1fr;
  }

  .promo-banner {
    display: block;
  }

  .promo-banner .btn {
    width: 100%;
    margin-top: 0.8rem;
  }

  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
    display: grid;
  }
}
