/* ===================================================
   CashPokies Casino – Design System
   cashpokies.net | AU | en
   =================================================== */

/* 1. CSS Reset + Variables
   =================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg-dark:       #0a1628;
  --bg-card:       #0f2040;
  --bg-card-hover: #132850;
  --bg-header:     #061020;
  --bg-section:    #081320;
  --accent-gold:   #d4a017;
  --accent-gold-lt:#f0c040;
  --accent-green:  #1db954;
  --accent-red:    #c0392b;
  --text-primary:  #ffffff;
  --text-secondary:#a0b4cc;
  --text-muted:    #6a85a3;
  --border-gold:   rgba(212,160,23,0.35);
  --border-card:   rgba(255,255,255,0.07);
  --shadow-gold:   0 0 20px rgba(212,160,23,0.18);
  --shadow-card:   0 4px 24px rgba(0,0,0,0.5);
  --radius-card:   10px;
  --radius-btn:    6px;
  --font-head:     'Montserrat', sans-serif;
  --font-body:     'Open Sans', sans-serif;
  --max-width:     1200px;
  --header-h:      68px;
  --popup-h:       72px;
  --transition:    0.22s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
  padding-bottom: var(--popup-h);
}

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

a {
  color: var(--accent-gold);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover { color: var(--accent-gold-lt); }

ul, ol { list-style: none; }


/* 2. Typography
   =================================================== */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
}

h1 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 1.2rem; }
h2 { font-size: clamp(1.2rem, 2.5vw, 1.65rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1rem, 2vw, 1.25rem); margin-bottom: 0.8rem; }

p { margin-bottom: 1rem; color: var(--text-secondary); }

strong { color: var(--text-primary); }


/* 3. Layout Utilities
   =================================================== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 64px 0;
}

.section--alt {
  background: var(--bg-section);
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 0.6rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 3px;
  background: var(--accent-gold);
  border-radius: 2px;
}

.section-title--center { text-align: center; }
.section-title--center::after { left: 50%; transform: translateX(-50%); }


/* 4. CTA Buttons
   =================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-btn);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, #e6b520 0%, #c0880e 100%);
  color: #0a1628;
  box-shadow: 0 4px 16px rgba(212,160,23,0.4);
}

.btn--primary:hover {
  background: linear-gradient(135deg, #f0c840 0%, #d4a017 100%);
  color: #061020;
  box-shadow: 0 6px 24px rgba(212,160,23,0.55);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--accent-gold);
  border: 2px solid var(--accent-gold);
}

.btn--outline:hover {
  background: var(--accent-gold);
  color: #061020;
}

.btn--small {
  padding: 8px 18px;
  font-size: 0.8rem;
}

.btn--full { width: 100%; justify-content: center; }


/* 5. Header + Nav
   =================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-header);
  border-bottom: 1px solid var(--border-gold);
  height: var(--header-h);
  display: flex;
  align-items: center;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 16px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo img {
  height: 42px;
  width: auto;
}

.logo-text {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--accent-gold);
  letter-spacing: -0.01em;
}

/* Nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
  padding: 8px 14px;
  border-radius: 4px;
  transition: all var(--transition);
}

.site-nav a:hover { color: var(--accent-gold-lt); background: rgba(212,160,23,0.1); }
.site-nav a.active { color: var(--accent-gold); }

.site-nav .btn {
  font-size: 0.82rem;
  padding: 9px 20px;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* 6. Hero Section
   =================================================== */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/banner.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(6,16,32,0.92) 0%,
    rgba(10,22,40,0.75) 60%,
    rgba(10,22,40,0.55) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 80px 0 60px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(212,160,23,0.18);
  border: 1px solid var(--border-gold);
  color: var(--accent-gold-lt);
  font-size: 0.78rem;
  font-weight: 700;
  font-family: var(--font-head);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.hero-headline {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.6);
}

.hero-headline span { color: var(--accent-gold); }

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.hero-offer {
  background: rgba(212,160,23,0.12);
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  padding: 14px 20px;
  margin-bottom: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.offer-item {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--accent-gold-lt);
  font-size: 1.1rem;
}

.offer-sep { color: var(--text-muted); }

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.hero-stars { color: var(--accent-gold); font-size: 1rem; }

.hero-trust strong { color: var(--text-secondary); }


/* 7. Trust Badges
   =================================================== */
