/* ===============================
   GLOBAL RESET & BASE STYLE
================================= */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
}


/* ===============================
   HEADER
================================= */
header {
    background: linear-gradient(90deg, #0F172A 0%, #1E293B 50%, #0F172A 100%);
    height: 80px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 120px;
    box-shadow: 0 3px 12px rgba(251, 191, 36, 0.15); /* subtle gold glow */
}
header li {
  text-transform: capitalize;
}

/* Hide mobile nav by default */
.mobile-nav {
  display: none;
  background: #0F172A;
  border-top: 1px solid #334155;
  padding: 20px;
}

.menu {
    display: none;
}

/* Logo & title alignment */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0;
}

.logo-wrap img {
  height: 160px;
  width: auto;
  object-fit: contain;
}

header h1 {
    color: #FBBF24;
    font-size: 1.6rem;
    font-weight: 600;
    text-indent: -9999px;
}

header ul {
    list-style: none;
}

header li {
    display: inline-block;
    margin-left: 40px;
}

header a {
    color: #F9FAFB;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

header a:hover {
    color: #FBBF24;
}

  /* Submenu initial state: hidden */
  .submenu {
    position:absolute;
    top:100%;
    left:0;
    min-width:210px;
    background:#1E293B;
    color:#F1F5F9;
    border-radius:8px;
    box-shadow:0 8px 24px rgba(0, 0, 0, 0.15);
    padding:8px 0;
    transform-origin:top left;
    transform:translateY(-6px) scaleY(.98);
    opacity:0;
    pointer-events:none;
    transition:opacity .18s ease, transform .18s ease;
    z-index:50;
  }
  .submenu a {
    display:block;
    padding:10px 14px 10px 0;
    color:inherit;
    text-decoration: none;
  }
  .submenu a:hover,
  .submenu a:focus { background:#334155; }

    /* Show submenu on hover (desktop) */

    .has-sub {
        position: relative; /* needed so submenu positions relative to this item */
    }
  
    .has-sub:hover > .submenu,
    .has-sub:focus-within > .submenu {
        top: 100%;
        left: 0;
        opacity:1;
        transform:translateY(0) scaleY(1);
        pointer-events:auto;
    }

  /* Arrow indicator */
  .caret { margin-left:6px; font-size:.8em; opacity:.9; }


/* ---------- Base Styles ---------- */
body {
  background: radial-gradient(circle at top, #0F172A 0%, #0B1320 100%);
  color: #E2E8F0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  line-height: 1.7;
  margin: 0;
  padding: 0;
}

main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3 {
  font-family: "Inter", "Segoe UI", sans-serif;
  letter-spacing: 0.3px;
}

a {
  text-decoration: none;
}

/* ---------- HERO SECTION ---------- */
.review-hero {
  background: linear-gradient(135deg, #162A45 0%, #0F172A 80%);
  padding: 140px 10% 80px;
  border-bottom: 1px solid #334155;
  box-shadow: 0 3px 12px rgba(251, 191, 36, 0.15);
}

.review-hero-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
  color: #E2E8F0;
}

.review-hero-left {
  max-width: 320px;
  background: #1E293B;
  border: 1px solid #334155;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.4);
  flex: 0 0 320px;
  position: relative;
}

.review-casino-logo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #FBBF24;
  display: block;
  margin: 0 auto 20px auto;
  position: relative;
  z-index: 2;
}
.review-casino-logo::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(251,191,36,0.4);
  z-index: -1;
}

.rating-box {
  text-align: center;
}
.rating-score {
  font-size: 2rem;
  font-weight: 700;
  color: #FBBF24;
  margin: 0;
}
.rating-label {
  color: #CBD5E1;
  font-size: 0.9rem;
  margin-bottom: 16px;
}
.rating-points {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  font-size: 0.95rem;
  line-height: 1.5;
}
.rating-points li {
  background: #0F172A;
  border: 1px solid #334155;
  border-radius: 8px;
  padding: 10px 12px;
  margin-bottom: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}
.rating-points li strong {
  color: #FBBF24;
}

/* ---------- HERO RIGHT ---------- */
.review-hero-right {
  flex: 1;
  min-width: 260px;
}
.review-title {
  color: #FBBF24;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 16px 0;
}
.review-tagline {
  color: #CBD5E1;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 700px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
}
.hero-btn {
  background-color: #FBBF24;
  color: #0F172A;
  font-weight: 600;
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 0.95rem;
  box-shadow: 0 4px 10px rgba(251,191,36,0.4);
  transition: all 0.25s ease;
}
.hero-btn:hover {
  background-color: #FACC15;
  box-shadow: 0 6px 18px rgba(251,191,36,0.5);
  transform: translateY(-3px);
}
.hero-btn-outline {
  background: transparent;
  border: 1px solid #FBBF24;
  color: #FBBF24;
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 0.95rem;
  transition: all 0.25s ease;
}
.hero-btn-outline:hover {
  background: #162A45;
  box-shadow: 0 4px 12px rgba(251,191,36,0.3);
}
.australia-note {
  font-size: 0.95rem;
  color: #E2E8F0;
  background: #162A45;
  border: 1px solid #334155;
  border-radius: 10px;
  padding: 14px 16px;
  max-width: 700px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

/* ---------- SECTION HEADINGS ---------- */
.section-heading {
  font-size: 1.8rem;
  font-weight: 700;
  color: #FBBF24;
  text-align: center;
  margin: 0 0 40px 0;
  position: relative;
  text-shadow: 0 0 8px rgba(251,191,36,0.2);
}
.section-heading::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  margin: 12px auto 0;
  background: linear-gradient(90deg,#f59e0b,#facc15);
  border-radius: 2px;
}

/* ---------- FACTS GRID ---------- */
.review-facts {
  background: linear-gradient(180deg, #1E293B 0%, #0F172A 100%);
  border-top: 1px solid #334155;
  padding: 60px 10%;
  box-shadow: 0 3px 12px rgba(0,0,0,0.3);
}
.facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.facts-card {
  background: #0F172A;
  border: 1px solid #334155;
  border-radius: 12px;
  padding: 20px 24px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 18px rgba(0,0,0,0.4);
}
.facts-card h3 {
  color: #FBBF24;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.facts-card p {
  color: #CBD5E1;
  font-size: 0.95rem;
  line-height: 1.6;
}
.facts-card:hover {
  background: #162A45;
  box-shadow: 0 6px 20px rgba(251,191,36,.25);
  border-color: #FBBF24;
}

/* ---------- REVIEW SECTIONS ---------- */
.review-section {
  background: #1E293B;
  border: 1px solid #334155;
  border-radius: 12px;
  max-width: 900px;
  margin: 60px auto;
  padding: 40px 44px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.4);
}
.review-section p {
  color: #CBD5E1;
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 16px;
}
.bullet-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}
.bullet-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  color: #E2E8F0;
}
.bullet-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #FBBF24;
  font-weight: 700;
}

