/* Play Wild Pokies Casino Australia — Stylesheet */
/* Dark bronze/gold theme for playwildpokies.com */

/* ============================================
   CSS VARIABLES - Color Scheme
   ============================================ */
:root {
  /* Background colors */
  --bg-primary: #0d0d0d;
  --bg-secondary: #1a1a1a;
  --bg-tertiary: #141414;
  --bg-card: #1e1a18;
  --bg-card-alt: #1c1916;
  --bg-card-hover: #2a2520;
  --bg-header: rgba(13, 13, 13, 0.98);

  /* Accent colors */
  --gold-primary: #FFB800;
  --gold-light: #FFC933;
  --gold-dark: #CC9300;
  --gold-gradient: linear-gradient(180deg, #FFB800 0%, #FF8C00 100%);
  --orange: #FF6B00;
  --orange-light: #FF8C33;
  --red: #FF3333;

  /* Button colors */
  --btn-green: #4CAF50;
  --btn-green-hover: #45a049;
  --btn-green-dark: #3d8b40;
  --btn-gold: linear-gradient(180deg, #FFB800 0%, #FF8C00 100%);
  --btn-gold-hover: linear-gradient(180deg, #FFC933 0%, #FFB800 100%);

  /* Text colors */
  --text-white: #FFFFFF;
  --text-light: #F5F5F5;
  --text-gray: #AAAAAA;
  --text-gray-light: #CCCCCC;
  --text-gold: #FFB800;
  --text-muted: #888888;

  /* Borders */
  --border-gold: 1px solid #FFB800;
  --border-gold-light: 1px solid rgba(255, 184, 0, 0.3);
  --border-dark: 1px solid #333333;
  --border-card: 1px solid #2a2520;

  /* Shadows */
  --shadow-gold: 0 0 20px rgba(255, 184, 0, 0.3);
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-btn: 0 4px 15px rgba(0, 0, 0, 0.3);

  /* Spacing */
  --section-padding: 80px 0;
  --container-width: 1200px;
  --container-padding: 0 20px;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-white);
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  color: var(--gold-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--gold-light);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.3;
  font-weight: 700;
}

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

.section {
  padding: var(--section-padding);
}

.section-alt {
  background-color: var(--bg-secondary);
}

.section-dark {
  background-color: var(--bg-tertiary);
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--bg-header);
  border-bottom: 1px solid rgba(255, 184, 0, 0.2);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 50px;
  width: auto;
}

.logo-text {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-white);
}

.logo-text span {
  color: var(--gold-primary);
}

.header-buttons {
  display: flex;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
}

.btn-green {
  background-color: var(--btn-green);
  color: var(--text-white);
  box-shadow: var(--shadow-btn);
}

.btn-green:hover {
  background-color: var(--btn-green-hover);
  transform: translateY(-2px);
  color: var(--text-white);
}

.btn-gold {
  background: var(--btn-gold);
  color: var(--bg-primary);
  box-shadow: var(--shadow-btn);
}

.btn-gold:hover {
  background: var(--btn-gold-hover);
  transform: translateY(-2px);
  color: var(--bg-primary);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--gold-primary);
  color: var(--gold-primary);
}

.btn-outline:hover {
  background: var(--gold-primary);
  color: var(--bg-primary);
}

.btn-large {
  padding: 16px 40px;
  font-size: 1.1rem;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  padding-top: 100px;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--bg-primary) 0%, #1a1510 50%, var(--bg-primary) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center top, rgba(255, 184, 0, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 24px;
  line-height: 1.2;
}

.hero-content h1 span {
  color: var(--gold-primary);
}

.hero-intro {
  font-size: 1.15rem;
  color: var(--text-gray-light);
  margin-bottom: 20px;
}

.hero-highlight {
  font-size: 1.2rem;
  color: var(--text-white);
  margin-bottom: 20px;
  font-weight: 500;
}

.hero-features {
  margin: 30px 0;
  padding: 20px;
  background: rgba(255, 184, 0, 0.05);
  border: var(--border-gold-light);
  border-radius: 12px;
}

.hero-features p {
  margin-bottom: 15px;
  color: var(--text-gray-light);
}