.trust-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border-card);
  border-bottom: 1px solid var(--border-card);
  padding: 20px 0;
}

.trust-bar-inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 32px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--text-secondary);
  white-space: nowrap;
}

.trust-item svg,
.trust-icon {
  width: 20px;
  height: 20px;
  color: var(--accent-gold);
  flex-shrink: 0;
}

.trust-sep {
  color: var(--border-gold);
  font-size: 1.2rem;
  line-height: 1;
}


/* 8. Slot Grid
   =================================================== */
.slots-section {
  padding: 56px 0;
  background: var(--bg-dark);
}

.slots-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.slot-card {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}

.slot-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
  border-color: var(--border-gold);
}

.slot-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.slot-card:hover img { transform: scale(1.06); }

.slot-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,16,32,0.92) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px;
  opacity: 0;
  transition: opacity var(--transition);
}

.slot-card:hover .slot-overlay { opacity: 1; }

.slot-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.78rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}


/* 9. SEO Content Sections
   =================================================== */
.content-section {
  padding: 56px 0;
}

.content-section:nth-child(even) {
  background: var(--bg-section);
}

.content-body h1,
.content-body h2,
.content-body h3 {
  color: var(--text-primary);
}

.content-body h1 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  margin: 0 0 1.4rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid var(--border-gold);
}

.content-body h2 {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  margin: 2.4rem 0 1rem;
  color: var(--accent-gold);
}

.content-body h3 {
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin: 1.8rem 0 0.8rem;
  color: var(--accent-gold-lt);
}

.content-body p {
  margin-bottom: 1.1rem;
  color: var(--text-secondary);
  max-width: 820px;
}

.content-body ul,
.content-body ol {
  margin: 0.8rem 0 1.4rem;
  padding: 0;
}

.content-body ul li,
.content-body ol li {
  position: relative;
  padding: 0.35rem 0 0.35rem 1.6rem;
  color: var(--text-secondary);
}

.content-body ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--accent-gold);
  font-size: 0.65em;
  top: 0.6em;
}

.content-body ol {
  counter-reset: steps;
}

.content-body ol li {
  counter-increment: steps;
}

.content-body ol li::before {
  content: counter(steps);
  position: absolute;
  left: 0;
  width: 22px;
  height: 22px;
  background: var(--accent-gold);
  color: #061020;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.72rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0.45em;
  line-height: 1;
}

.content-body strong { color: var(--text-primary); }

.content-body a {
  color: var(--accent-gold);
  border-bottom: 1px solid rgba(212,160,23,0.3);
}

.content-body a:hover { color: var(--accent-gold-lt); }

/* Inline CTA links in content */
.content-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #e6b520 0%, #c0880e 100%);
  color: #061020 !important;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 10px 22px;
  border-radius: var(--radius-btn);
  border-bottom: none !important;
  margin: 4px 0;
  transition: all var(--transition);
}

.content-cta:hover {
  background: linear-gradient(135deg, #f0c840 0%, #d4a017 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(212,160,23,0.4);
}


/* 10. Tables
   =================================================== */
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 1rem 0 1.6rem;
  border-radius: var(--radius-card);
  border: 1px solid var(--border-gold);
}

.table-scroll table,
.content-body table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.table-scroll table {
  min-width: 0;
}

.content-body table {
  margin: 1rem 0 1.6rem;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--border-gold);
}

table th {
  background: rgba(212,160,23,0.15);
  color: var(--accent-gold);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border-gold);
  white-space: nowrap;
}

table td {
  padding: 11px 16px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-card);
}

table tr:last-child td { border-bottom: none; }

table tr:hover td {
  background: rgba(255,255,255,0.03);
  color: var(--text-primary);
}

table tr:nth-child(even) td {
  background: rgba(255,255,255,0.02);
}

table td strong { color: var(--text-primary); }


/* 11. Bonus Card Block
   =================================================== */
.bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-card);
  padding: 28px;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-card);
}

.bonus-card__title {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 0.6rem;
}

.bonus-steps {
  display: grid;
  gap: 20px;
  margin: 2rem 0;
}

.bonus-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #e6b520, #c0880e);
  color: #061020;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-body h3 { margin: 0 0 4px; font-size: 1rem; }
.step-body p { margin: 0; font-size: 0.9rem; }


/* 12. FAQ Accordion
   =================================================== */
