:root {
  color-scheme: dark;
  --page: #03092d;
  --panel: #07103b;
  --panel-soft: #0b1d52;
  --ink: #f8fcff;
  --muted: #c7def7;
  --quiet: #8fb5dc;
  --gold: #79f2ff;
  --gold-deep: #1bc8ff;
  --ruby: #7d5cff;
  --ruby-strong: #19a8ff;
  --ruby-deep: #001a68;
  --emerald: #23ffd7;
  --violet: #9a6bff;
  --flare: #ff5fd7;
  --line: rgba(121, 242, 255, 0.34);
  --headline-gradient: linear-gradient(90deg, #ffffff 0%, #79f2ff 28%, #19a8ff 55%, #9a6bff 78%, #ff5fd7 100%);
  --accent-gradient: linear-gradient(135deg, #23ffd7 0%, #19a8ff 42%, #9a6bff 72%, #ff5fd7 100%);
  --button-gradient: linear-gradient(135deg, #23ffd7 0%, #19a8ff 36%, #165dff 68%, #9a6bff 100%);
  --shadow: 0 22px 60px rgba(0, 5, 41, 0.55);
  --max-width: 1540px;
  --header-height: 76px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 18% 10%, rgba(35, 255, 215, 0.16), transparent 26%),
    radial-gradient(circle at 84% 18%, rgba(154, 107, 255, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(0, 6, 39, 0.68), rgba(1, 3, 18, 0.96)),
    url("assets/auspokies99-body-bg.jpg") center top / cover fixed,
    #03092d;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

body.is-nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3 {
  line-height: 1.1;
  letter-spacing: 0;
}

h1,
h2,
.section-heading h2,
.hero h1 {
  background: var(--headline-gradient);
  background-size: 180% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: var(--gold);
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 18px rgba(25, 168, 255, 0.26));
}

h1 {
  max-width: 1160px;
  font-size: 52px;
}

h2 {
  font-size: 38px;
}

h3 {
  font-size: 22px;
}

p {
  color: var(--muted);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--accent-gradient);
  color: #02051a;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  height: var(--header-height);
  background:
    linear-gradient(180deg, rgba(0, 9, 46, 0.95), rgba(0, 0, 0, 0.94)),
    url("assets/auspokies99-header-bg.jpg") center / cover;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
  background:
    linear-gradient(180deg, rgba(0, 9, 46, 0.98), rgba(0, 0, 0, 0.98)),
    url("assets/auspokies99-header-bg.jpg") center / cover;
}

.header-inner {
  width: min(100% - 16px, var(--max-width));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 166px;
  height: 48px;
  object-fit: contain;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
}

.primary-nav a {
  position: relative;
  padding: 26px 0;
  transition: color 180ms ease;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 2px;
  background: var(--accent-gradient);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav a.is-active {
  color: var(--ink);
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after,
.primary-nav a.is-active::after {
  transform: scaleX(1);
}

.account-actions,
.hero-actions,
.cta-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 18px;
  font-weight: 800;
  line-height: 1;
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.button::before {
  position: absolute;
  inset: 1px;
  border-radius: 7px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.3), transparent 48%);
  content: "";
  pointer-events: none;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(25, 168, 255, 0.36), 0 0 22px rgba(154, 107, 255, 0.28);
}

.button.solid {
  border-color: transparent;
  background: var(--button-gradient);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(25, 168, 255, 0.34), inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.button.ghost {
  border-color: transparent;
  background: linear-gradient(135deg, rgba(35, 255, 215, 0.2), rgba(25, 168, 255, 0.88), rgba(154, 107, 255, 0.82));
  color: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(121, 242, 255, 0.32);
}

.button.large {
  min-height: 50px;
  padding: 14px 22px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.nav-toggle span:not(.sr-only) {
  position: absolute;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle span:nth-child(1) {
  transform: translateY(-7px);
}

.nav-toggle span:nth-child(3) {
  transform: translateY(7px);
}

body.is-nav-open .nav-toggle span:nth-child(1) {
  transform: rotate(45deg);
}

body.is-nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.is-nav-open .nav-toggle span:nth-child(3) {
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 36px 0 42px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(0, 9, 46, 0.62), rgba(0, 3, 18, 0.96)),
    url("assets/auspokies99-body-bg.jpg") center top / cover,
    #03092d;
}

.hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(117, 177, 207, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(117, 177, 207, 0.1) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 78%);
}

.hero-inner,
.section-inner,
.footer-inner,
.footer-bottom {
  width: min(100% - 16px, var(--max-width));
  margin: 0 auto;
}

.hero-inner {
  position: relative;
  z-index: 1;
  order: 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  padding-top: 54px;
  padding-bottom: 18px;
  text-align: center;
}

.hero-copy {
  display: grid;
  justify-items: center;
  gap: 18px;
}

.eyebrow {
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
  background: var(--accent-gradient);
  background-size: 180% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: var(--gold);
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 14px rgba(35, 255, 215, 0.22));
}

.hero-copy p:not(.eyebrow) {
  max-width: 1180px;
  font-size: 18px;
}

.hero h1 {
  max-width: 1240px;
  font-size: 34px;
}

.hero-logo {
  display: none;
  align-items: center;
  justify-content: center;
}

.hero-logo img {
  width: min(280px, 100%);
  filter: drop-shadow(0 18px 32px rgba(107, 220, 255, 0.18));
}

.banner-carousel {
  position: relative;
  z-index: 2;
  order: 1;
  width: min(100% - 16px, var(--max-width));
  margin: 0 auto;
  overflow: hidden;
  border: 2px solid rgba(121, 242, 255, 0.84);
  border-radius: 8px;
  aspect-ratio: 600 / 230;
  background: #010312;
  box-shadow: var(--shadow), 0 0 34px rgba(25, 168, 255, 0.22);
}

.banner-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.banner-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 400ms ease, transform 600ms ease;
}

.banner-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.carousel-control {
  position: absolute;
  top: 50%;
  width: 42px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(107, 220, 255, 0.62);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.62);
  color: var(--gold);
  font-size: 26px;
  transform: translateY(-50%);
  transition: background 180ms ease, color 180ms ease;
}