.hero-features strong {
  color: var(--gold-primary);
}

.hero-cta {
  font-size: 1.1rem;
  color: var(--text-white);
  margin-bottom: 25px;
}

.hero-image {
  position: relative;
  z-index: 1;
}

.hero-image img {
  border-radius: 16px;
  box-shadow: var(--shadow-gold);
}

.bonus-badge {
  display: block;
  position: relative;
  background: linear-gradient(135deg, #1a1510 0%, #2a2015 50%, #1a1510 100%);
  border: 2px solid transparent;
  border-image: linear-gradient(90deg, #CC9300, #FFB800, #FFC933, #FFB800, #CC9300) 1;
  color: var(--text-white);
  padding: 25px 40px;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  max-width: 500px;
  box-shadow:
    0 0 30px rgba(255, 184, 0, 0.2),
    inset 0 0 60px rgba(255, 184, 0, 0.05);
}

.bonus-badge::before {
  content: '★';
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.8rem;
  color: var(--gold-primary);
  text-shadow: 0 0 10px rgba(255, 184, 0, 0.5);
}

.bonus-badge::after {
  content: '★';
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.8rem;
  color: var(--gold-primary);
  text-shadow: 0 0 10px rgba(255, 184, 0, 0.5);
}

.bonus-badge span {
  display: block;
}

.bonus-badge .bonus-amount {
  font-size: 2rem;
  color: var(--gold-primary);
  text-shadow: 0 0 20px rgba(255, 184, 0, 0.4);
  margin-bottom: 5px;
}

.bonus-badge .bonus-extra {
  font-size: 1.1rem;
  color: var(--text-gray-light);
  font-weight: 500;
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */
.why-choose {
  background: var(--bg-secondary);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.2rem;
  color: var(--text-white);
  margin-bottom: 15px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-gray);
  max-width: 700px;
  margin: 0 auto;
}

.section-intro {
  font-size: 1.1rem;
  color: var(--text-gray-light);
  margin-bottom: 30px;
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 40px;
}

.feature-card {
  background: var(--bg-card);
  border: var(--border-card);
  border-radius: 12px;
  padding: 30px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--gold-primary);
  transform: translateY(-5px);
}

.feature-card h3 {
  color: var(--gold-primary);
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-gray-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ============================================
   CONTENT BLOCKS
   ============================================ */
.content-block {
  margin-bottom: 60px;
}

.content-block-with-image {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  align-items: start;
}

.content-block-with-image .content-block-text h3 {
  font-size: 1.6rem;
  color: var(--gold-primary);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(255, 184, 0, 0.2);
}

.content-block-with-image .content-block-text p {
  color: var(--text-gray-light);
  margin-bottom: 15px;
  font-size: 1rem;
}

.content-block-image {
  position: sticky;
  top: 100px;
}

.content-block-image a {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-block-image a:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
}

.content-block-image img {
  width: 100%;
  height: auto;
  display: block;
}

.content-block h3 {
  font-size: 1.6rem;
  color: var(--gold-primary);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(255, 184, 0, 0.2);
}

.content-block p {
  color: var(--text-gray-light);
  margin-bottom: 15px;
  font-size: 1rem;
}

.content-block strong {
  color: var(--text-white);
}

.content-list {
  margin: 20px 0;
}

.content-list li {
  padding: 10px 0 10px 25px;
  position: relative;
  color: var(--text-gray-light);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.content-list li:last-child {
  border-bottom: none;
}

.content-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--gold-primary);
  border-radius: 50%;
}

.content-list li strong {
  color: var(--gold-primary);
}

/* ============================================
   BONUSES SECTION
   ============================================ */
.bonuses-section {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.bonus-table-wrapper {
  overflow-x: auto;
  margin: 30px 0;
}

.bonus-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.bonus-table th {
  background: linear-gradient(180deg, #2a2520 0%, #1e1a18 100%);
  color: var(--gold-primary);
  padding: 18px 20px;
  text-align: left;
  font-weight: 600;
  font-size: 1rem;
  border-bottom: 2px solid var(--gold-primary);
}

.bonus-table td {
  padding: 16px 20px;
  color: var(--text-gray-light);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 1rem;
}

.bonus-table tr:hover td {
  background: rgba(255, 184, 0, 0.05);
}

.bonus-table tr:last-child td {
  border-bottom: none;
}

/* ============================================
   VIP SECTION
   ============================================ */
.vip-tiers {
  display: inline-block;
  background: rgba(255, 184, 0, 0.1);
  padding: 10px 20px;
  border-radius: 8px;
  color: var(--gold-primary);
  font-weight: 600;
  margin: 15px 0;
}

.vip-perks {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 25px;
  margin: 20px 0;
  border: var(--border-gold-light);
}

.vip-perks li {
  padding: 12px 0 12px 30px;
  position: relative;
  color: var(--text-gray-light);
}

.vip-perks li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--btn-green);
  font-weight: bold;
}

/* ============================================
   WAGERING SECTION
   ============================================ */
.wagering-info {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 30px;
  margin: 25px 0;
  border-left: 4px solid var(--gold-primary);
}

.wagering-info p {
  margin-bottom: 15px;
}

.wagering-list {
  margin: 20px 0;
}

.wagering-list li {
  padding: 10px 0;
  color: var(--text-gray-light);
  display: flex;
  align-items: center;
  gap: 10px;
}

.wagering-list li::before {
  content: '•';
  color: var(--gold-primary);
  font-size: 1.5rem;
}

/* ============================================
   GAMES SECTION
   ============================================ */
.games-section {
  background: var(--bg-tertiary);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin: 40px 0;
}

.game-card {
  background: var(--bg-card);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: var(--border-card);
}

.game-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-gold);
}