/* ---------- CALLOUT BOXES ---------- */
.callout-box {
  background: #0F172A;
  border: 1px solid #334155;
  border-radius: 10px;
  padding: 16px 18px;
  margin: 24px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.4);
}
.callout-title {
  color: #FBBF24;
  font-weight: 600;
  margin-bottom: 8px;
}
.callout-box.alt { border-left: 4px solid #38BDF8; }
.callout-box.warning { border-left: 4px solid #FBBF24; }

/* ---------- SPLIT BLOCKS ---------- */
.split-block {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin: 24px 0;
}
.split-col {
  flex: 1 1 280px;
  background: #162A45;
  border: 1px solid #334155;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.4);
  padding: 20px;
}
.split-col h3 {
  color: #FBBF24;
  margin-bottom: 12px;
}
.fact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
}
.fact-list li {
  background: #0F172A;
  border: 1px solid #334155;
  border-radius: 8px;
  padding: 10px 12px;
  margin-bottom: 8px;
}

/* ---------- PROS & CONS ---------- */
.pros-cons {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.pros, .cons {
  flex: 1 1 300px;
  background: #0F172A;
  border: 1px solid #334155;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.4);
  transition: border-color 0.3s ease;
}
.pros:hover, .cons:hover { border-color: #FBBF24; }
.pc-heading.good { color: #10b981; }
.pc-heading.bad { color: #F87171; }
.pc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pc-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
}
.pros .pc-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10b981;
}
.cons .pc-list li::before {
  content: "✕";
  position: absolute;
  left: 0;
  color: #F87171;
}

/* ---------- FINAL VERDICT SECTION ---------- */
.final-verdict {
  background: linear-gradient(135deg, #0F172A 0%, #0B1320 100%);
  border-top: 1px solid #334155;
  padding: 80px 10%;
  text-align: center;
  color: #E2E8F0;
  position: relative;
  overflow: hidden;
}

.final-verdict::before {
  content: "";
  position: absolute;
  top: -60px;
  left: 0;
  width: 100%;
  height: 200px;
  background: radial-gradient(circle at top, rgba(251,191,36,0.1) 0%, transparent 80%);
  pointer-events: none;
}

.verdict-container {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(180deg, #1E293B 0%, #0F172A 100%);
  border: 1px solid #334155;
  border-radius: 18px;
  box-shadow: 0 4px 22px rgba(0,0,0,0.5);
  padding: 60px 64px;
  transition: all 0.3s ease;
}

.verdict-container:hover {
  border-color: #FBBF24;
  box-shadow: 0 6px 26px rgba(251,191,36,0.25);
  transform: translateY(-4px);
}

.verdict-content p {
  color: #CBD5E1;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 18px;
}

.verdict-content strong {
  color: #FBBF24;
}

.verdict-content .score {
  color: #FACC15;
  font-weight: 700;
  font-size: 1.05rem;
}

.verdict-btn {
  display: inline-block;
  margin: 30px 0 22px;
  background: linear-gradient(90deg, #FBBF24 0%, #FACC15 100%);
  color: #0F172A;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 10px;
  padding: 14px 28px;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(251,191,36,0.4);
  transition: all 0.25s ease;
}

.verdict-btn:hover {
  transform: translateY(-3px);
  background: linear-gradient(90deg, #FACC15 0%, #FDE68A 100%);
  box-shadow: 0 6px 20px rgba(251,191,36,0.5);
}

.safety-line {
  font-size: 0.95rem;
  color: #94A3B8;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.safety-line a {
  color: #FBBF24;
  text-decoration: underline;
  font-weight: 500;
}

.safety-line a:hover {
  color: #FACC15;
}

/* ---------- FAQ BLOCK ---------- */
.faq-block {
  background: #1E293B;
  border: 1px solid #334155;
  border-radius: 12px;
  max-width: 900px;
  margin: 60px auto 100px;
  padding: 40px 44px;
  box-shadow: 0 6px 22px rgba(0,0,0,0.4);
}

.faq-item {
  background: #0F172A;
  border: 1px solid #334155;
  border-radius: 10px;
  margin-bottom: 16px;
  padding: 18px 22px;
  transition: all 0.25s ease;
}
.faq-item:hover {
  border-color: #FBBF24;
  background: #162A45;
}

.faq-item[open] {
  background: #162A45;
  border-color: #FBBF24;
  box-shadow: 0 4px 12px rgba(251,191,36,0.25);
}
.faq-item summary {
  color: #FBBF24;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  padding-right: 24px;
}
.faq-item summary::after {
  content: "▼";
  position: absolute;
  right: 0;
  color: #FBBF24;
  transition: transform 0.3s ease;
}
.faq-item[open] summary::after {
  transform: rotate(180deg);
}
.faq-item p {
  color: #E2E8F0;
  margin-top: 12px;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Remove default summary arrow (browser disclosure marker) */
.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::marker {
  content: none;
}

/* ---------- FOOTER ---------- */
footer {
  background: #0B1320;
  color: #94A3B8;
  text-align: center;
  padding: 40px 10px;
  border-top: 1px solid #334155;
  font-size: 0.9rem;
}
footer a {
  color: #FBBF24;
}
footer a:hover {
  text-decoration: underline;
  color: #FDE68A;
}

/* ---------- RESPONSIVE ---------- */
/* --- Large Desktop (1280px and below) --- */
@media (max-width: 1280px) {
  .cas1 {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 26px 30px;
    margin: 28px 8%;
    border-radius: 18px;
    gap: 20px;
    background: linear-gradient(145deg, #0F172A 0%, #1E293B 100%);
    border: 1px solid #334155;
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.25);
  }

  .cas1 a {
  color: #0F172A;
  background-color: #FBBF24;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(251, 191, 36, 0.4);
}

.cas1 a:hover {
  background-color: #FACC15;
  box-shadow: 0 6px 16px rgba(251, 191, 36, 0.5);
  transform: translateY(-3px);
}
  /* Add space between brand, details, and CTA */
  .brand {
    margin-bottom: 0;
  }

  .bonus {
    margin-bottom: 8px;
  }

  .details {
    text-align: left;                 /* left-align text inside details */
    margin-bottom: 12px;
    max-width: none;
  }

  .cta {
    margin-top: 10px;
  }

  /* Clean list style */
  .details ul {
    list-style: none;                 /* remove the "*" bullets */
    padding: 0;
    margin: 0;
  }

  /* Each detail line neatly boxed */
  .details li {
    border: 1px solid rgba(59, 130, 246, 0.25); /* soft blue accent border */
    border-radius: 8px;
    padding: 10px 14px;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: #E2E8F0;
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
    max-width: 100%;
  }

  .details li strong {
  color: #FBBF24; /* highlight label */
  font-weight: 600;
}

  /* Optional subtle hover for mobile/touch */
  .details li:hover {
    background: rgba(251, 191, 36, 0.08); /* faint golden glow */
    border-color: #FBBF24;
    box-shadow: 0 2px 10px rgba(251, 191, 36, 0.2);
  }

  /* Slight spacing consistency */
  .details li:last-child {
    margin-bottom: 0;
  }
}


@media (max-width: 1024px) {
  .review-hero {
    padding: 100px 6% 60px;
    background: linear-gradient(145deg, #162A45 0%, #0F172A 100%);
    text-align: center;
  }

  .review-hero-inner {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .review-hero-left {
    flex: 1 1 100%;
    max-width: 380px;
    width: 100%;
    padding: 28px;
    margin-bottom: 20px;
    text-align: center;
    background: #1E293B;
    border: 1px solid #334155;
    border-radius: 14px;
    box-shadow: 0 3px 16px rgba(0, 0, 0, 0.45);
  }

    .review-hero-left {
    flex: 1 1 100%;
    max-width: 380px;
    width: 100%;
    padding: 28px;
    margin-bottom: 20px;
    text-align: center;
    background: #1E293B;
    border: 1px solid #334155;
    border-radius: 14px;
    box-shadow: 0 3px 16px rgba(0, 0, 0, 0.45);
  }

  /* === NEW ADDED SECTION === */
  .review-hero-left {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 480px;
    text-align: left;
  }
  .review-casino-logo,
  .rating-score,
  .rating-label {
    grid-column: 1;
    text-align: center;
  }
  .rating-points {
    grid-column: 2;
    text-align: left;
    margin: 0;
  }
  .rating-points li {
    padding: 8px 10px;
    font-size: 0.9rem;
  }

  .review-casino-logo {
    width: 100px;
    height: 100px;
    border: 3px solid #FBBF24;
    margin: 0 auto 16px auto;
  }

  .rating-box {
    text-align: center;
  }

  .rating-points {
    text-align: left;
    margin: 0 auto;
    display: inline-block;
  }

  .review-hero-right {
    flex: 1 1 100%;
    text-align: center;
    max-width: 680px;
  }

  .review-title {
    font-size: 1.8rem;
    margin-bottom: 14px;
    line-height: 1.3;
  }

  .review-tagline {
    font-size: 1rem;
    line-height: 1.6;
    color: #CBD5E1;
    margin-bottom: 24px;
  }

  .hero-ctas {
    justify-content: center;
    gap: 14px;
  }

  .hero-btn,
  .hero-btn-outline {
    padding: 10px 22px;
    font-size: 0.95rem;
  }

  .australia-note {
    margin-top: 20px;
    font-size: 0.9rem;
    line-height: 1.6;
    background: #162A45;
    border: 1px solid #334155;
    border-radius: 8px;
    padding: 12px 16px;
    text-align: left;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  .facts-grid { grid-template-columns: 1fr 1fr; }

    header {
    padding: 0 60px;
  }
  .has-sub {
    display: none;
  }
  .menu {
    display: block;
    background: transparent;
    color: #FBBF24; /* gold tone for contrast */
    font-size: 32px;
    border: none;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 30px;
  }

    nav.nav {
    margin-right: 70px; /* pushes links left so they don't touch the menu */
  }

.submenu {
  display: none;
}

.submenu.open {
  display: block;
}

  .top3, .team-grid {
    flex-direction: column;
    align-items: center;
  }

  .mobile-nav {
    display: none; /* hidden by default */
    flex-direction: column;
    gap: 10px; 
    background: #1E293B;
    border-top: 1px solid #334155;
    position: absolute;
    top: 80px;
    right: 0;
    width: 60%;
    padding: 20px;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 99;
  }

    .mobile-nav.open {
  display: block;
  animation: slideDown 0.3s ease forwards;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.mobile-nav a {
  display: block;
  padding: 10px 22px;
  color: #E2E8F0;
  text-decoration: none;
  font-size: 0.95rem;
  transition: background 0.3s ease, color 0.3s ease;
}

.mobile-nav a:hover {
  background: #0F172A;
  color: #FBBF24;
}

.mobile-nav summary {
  cursor: pointer;
  padding: 14px 18px;
  font-size: 1rem;
  font-weight: 600;
  color: #FBBF24;
  position: relative;
}

  .mobile-nav details {
  background: #1E293B;
  border: 1px solid #334155;
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
  width: 100%;
}

/* restore native details toggle behavior */
.mobile-nav details > ul {
  display: none;
}

.home {
  display: flex;
  flex-direction: column;
  left: 18px;
}

.mobile-nav details[open] > ul {
  display: flex;
  flex-direction: column;
}

.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav ul:first-of-type {
  background: transparent;
  padding-bottom: 12px;
}

.mobile-nav ul:first-of-type li a {
  display: block;
  padding: 12px 20px;
  color: #E2E8F0;
  text-decoration: none;
  font-size: 1rem;
  border-bottom: 1px solid #334155;
}

.mobile-nav ul:first-of-type li a:hover {
  background: #0F172A;
  color: #FBBF24;
}

  .final-verdict {
    padding: 60px 6%;
  }

  .verdict-container {
    padding: 50px 42px;
  }

  .verdict-content p {
    font-size: 1rem;
  }
}




@media (max-width: 768px) {
  .review-hero {
    padding: 80px 5% 50px;
    margin-top: 20px;
  }

  .review-casino-logo {
    width: 100px;
    height: 100px;
  }

  .rating-score {
    font-size: 1.6rem;
  }

  .review-title {
    font-size: 1.5rem;
  }

  .hero-btn,
  .hero-btn-outline {
    width: 100%;
    max-width: 280px;
  }

  .australia-note {
    font-size: 0.9rem;
    padding: 10px 14px;
    text-align: center;
  }
  .section-heading { font-size: 1.5rem; }
  .facts-grid { grid-template-columns: 1fr; }
  .review-section, .verdict-card, .faq-block {
    padding: 30px 24px;
    margin: 30px 16px;
  }

    .verdict-container {
    padding: 40px 28px;
    border-radius: 14px;
  }

  .verdict-content p {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .verdict-btn {
    display: inline-block;
    margin: 24px auto;
    padding: 12px 26px;
    font-size: 0.95rem;
    border-radius: 8px;
    background: linear-gradient(90deg, #FBBF24 0%, #FACC15 100%);
    color: #0F172A;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(251,191,36,0.4);
    transition: all 0.25s ease;
  }

  .safety-line {
    font-size: 0.85rem;
    padding: 0 10px;
  }
}

/* ---------- ULTRA MOBILE OPTIMIZATION ---------- */
/* Screens smaller than 600px */
@media (max-width: 600px) {
  .logo-wrap img {
  margin-left: -20px ;
}
.mobile-nav summary {
  font-size: 0.95rem;
}
.mobile-nav ul:first-of-type li a {
  font-size: 0.95rem;
  padding-left: 10px;
}
.menu {
  font-size: 28px;
}

  /* === HERO SECTION === */
  .review-hero {
    padding: 70px 4% 40px;
    margin-top: 30px;
  }

  .review-title {
    font-size: 1.3rem;
    line-height: 1.4;
    margin-bottom: 12px;
  }

  .review-tagline {
    font-size: 0.9rem;
    line-height: 1.55;
    margin-bottom: 20px;
  }

  .review-casino-logo {
    width: 90px;
    height: 90px;
    border-width: 2px;
  }

  .rating-score {
    font-size: 1.4rem;
  }

  .rating-label {
    font-size: 0.8rem;
  }

  .rating-points {
    font-size: 0.85rem;
  }

  .rating-points li {
    padding: 8px 10px;
  }

  .hero-btn,
  .hero-btn-outline {
    font-size: 0.9rem;
    padding: 8px 18px;
    width: 100%;
    max-width: 240px;
  }

  .australia-note {
    font-size: 0.85rem;
    padding: 8px 12px;
    line-height: 1.5;
  }

  /* === SECTION HEADINGS === */
  .section-heading {
    font-size: 1.3rem;
    margin-bottom: 32px;
  }

  /* === REVIEW CONTENT SECTIONS === */
  .review-section {
    padding: 26px 20px;
    margin: 24px 14px;
  }

  .review-section p {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .bullet-list li {
    font-size: 0.9rem;
  }

  /* === FACTS GRID === */
  .facts-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .facts-card h3 {
    font-size: 0.9rem;
  }

  .facts-card p {
    font-size: 0.85rem;
  }

  /* === PROS & CONS === */
  .pros, .cons {
    padding: 20px;
  }

  .pc-list li {
    font-size: 0.9rem;
  }

  /* === FINAL VERDICT === */
  .final-verdict {
    padding: 50px 5%;
  }

  .verdict-container {
    padding: 34px 22px;
  }

  .verdict-content p {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .verdict-btn {
    font-size: 0.9rem;
    padding: 10px 22px;
  }

  .safety-line {
    font-size: 0.8rem;
  }

  /* === FAQ BLOCK === */
  .faq-block {
    padding: 28px 22px;
    margin: 40px 14px 80px;
  }

  .faq-item summary {
    font-size: 0.9rem;
  }

  .faq-item p {
    font-size: 0.85rem;
  }

  /* === FOOTER === */
  footer {
    font-size: 0.8rem;
    padding: 30px 6px;
  }

  footer a {
    font-size: 0.85rem;
  }
}

/* ---------- SMALL PHONE OPTIMIZATION ---------- */
/* Screens smaller than 480px */
@media (max-width: 480px) {
  .logo-wrap img {
  margin-left: -40px ;
  height: 140px;
}

header li {
    font-size: 0.95rem;
    margin-left: 85px;
}
.mobile-nav summary {
  font-size: 0.85rem;
}
.mobile-nav ul:first-of-type li a {
  font-size: 0.85rem;
  padding-left: 4px;
}
.menu {
  font-size: 26px;
  top: 22px;
  right: 22px;
}

  /* === HERO SECTION === */
  .review-hero {
    padding: 60px 4% 36px;
  }

  .review-title {
    font-size: 1.15rem;
    line-height: 1.35;
    margin-bottom: 10px;
  }

  .review-tagline {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 16px;
  }

  .review-casino-logo {
    width: 80px;
    height: 80px;
    border-width: 2px;
    margin-bottom: 12px;
  }

  .rating-score {
    font-size: 1.25rem;
  }

  .rating-label {
    font-size: 0.75rem;
  }

  .rating-points {
    font-size: 0.8rem;
    line-height: 1.4;
  }

  .rating-points li {
    padding: 6px 8px;
  }

  .hero-btn,
  .hero-btn-outline {
    font-size: 0.85rem;
    padding: 8px 16px;
    width: 100%;
    max-width: 220px;
  }

  .australia-note {
    font-size: 0.8rem;
    padding: 8px 10px;
    line-height: 1.45;
  }

  /* === SECTION HEADINGS === */
  .section-heading {
    font-size: 1.2rem;
    margin-bottom: 26px;
  }

  /* === REVIEW SECTION === */
  .review-section {
    padding: 22px 16px;
    margin: 22px 10px;
  }

  .review-section p {
    font-size: 0.85rem;
    line-height: 1.55;
  }

  .bullet-list li {
    font-size: 0.85rem;
  }

  /* === FACTS GRID === */
  .facts-card h3 {
    font-size: 0.85rem;
  }

  .facts-card p {
    font-size: 0.8rem;
  }

  /* === PROS & CONS === */
  .pros, .cons {
    padding: 18px;
  }

  .pc-list li {
    font-size: 0.85rem;
  }

  /* === FINAL VERDICT === */
  .final-verdict {
    padding: 45px 5%;
  }

  .verdict-container {
    padding: 28px 18px;
  }

  .verdict-content p {
    font-size: 0.85rem;
    line-height: 1.55;
  }

  .verdict-btn {
    font-size: 0.85rem;
    padding: 8px 20px;
  }

  .safety-line {
    font-size: 0.75rem;
    line-height: 1.5;
  }

  /* === FAQ BLOCK === */
  .faq-block {
    padding: 24px 18px;
    margin: 36px 12px 70px;
  }

  .faq-item summary {
    font-size: 0.85rem;
  }

  .faq-item p {
    font-size: 0.8rem;
  }

  /* === FOOTER === */
  footer {
    font-size: 0.75rem;
    padding: 26px 4px;
  }

  footer a {
    font-size: 0.8rem;
  }
}

/* ---------- MICRO MOBILE OPTIMIZATION ---------- */
/* Screens smaller than 375px (e.g., iPhone SE, Mini) */
@media (max-width: 375px) {
    .logo-wrap img {
  height: 120px;
}
header li {
    font-size: 0.80rem;
    margin-left: 80px;
}
.mobile-nav summary {
  font-size: 0.75rem;
}
.mobile-nav ul:first-of-type li a {
  font-size: 0.70rem;
  padding: 6px 0;
}
.menu {
  font-size: 24px;
  top: 24px;
  right: 18px;
}

  /* === HERO SECTION === */
  .review-hero {
    padding: 55px 4% 30px;
    margin-top: 35px;
  }

  .review-title {
    font-size: 1rem;
    line-height: 1.3;
    margin-bottom: 8px;
  }

  .review-tagline {
    font-size: 0.8rem;
    line-height: 1.45;
    margin-bottom: 14px;
  }

  .review-casino-logo {
    width: 64px;
    height: 64px;
    border-width: 2px;
    margin-bottom: 10px;
  }

  .rating-score {
    font-size: 1.1rem;
  }

  .rating-label {
    font-size: 0.7rem;
  }

  .rating-points {
    font-size: 0.75rem;
    line-height: 1.4;
  }

  .rating-points li {
    padding: 5px 7px;
  }

  .hero-btn,
  .hero-btn-outline {
    font-size: 0.8rem;
    padding: 7px 14px;
    width: 100%;
    max-width: 200px;
  }

  .australia-note {
    font-size: 0.75rem;
    padding: 6px 10px;
    line-height: 1.4;
  }

  /* === SECTION HEADINGS === */
  .section-heading {
    font-size: 1.1rem;
    margin-bottom: 22px;
  }

  /* === REVIEW SECTIONS === */
  .review-section {
    padding: 20px 14px;
    margin: 20px 10px;
  }

  .review-section p {
    font-size: 0.8rem;
    line-height: 1.5;
  }

  .bullet-list li {
    font-size: 0.8rem;
  }

  /* === FACTS GRID === */
  .facts-card h3 {
    font-size: 0.8rem;
  }

  .facts-card p {
    font-size: 0.75rem;
  }

  /* === PROS & CONS === */
  .pros, .cons {
    padding: 16px;
  }

  .pc-list li {
    font-size: 0.8rem;
  }

  /* === FINAL VERDICT === */
  .final-verdict {
    padding: 40px 4%;
  }

  .verdict-container {
    padding: 26px 16px;
  }

  .verdict-content p {
    font-size: 0.8rem;
    line-height: 1.5;
  }

  .verdict-btn {
    font-size: 0.8rem;
    padding: 8px 18px;
  }

  .safety-line {
    font-size: 0.7rem;
    line-height: 1.45;
  }

  /* === FAQ BLOCK === */
  .faq-block {
    padding: 20px 16px;
    margin: 30px 10px 60px;
  }

  .faq-item summary {
    font-size: 0.8rem;
  }

  .faq-item p {
    font-size: 0.75rem;
  }

  /* === FOOTER === */
  footer {
    font-size: 0.7rem;
    padding: 24px 4px;
  }

  footer a {
    font-size: 0.75rem;
  }
}