.carousel-control:hover,
.carousel-control:focus-visible {
  background: var(--accent-gradient);
  color: #02051a;
}

.carousel-control.previous {
  left: 14px;
}

.carousel-control.next {
  right: 14px;
}

.carousel-dots {
  position: absolute;
  right: 0;
  bottom: 12px;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.54);
  padding: 0;
}

.carousel-dot.is-active {
  border-color: var(--gold);
  background: var(--accent-gradient);
}

.quick-links {
  position: relative;
  z-index: 2;
  order: 2;
  width: min(100% - 16px, var(--max-width));
  margin: 26px auto 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.quick-links a {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(5, 14, 58, 0.92);
  transition: transform 180ms ease, border-color 180ms ease;
}

.quick-links a:hover,
.quick-links a:focus-visible {
  border-color: var(--gold);
  box-shadow: 0 12px 26px rgba(25, 168, 255, 0.26), 0 0 18px rgba(154, 107, 255, 0.2);
  transform: translateY(-2px);
}

.quick-links img {
  width: 100%;
  height: 106px;
  object-fit: cover;
  background: rgba(3, 9, 45, 0.9);
}

.quick-links span {
  display: block;
  padding: 12px 10px 14px;
  color: var(--ink);
  font-weight: 850;
  text-align: center;
}

section:not(.hero) {
  padding: 76px 0;
}

.intro-section,
.games-section,
.faq-section,
.seo-section,
.play-now-section {
  background: rgba(3, 9, 45, 0.9);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 48px;
  align-items: center;
}

.about-copy {
  display: grid;
  gap: 16px;
}

.about-copy h2 {
  background: var(--headline-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: var(--gold);
  -webkit-text-fill-color: transparent;
}

.about-copy p {
  color: #ffffff;
  font-weight: 650;
  line-height: 1.52;
}

.about-copy .eyebrow {
  color: var(--gold);
}

.about-note {
  margin-top: 6px;
}

.feature-list.about-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 2px;
}

.feature-list.about-pills a {
  min-width: 138px;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(85, 221, 255, 0.42);
  border-radius: 18px;
  background: #061b5f;
  color: #ffffff;
  font-weight: 850;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
  transition: background 180ms ease, transform 180ms ease;
}

.feature-list.about-pills a:hover,
.feature-list.about-pills a:focus-visible {
  background: #0a2f8d;
  transform: translateY(-1px);
}

.feature-list.about-pills span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
}

.about-visual {
  margin: 0;
}

.about-visual img {
  width: 100%;
  border-radius: 8px;
  aspect-ratio: 1.08 / 1;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.44);
}