.game-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.game-card-content {
  padding: 25px;
}

.game-card-content h3 {
  color: var(--gold-primary);
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.game-card-content p {
  color: var(--text-gray-light);
  font-size: 0.95rem;
}

.games-list {
  columns: 2;
  column-gap: 30px;
  margin: 20px 0;
}

.games-list li {
  padding: 8px 0 8px 20px;
  position: relative;
  color: var(--text-gray-light);
  break-inside: avoid;
}

.games-list li::before {
  content: '🎰';
  position: absolute;
  left: 0;
  font-size: 0.9rem;
}

/* Jackpot amounts */
.jackpot-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: var(--bg-card);
  border-radius: 8px;
  margin-bottom: 10px;
  border: var(--border-card);
}

.jackpot-list li span {
  color: var(--gold-primary);
  font-weight: 700;
  font-size: 1.1rem;
}

/* ============================================
   PROMO BANNER
   ============================================ */
.promo-banner {
  border-radius: 16px;
  overflow: hidden;
  margin: 40px 0;
  box-shadow: var(--shadow-card);
}

.promo-banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================
   BANKING SECTION
   ============================================ */
.banking-section {
  background: var(--bg-secondary);
}

.banking-methods {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin: 30px 0;
}

.banking-card {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 30px;
  border: var(--border-card);
}

.banking-card h3 {
  color: var(--gold-primary);
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.banking-card p {
  color: var(--text-gray-light);
  margin-bottom: 15px;
}

.banking-card ul li {
  padding: 8px 0 8px 20px;
  position: relative;
  color: var(--text-gray-light);
}

.banking-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--btn-green);
}

/* Times and limits */
.times-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 25px 0;
}

.time-card {
  background: var(--bg-card);
  padding: 20px;
  border-radius: 10px;
  border-left: 3px solid var(--gold-primary);
}

.time-card h5 {
  color: var(--gold-primary);
  font-size: 1rem;
  margin-bottom: 10px;
}

.time-card p {
  color: var(--text-gray-light);
  font-size: 0.95rem;
}

/* ============================================
   MOBILE SECTION
   ============================================ */
.mobile-section {
  background: var(--bg-primary);
}

.mobile-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin: 30px 0;
}

.mobile-feature {
  text-align: center;
  padding: 30px;
  background: var(--bg-card);
  border-radius: 12px;
  border: var(--border-card);
}

.mobile-feature h3 {
  color: var(--gold-primary);
  margin-bottom: 15px;
}

.mobile-feature p {
  color: var(--text-gray-light);
}

/* ============================================
   GETTING STARTED SECTION
   ============================================ */