.faq-list { margin: 1rem 0; }

.faq-item {
  border: 1px solid var(--border-card);
  border-radius: var(--radius-card);
  margin-bottom: 8px;
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.open { border-color: var(--border-gold); }

.faq-question {
  width: 100%;
  background: var(--bg-card);
  border: none;
  text-align: left;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: background var(--transition);
}

.faq-question:hover { background: var(--bg-card-hover); }

.faq-question span {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-primary);
  line-height: 1.4;
}

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: 2px solid var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  font-size: 1.1rem;
  font-weight: 300;
  transition: transform var(--transition);
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding: 16px 20px;
  background: rgba(15,32,64,0.6);
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  border-top: 1px solid var(--border-card);
}

.faq-item.open .faq-answer { display: block; }


/* 13. Footer
   =================================================== */
.site-footer {
  background: var(--bg-header);
  border-top: 1px solid var(--border-gold);
  padding: 48px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .site-logo { margin-bottom: 16px; }

.footer-brand p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 0;
}

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-gold);
  margin-bottom: 14px;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  font-size: 0.87rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-col ul li a:hover { color: var(--accent-gold-lt); }

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.footer-badge {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-card);
  border-radius: 6px;
  padding: 6px 12px;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-secondary);
  white-space: nowrap;
}

.footer-bottom {
  border-top: 1px solid var(--border-card);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  max-width: 700px;
  line-height: 1.55;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-card);
}


/* 14. Fixed Bottom Popup
   =================================================== */
.popup-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: linear-gradient(90deg, #061020 0%, #0f2040 50%, #061020 100%);
  border-top: 2px solid var(--accent-gold);
  height: var(--popup-h);
  display: flex;
  align-items: center;
  padding: 0 20px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.5);
}

.popup-banner.hidden { display: none; }

.popup-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.popup-text {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}

.popup-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.popup-offer {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}

.popup-offer em {
  color: var(--accent-gold);
  font-style: normal;
}

.popup-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.popup-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.3rem;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all var(--transition);
}

.popup-close:hover {
  background: rgba(255,255,255,0.08);
  color: var(--text-primary);
}


/* 15. Page Hero (inner pages)
   =================================================== */
.page-hero {
  background: linear-gradient(135deg, var(--bg-header) 0%, var(--bg-card) 100%);
  border-bottom: 1px solid var(--border-gold);
  padding: 48px 0 40px;
}

.page-hero h1 {
  font-size: clamp(1.5rem, 3.5vw, 2.3rem);
  margin-bottom: 0.8rem;
}

.page-hero p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 680px;
  margin-bottom: 1.4rem;
}

.breadcrumb {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--accent-gold); }
.breadcrumb-sep { color: var(--text-muted); }


/* 16. Responsive — 768px
   =================================================== */
@media (max-width: 768px) {
  :root { --header-h: 60px; }

  .site-nav {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--bg-header);
    border-bottom: 1px solid var(--border-gold);
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    gap: 4px;
    z-index: 999;
  }

  .site-nav.open { display: flex; }

  .site-nav a {
    padding: 12px 16px;
    font-size: 0.9rem;
    border-radius: 6px;
  }

  .site-nav .btn { text-align: center; }

  .nav-toggle { display: flex; }

  .hero { min-height: 90vh; }

  .hero-content { padding: 48px 0 40px; }

  .hero-headline { font-size: clamp(1.8rem, 6vw, 2.6rem); }

  .slots-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }

  .footer-brand { grid-column: 1 / -1; }

  .popup-offer { font-size: 0.78rem; }

  .popup-icon { display: none; }

  .content-body table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 0;
  }
}


/* 17. Responsive — 480px
   =================================================== */
@media (max-width: 480px) {
  .container { padding: 0 16px; }

  .section { padding: 44px 0; }

  .hero-offer { flex-direction: column; gap: 6px; }

  .hero-btns { flex-direction: column; }

  .hero-btns .btn { width: 100%; justify-content: center; }

  .slots-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }

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

  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .popup-banner { height: auto; padding: 12px 16px; }
  :root { --popup-h: 80px; }

  .popup-inner { flex-wrap: wrap; gap: 10px; }

  .popup-text { width: 100%; }

  .trust-bar-inner { gap: 6px 20px; }

  .trust-sep { display: none; }
}