.promo-section,
.overview-section,
.cta-section,
.jackpot-section {
  background:
    linear-gradient(180deg, rgba(6, 21, 71, 0.94), rgba(1, 3, 18, 0.98)),
    url("assets/auspokies99-body-bg.jpg") center / cover;
}

.live-section {
  background: #010312;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 34px;
  align-items: start;
}

.section-heading {
  max-width: 980px;
  margin-bottom: 30px;
  display: grid;
  gap: 12px;
}

.games-section .section-heading {
  max-width: 1120px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading.centered,
.seo-copy.centered {
  max-width: 1160px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.seo-copy {
  display: grid;
  gap: 16px;
  margin-bottom: 34px;
}

.section-inner > div:first-child,
.live-layout > div:first-child {
  display: grid;
  gap: 16px;
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature-list div,
.game-info-card,
.mini-cards article,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  padding: 18px;
}

.feature-list strong,
.feature-list span {
  display: block;
}

.feature-list strong {
  color: var(--gold);
  font-size: 20px;
  line-height: 1.2;
}

.feature-list span {
  margin-top: 6px;
  color: var(--muted);
}

.game-info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.game-info-card {
  display: grid;
  justify-items: center;
  gap: 12px;
  min-height: 250px;
  text-align: center;
}

.content-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(107, 220, 255, 0.48);
  border-radius: 8px;
  background: linear-gradient(160deg, rgba(35, 255, 215, 0.22), rgba(25, 168, 255, 0.16), rgba(154, 107, 255, 0.18));
  color: #ffffff;
  box-shadow: 0 0 18px rgba(35, 255, 215, 0.16);
  font-weight: 950;
  line-height: 1;
}

.game-info-card h3 {
  color: var(--gold);
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.promo-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(7, 16, 59, 0.96);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

.promo-card img {
  width: 100%;
  aspect-ratio: 600 / 230;
  object-fit: cover;
}

.promo-card div {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.promo-card h3,
.mini-cards h3,
.footer-links h2,
.footer-cta h2 {
  color: var(--gold);
}

.promo-card a {
  color: var(--emerald);
  text-shadow: 0 0 14px rgba(35, 255, 215, 0.22);
  font-weight: 850;
}

.offer-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.offer-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #010312;
}

.offer-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.72));
  content: "";
}

.offer-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offer-card div {
  position: relative;
  z-index: 1;
  min-height: 300px;
  display: grid;
  align-content: end;
  justify-items: center;
  gap: 10px;
  padding: 22px;
  text-align: center;
}

.offer-card h3 {
  color: var(--ink);
}

.category-tabs {
  display: grid;
  gap: 18px;
}

.tab-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tab-button {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  padding: 10px 16px;
  font-weight: 850;
}

.tab-button.is-active {
  border-color: var(--gold);
  background: var(--accent-gradient);
  color: #02051a;
}

.tab-panel {
  display: none;
  grid-template-columns: minmax(260px, 0.95fr) minmax(0, 1.05fr);
  gap: 22px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(7, 16, 59, 0.96);
  padding: 18px;
}

.tab-panel.is-active {
  display: grid;
}

.tab-panel img {
  width: 100%;
  border-radius: 8px;
  aspect-ratio: 600 / 230;
  object-fit: cover;
}

.tab-panel div {
  display: grid;
  gap: 12px;
}

.game-marquee {
  overflow: hidden;
  margin-top: 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: marquee 44s linear infinite;
}

.marquee-track img {
  width: 154px;
  height: 190px;
  border: 1px solid rgba(121, 242, 255, 0.48);
  border-radius: 10px;
  background: #02051a;
  object-fit: contain;
  box-shadow: 0 14px 28px rgba(0, 5, 41, 0.42), 0 0 18px rgba(25, 168, 255, 0.12);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.live-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 34px;
  align-items: center;
}

.live-layout > img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  aspect-ratio: 600 / 330;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.mini-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 8px;
}

.mini-cards article {
  display: grid;
  gap: 10px;
}

.mini-cards h3 {
  font-size: 19px;
}

.table-wrap {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(7, 16, 59, 0.96);
}

.feature-table {
  border-color: rgba(255, 255, 255, 0.56);
  background: linear-gradient(150deg, rgba(8, 44, 122, 0.96), rgba(4, 10, 48, 0.98));
  box-shadow: inset 0 0 28px rgba(35, 255, 215, 0.08);
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 16px 18px;
  border-bottom: 1px solid rgba(107, 220, 255, 0.16);
  text-align: left;
  vertical-align: top;
}

tr:last-child th,
tr:last-child td {
  border-bottom: 0;
}