.getting-started {
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin: 40px 0;
}

.step-card {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  border: var(--border-card);
  position: relative;
}

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--gold-gradient);
  color: var(--bg-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.step-card h3 {
  color: var(--gold-primary);
  margin-top: 15px;
  margin-bottom: 15px;
}

.step-card p {
  color: var(--text-gray-light);
  font-size: 0.95rem;
}

.step-card ul {
  text-align: left;
  margin: 15px 0;
}

.step-card ul li {
  padding: 5px 0;
  color: var(--text-gray-light);
  font-size: 0.9rem;
}

/* ============================================
   SECURITY SECTION
   ============================================ */
.security-section {
  background: var(--bg-tertiary);
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin: 30px 0;
}

.security-card {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 30px;
  border: var(--border-card);
}

.security-card h3 {
  color: var(--gold-primary);
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.security-card p {
  color: var(--text-gray-light);
  margin-bottom: 15px;
}

.security-card ul li {
  padding: 8px 0 8px 25px;
  position: relative;
  color: var(--text-gray-light);
}

.security-card ul li::before {
  content: '🔒';
  position: absolute;
  left: 0;
  font-size: 0.85rem;
}

.warning-box {
  background: rgba(255, 51, 51, 0.1);
  border: 1px solid var(--red);
  border-radius: 12px;
  padding: 25px;
  margin: 30px 0;
}

.warning-box h3 {
  color: var(--red);
  margin-bottom: 15px;
}

.warning-box p {
  color: var(--text-gray-light);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
  background: var(--bg-secondary);
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  border: var(--border-card);
}

.faq-question {
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: var(--bg-card-hover);
}

.faq-question h3 {
  color: var(--gold-primary);
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0;
  flex: 1;
}

.faq-toggle {
  color: var(--gold-primary);
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 25px 20px;
  color: var(--text-gray-light);
  line-height: 1.7;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* ============================================
   WHY DIFFERENT SECTION
   ============================================ */
.why-different {
  background: linear-gradient(180deg, var(--bg-primary) 0%, #1a1510 50%, var(--bg-primary) 100%);
  position: relative;
}

.why-different::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(255, 184, 0, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.why-different-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.why-different-content p {
  color: var(--text-gray-light);
  margin-bottom: 20px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.final-cta {
  margin-top: 40px;
  padding: 30px;
  background: rgba(255, 184, 0, 0.1);
  border: var(--border-gold-light);
  border-radius: 12px;
}

.final-cta p {
  font-size: 1.2rem;
  color: var(--text-white);
  margin-bottom: 25px;
  font-weight: 500;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg-primary);
  border-top: 1px solid rgba(255, 184, 0, 0.2);
  padding: 40px 0;
}

.footer-content {
  text-align: center;
}

.footer-disclaimer {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
  font-style: italic;
}

.footer-disclaimer a {
  color: var(--gold-primary);
}

/* ============================================
   CTA SECTIONS
   ============================================ */
.cta-box {
  background: linear-gradient(135deg, rgba(255, 184, 0, 0.15) 0%, rgba(255, 140, 0, 0.1) 100%);
  border: var(--border-gold-light);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  margin: 40px 0;
}

.cta-box p {
  font-size: 1.15rem;
  color: var(--text-white);
  margin-bottom: 25px;
}

.cta-box strong {
  color: var(--gold-primary);
}

/* ============================================
   IMAGE GRID
   ============================================ */
.image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 30px 0;
}

.image-grid img {
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease;
}

.image-grid img:hover {
  transform: scale(1.02);
}

/* ============================================
   TEXT EMPHASIS
   ============================================ */
.text-gold {
  color: var(--gold-primary);
}

.text-highlight {
  background: linear-gradient(180deg, transparent 60%, rgba(255, 184, 0, 0.3) 60%);
}

.text-bold {
  font-weight: 700;
  color: var(--text-white);
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 1200px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-image {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .content-block-with-image {
    grid-template-columns: 1fr;
  }

  .content-block-image {
    position: static;
    order: -1;
    margin-bottom: 25px;
  }

  .games-grid {
    grid-template-columns: 1fr;
  }

  .banking-methods {
    grid-template-columns: 1fr;
  }

  .security-grid {
    grid-template-columns: 1fr;
  }

  .times-grid {
    grid-template-columns: 1fr;
  }

  .mobile-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 50px 0;
  }

  .header-inner {
    flex-wrap: nowrap;
    gap: 10px;
    padding: 10px 15px;
    justify-content: space-between;
  }

  .logo {
    flex-shrink: 0;
  }

  .logo img {
    height: 40px;
  }

  .logo-text {
    display: none;
  }

  .header-buttons {
    width: auto;
    flex-shrink: 0;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.85rem;
  }

  .hero {
    padding-top: 70px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .content-block h3 {
    font-size: 1.4rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .games-list {
    columns: 1;
  }

  .bonus-table th,
  .bonus-table td {
    padding: 12px 15px;
    font-size: 0.9rem;
  }

  .image-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.7rem;
  }

  .bonus-badge {
    padding: 20px 30px;
    max-width: 100%;
  }

  .bonus-badge::before,
  .bonus-badge::after {
    font-size: 1.3rem;
    left: 8px;
  }

  .bonus-badge::after {
    left: auto;
    right: 8px;
  }

  .bonus-badge .bonus-amount {
    font-size: 1.5rem;
  }

  .bonus-badge .bonus-extra {
    font-size: 1rem;
  }

  .btn-large {
    padding: 14px 30px;
    font-size: 1rem;
  }

  .feature-card {
    padding: 20px;
  }

  .faq-question {
    padding: 15px 20px;
  }

  .faq-question h3 {
    font-size: 0.95rem;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.mb-0 { margin-bottom: 0; }
.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }

.mt-0 { margin-top: 0; }
.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* ============================================
   MULTI-PAGE CHROME
   Added for the multi-page conversion — navigation,
   breadcrumbs, inner page hero, info boxes, footer nav.
   ============================================ */

/* Header: sticky, dark bg, gold accents */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-header);
  backdrop-filter: blur(10px);
  border-bottom: var(--border-gold-light);
}

.header-inner {
  gap: 24px;
}

.logo img {
  max-height: 50px;
}

.header-nav {
  display: flex;
  gap: 22px;
  flex: 1;
  justify-content: center;
}

.header-nav a {
  color: var(--text-light);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 8px 4px;
  border-bottom: 2px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.header-nav a:hover,
.header-nav a.active {
  color: var(--gold-primary);
  border-bottom-color: var(--gold-primary);
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: var(--border-gold-light);
  color: var(--gold-primary);
  width: 44px;
  height: 44px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1.1rem;
}

@media (max-width: 992px) {
  .header-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--bg-header);
    padding: 20px;
    gap: 10px;
    border-bottom: var(--border-gold-light);
  }
  .header-nav.mobile-open {
    display: flex;
  }
  .mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

/* Breadcrumbs */
.breadcrumbs {
  padding: 16px 0 8px;
  font-size: 0.9rem;
}

.breadcrumbs-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 0;
  list-style: none;
}

.breadcrumbs-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumbs-list a {
  color: var(--text-gray-light);
}

.breadcrumbs-list a:hover {
  color: var(--gold-primary);
}

.breadcrumbs-list span[aria-current="page"] {
  color: var(--gold-primary);
  font-weight: 500;
}

.breadcrumbs-sep {
  color: var(--text-muted);
}

/* Page hero (inner pages) */
.page-hero {
  padding: 80px 0 40px;
  background: linear-gradient(135deg, var(--bg-primary) 0%, #1a1510 50%, var(--bg-primary) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(255, 184, 0, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-size: 2.4rem;
  margin-bottom: 20px;
  line-height: 1.15;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-hero .hero-intro {
  max-width: 780px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: var(--text-gray-light);
}

.page-hero .hero-image {
  margin-top: 24px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-gold);
}

.page-hero .hero-image img {
  border-radius: 16px;
}

/* Main container for inner pages */
.main-container {
  padding: 40px 0 60px;
}

.main-container .section {
  padding: 30px 0;
}

.main-container h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--text-white);
  position: relative;
  padding-bottom: 10px;
}

.main-container h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 3px;
  background: var(--gold-gradient);
}

.main-container h3 {
  font-size: 1.3rem;
  margin: 20px 0 12px;
  color: var(--gold-primary);
}

.main-container p {
  margin-bottom: 16px;
  color: var(--text-gray-light);
}

.main-container ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 20px;
}

.main-container ol.content-list {
  padding-left: 20px;
  list-style: decimal;
  color: var(--text-gray-light);
}

.main-container ol.content-list li {
  padding-left: 8px;
  margin-bottom: 10px;
}

/* Tables inside main-container */
.table-container {
  overflow-x: auto;
  margin: 20px 0;
  border-radius: 10px;
  border: var(--border-gold-light);
}

.table-container table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
}

.table-container th,
.table-container td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: var(--border-card);
  color: var(--text-gray-light);
}

.table-container th {
  background: var(--bg-card-alt);
  color: var(--gold-primary);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.table-container tr:last-child td {
  border-bottom: 0;
}

/* Info box callouts */
.info-box {
  background: rgba(255, 184, 0, 0.06);
  border-left: 4px solid var(--gold-primary);
  border-radius: 0 10px 10px 0;
  padding: 20px 24px;
  margin: 20px 0;
}

.info-box p {
  margin-bottom: 0;
  color: var(--text-light);
}

/* Pros/Cons */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 20px 0;
}

.pros,
.cons {
  background: var(--bg-card);
  border: var(--border-card);
  border-radius: 10px;
  padding: 20px;
}

.pros h3,
.cons h3 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.pros h3 {
  color: var(--btn-green);
}

.cons h3 {
  color: var(--red);
}