th {
  width: 32%;
  color: var(--gold);
}

td {
  color: var(--muted);
}

.feature-table th,
.feature-table td {
  border-bottom-color: rgba(255, 255, 255, 0.62);
}

.feature-table th {
  color: #f0fbff;
}

.feature-table td {
  color: #ffffff;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list summary {
  color: var(--ink);
  font-weight: 850;
}

.faq-list p {
  margin-top: 10px;
}

.play-now-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1.12fr);
  gap: 42px;
  align-items: center;
}

.play-now-layout > div {
  display: grid;
  gap: 16px;
}

.play-now-layout > img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  aspect-ratio: 1000 / 400;
  object-fit: contain;
  background: linear-gradient(180deg, rgba(4, 10, 42, 0.96), rgba(1, 3, 18, 0.98));
  box-shadow: 0 16px 42px rgba(10, 141, 255, 0.25);
}

.check-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin: 4px 0 8px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 18px;
  color: var(--ink);
  font-weight: 750;
}

.check-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--gold);
  content: ">";
  font-weight: 950;
}

.cta-inner {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  border: 1px solid rgba(121, 242, 255, 0.5);
  border-radius: 8px;
  background:
    radial-gradient(circle at 12% 20%, rgba(35, 255, 215, 0.18), transparent 28%),
    radial-gradient(circle at 88% 10%, rgba(154, 107, 255, 0.22), transparent 34%),
    linear-gradient(135deg, rgba(8, 30, 92, 0.96), rgba(4, 10, 42, 0.98));
  padding: 34px;
}



.play-now-layout .eyebrow,
.cta-inner .eyebrow {
  margin-left: 0;
  margin-right: 0;
}

.cta-inner > div:first-child {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  max-width: 760px;
}

.cta-inner p {
  max-width: 760px;
  color: #d9ebff;
}

.cta-actions {
  position: relative;
  z-index: 1;
  justify-content: flex-end;
  min-width: 240px;
}

.cta-actions .button {
  min-width: 132px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(0, 3, 18, 0.92), rgba(0, 0, 0, 0.98)),
    url("assets/auspokies99-footer-bg.jpg") center top / cover;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(180px, 0.8fr) minmax(220px, 0.8fr);
  gap: 34px;
  padding: 54px 0 34px;
}

.footer-brand img {
  width: 190px;
  height: 58px;
  object-fit: contain;
  margin-bottom: 14px;
}

.footer-links,
.footer-cta {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-links a {
  color: var(--muted);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(107, 220, 255, 0.18);
  padding: 18px 0 24px;
  color: var(--quiet);
  font-size: 14px;
}



/* Visual polish: high-impact aurora accents for the dark blue POKIES99 theme. */
.section-heading h2,
.about-copy h2,
.play-now-layout h2,
.cta-inner h2,
.footer-links h2,
.footer-cta h2,
.promo-card h3,
.game-info-card h3,
.tab-panel h3,
.mini-cards h3,
.offer-card h3 {
  background: var(--headline-gradient);
  background-size: 180% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: var(--gold);
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 12px rgba(25, 168, 255, 0.2));
}

.hero-copy p:not(.eyebrow),
.section-heading p,
.seo-copy p {
  color: #d9ebff;
}

.banner-carousel,
.promo-card,
.offer-card,
.tab-panel,
.game-info-card,
.mini-cards article,
.faq-list details,
.table-wrap,
.cta-inner {
  box-shadow:
    0 18px 44px rgba(0, 5, 41, 0.42),
    0 0 0 1px rgba(121, 242, 255, 0.08),
    0 0 26px rgba(25, 168, 255, 0.1);
}

.promo-card,
.game-info-card,
.mini-cards article,
.faq-list details,
.tab-panel,
.table-wrap {
  background:
    linear-gradient(180deg, rgba(13, 31, 90, 0.86), rgba(4, 10, 42, 0.96));
}

.promo-card,
.offer-card,
.quick-links a,
.tab-panel,
.live-layout > img,
.play-now-layout > img {
  border-color: rgba(121, 242, 255, 0.48);
}

.promo-card:hover,
.offer-card:hover,
.quick-links a:hover,
.quick-links a:focus-visible,
.game-info-card:hover {
  border-color: rgba(35, 255, 215, 0.78);
  box-shadow:
    0 22px 48px rgba(0, 5, 41, 0.46),
    0 0 28px rgba(35, 255, 215, 0.18),
    0 0 38px rgba(154, 107, 255, 0.12);
}

.content-icon,
.tab-button.is-active,
.carousel-dot.is-active {
  background: var(--accent-gradient);
  color: #ffffff;
  text-shadow: 0 1px 8px rgba(0, 5, 41, 0.7);
}

.carousel-control:hover,
.carousel-control:focus-visible,
.tab-button.is-active {
  color: #ffffff;
  box-shadow: 0 0 22px rgba(35, 255, 215, 0.24);
}

th,
.feature-table th,
.check-list li::before,
.feature-list.about-pills span {
  color: #79f2ff;
  text-shadow: 0 0 12px rgba(25, 168, 255, 0.28);
}

.button {
  text-shadow: 0 1px 8px rgba(0, 5, 41, 0.6);
}

.primary-nav a.is-active,
.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: #ffffff;
  text-shadow: 0 0 12px rgba(121, 242, 255, 0.32);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1040px) {
  .nav-toggle {
    display: inline-flex;
    position: relative;
    order: 3;
  }

  .primary-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    background:
      linear-gradient(180deg, rgba(0, 9, 46, 0.98), rgba(0, 0, 0, 0.98)),
      url("assets/auspokies99-header-bg.jpg") center / cover;
    border-bottom: 1px solid var(--line);
    padding: 8px 20px 18px;
    transform: translateY(-120%);
    transition: transform 220ms ease;
  }

  body.is-nav-open .primary-nav {
    transform: translateY(0);
  }

  .primary-nav a {
    padding: 14px 0;
  }

  .primary-nav a::after {
    bottom: 10px;
  }

  .account-actions {
    margin-left: auto;
  }

  .hero-inner,
  .two-column,
  .about-layout,
  .live-layout,
  .play-now-layout,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .about-layout {
    gap: 28px;
  }

  .about-visual img {
    aspect-ratio: 16 / 9;
  }

  .hero-logo {
    display: none;
  }

  .promo-grid {
    grid-template-columns: 1fr;
  }

  .game-info-grid,
  .offer-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mini-cards,
  .quick-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .intro-section .feature-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 68px;
  }

  h1 {
    font-size: 36px;
  }

  .hero h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 29px;
  }

  h3 {
    font-size: 20px;
  }

  .header-inner,
  .hero-inner,
  .section-inner,
  .footer-inner,
  .footer-bottom,
  .banner-carousel,
  .quick-links {
    width: min(100% - 24px, var(--max-width));
  }

  .brand img {
    width: 134px;
    height: 42px;
  }

  .account-actions {
    display: none;
  }

  .hero {
    padding-top: 28px;
  }

  .hero-copy p:not(.eyebrow) {
    font-size: 16px;
  }

  .hero-actions,
  .cta-actions,
  .cta-inner,
  .footer-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .cta-inner {
    grid-template-columns: 1fr;
    padding: 24px;
    text-align: left;
  }

  .cta-actions {
    width: 100%;
    min-width: 0;
    justify-content: stretch;
  }


  .feature-list.about-pills a {
    flex: 1 1 calc(50% - 10px);
    min-width: 0;
  }

  .banner-carousel {
    aspect-ratio: 600 / 270;
  }

  .carousel-control {
    width: 36px;
    height: 46px;
    font-size: 22px;
  }

  .quick-links,
  .mini-cards,
  .game-info-grid,
  .offer-showcase,
  .intro-section .feature-list {
    grid-template-columns: 1fr 1fr;
  }

  section:not(.hero) {
    padding: 56px 0;
  }

  .tab-panel {
    grid-template-columns: 1fr;
  }

  .game-info-card {
    min-height: 220px;
  }

  .offer-card,
  .offer-card div {
    min-height: 260px;
  }

  .marquee-track {
    animation-duration: 34s;
    gap: 12px;
  }

  .marquee-track img {
    width: 126px;
    height: 156px;
  }

  th,
  td {
    display: block;
    width: 100%;
    padding: 13px 14px;
  }

  th {
    padding-bottom: 4px;
    border-bottom: 0;
  }

  td {
    padding-top: 2px;
  }
}

@media (max-width: 460px) {
  .quick-links,
  .game-info-grid,
  .offer-showcase,
  .intro-section .feature-list {
    grid-template-columns: 1fr;
  }

  .quick-links img {
    height: 96px;
  }

  .carousel-control {
    display: none;
  }

  .feature-list.about-pills {
    display: grid;
    grid-template-columns: 1fr;
  }
}