.pros ul,
.cons ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pros li,
.cons li {
  padding: 6px 0 6px 22px;
  position: relative;
  color: var(--text-gray-light);
}

.pros li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--btn-green);
  font-weight: 700;
}

.cons li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}

@media (max-width: 768px) {
  .pros-cons {
    grid-template-columns: 1fr;
  }
}

/* Footer nav */
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
  list-style: none;
  padding: 30px 0 20px;
  margin: 0;
  border-bottom: var(--border-card);
}

.footer-nav a {
  color: var(--text-gray-light);
  font-size: 0.9rem;
  transition: color 0.25s ease;
}

.footer-nav a:hover {
  color: var(--gold-primary);
}

footer.footer {
  background: var(--bg-tertiary);
  padding: 30px 0 40px;
  border-top: var(--border-gold-light);
  color: var(--text-gray-light);
  margin-top: 60px;
}

.footer .footer-content {
  text-align: center;
  padding-top: 20px;
  font-size: 0.85rem;
}

.footer .footer-content p {
  margin-bottom: 10px;
}

.footer .footer-disclaimer em {
  color: var(--text-muted);
  font-style: normal;
  line-height: 1.6;
}

.footer .footer-disclaimer a {
  color: var(--gold-primary);
}

/* Footer authority block (regulators / responsible-gambling resources) */
.authority-section {
  padding: 30px 0 10px;
  border-bottom: var(--border-card);
  text-align: center;
}

.authority-section h3 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-gray);
  margin-bottom: 20px;
  font-weight: 600;
}

.authority-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px 40px;
  align-items: center;
}

.authority-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--text-gray-light);
  font-size: 0.8rem;
  text-align: center;
  text-decoration: none;
  opacity: 0.78;
  transition: opacity 0.25s ease, color 0.25s ease;
  min-width: 80px;
}

.authority-logo:hover {
  opacity: 1;
  color: var(--gold-primary);
}

.authority-logo img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: grayscale(0.25);
  transition: filter 0.25s ease;
}

.authority-logo:hover img {
  filter: grayscale(0);
}

/* Content figure wrapper (per checklist §9) */
.content-figure {
  margin: 20px auto;
  max-width: 100%;
  text-align: center;
}

.content-figure img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  margin: 0 auto;
}

.content-figure figcaption {
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
}

/* Small hero h1 on narrow screens */
@media (max-width: 768px) {
  .page-hero h1 {
    font-size: 1.8rem;
  }
  .page-hero {
    padding: 60px 0 30px;
  }
  .main-container h2 {
    font-size: 1.5rem;
  }
}
