/* ============================================================
   PIN-UP CASINO HONDURAS — GLOBAL STYLES
   Brand: Red #E8321E | Teal #1ECBB5 | Black #111
   Font: Nunito (headings bold italic) + Inter (body)
   ============================================================ */

:root {
  --red: #E8321E;
  --red2: #c42a18;
  --teal: #1ECBB5;
  --teal2: #18a898;
  --black: #111111;
  --black2: #181818;
  --black3: #222222;
  --white: #ffffff;
  --text: #f0f0f0;
  --text-muted: #9a9a9a;
  --border: #2c2c2c;
  --gold: #f5c518;
  --gradient-red: linear-gradient(135deg, #E8321E 0%, #c42a18 100%);
  --gradient-teal: linear-gradient(135deg, #1ECBB5 0%, #18a898 100%);
  --gradient-dark: linear-gradient(180deg, #1e1e1e 0%, #111 100%);
  --shadow-red: 0 4px 28px rgba(232, 50, 30, 0.32);
  --shadow-teal: 0 4px 28px rgba(30, 203, 181, 0.28);
  --radius: 12px;
  --transition: 0.22s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--black);
  color: var(--text);
  font-size: 1rem;
  line-height: 1.75;
  overflow-x: hidden;
}

a {
  color: var(--teal);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--red);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ── SKIP LINK ── */
.skip-link {
  position: absolute;
  top: -60px;
  left: 0;
  background: var(--red);
  color: #fff;
  padding: .5rem 1rem;
  z-index: 9999;
  border-radius: 0 0 6px 0;
  transition: top .2s;
}

.skip-link:focus {
  top: 0;
}

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 800;
  /* No backdrop-filter: it creates a stacking context that traps child z-indexes */
  background: rgba(17, 17, 17, 0.97);
  border-bottom: 2px solid var(--red);
  padding: .75rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* ── LOGO ── */
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  width: 48px;
  height: 48px;
  background: var(--black);
  border: 3px solid var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: .7rem;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.logo-icon::before {
  content: 'P';
  font-size: 2rem;
  font-weight: 900;
  color: var(--red);
  font-family: 'Nunito', sans-serif;
  font-style: italic;
  line-height: 1;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-pinup {
  font-family: 'Nunito', sans-serif;
  font-size: 1.55rem;
  font-weight: 900;
  font-style: italic;
  color: var(--red);
  letter-spacing: -0.02em;
}

.logo-casino {
  background: var(--teal);
  color: var(--black);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .1rem .55rem;
  border-radius: 4px;
  align-self: flex-start;
  margin-top: .1rem;
}

/* ── NAV ── */
.main-nav {
  display: flex;
  align-items: center;
  gap: .25rem;
  flex-wrap: nowrap;
}

.main-nav a {
  color: var(--text);
  font-size: .875rem;
  font-weight: 500;
  padding: .4rem .7rem;
  border-radius: 6px;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.main-nav a:hover {
  background: var(--black3);
  color: var(--teal);
}

.nav-cta {
  background: var(--gradient-red) !important;
  color: #fff !important;
  font-weight: 700 !important;
  padding: .45rem 1.1rem !important;
  border-radius: 8px !important;
  box-shadow: var(--shadow-red);
  transition: opacity var(--transition) !important;
}

.nav-cta:hover {
  opacity: .88 !important;
}


/* ── BURGER (hidden on desktop) ── */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  z-index: 1100;
  outline: none;
  position: relative;
}

.burger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
  pointer-events: none;
}

.burger.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.burger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.burger.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}


/* ── HERO ── */
.site-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #1a0808 0%, #0d1a18 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .35;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17, 17, 17, .92) 40%, rgba(17, 17, 17, .3) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 3rem 0;
}

.hero-badge {
  display: inline-block;
  background: var(--gradient-teal);
  color: var(--black);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .05em;
  padding: .35rem .9rem;
  border-radius: 20px;
  margin-bottom: .9rem;
}

.hero-stars {
  margin-bottom: .7rem;
  color: var(--gold);
  font-size: 1.1rem;
}

.hero-content h1 {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  font-style: italic;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1rem;
}

.hero-content h1 span {
  color: var(--teal);
}

.hero-content p {
  font-size: 1.08rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  max-width: 520px;
}

.hero-bonus-box {
  background: rgba(30, 203, 181, .1);
  border: 1px solid rgba(30, 203, 181, .3);
  border-radius: var(--radius);
  padding: 1.1rem 1.4rem;
  margin-bottom: 1.6rem;
}

.hero-bonus-box strong {
  color: var(--teal);
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-weight: 700;
  font-size: .95rem;
  border-radius: 10px;
  padding: .8rem 1.8rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
}

.btn-red {
  background: var(--gradient-red);
  color: #fff;
  box-shadow: var(--shadow-red);
}

.btn-red:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(232, 50, 30, .45);
  color: #fff;
}

.btn-teal {
  background: transparent;
  border: 2px solid var(--teal);
  color: var(--teal);
}

.btn-teal:hover {
  background: var(--teal);
  color: var(--black);
}

/* ── TRUST BADGES ── */
.trust-bar {
  background: var(--black2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  color: var(--text-muted);
}

.trust-item span:first-child {
  font-size: 1.3rem;
}

.trust-item strong {
  color: var(--teal);
}

/* ── SECTION COMMONS ── */
section {
  padding: 4rem 0;
}

.section-title {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  font-style: italic;
  color: var(--white);
  margin-bottom: .5rem;
}

.section-title span {
  color: var(--teal);
}

.section-sub {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  font-size: .95rem;
}

/* ── CARDS GRID ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
}

.card {
  background: var(--black2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem;
  transition: border-color var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.card:hover {
  border-color: var(--teal);
  transform: translateY(-4px);
}

.card:hover::before {
  transform: scaleX(1);
}

.card-icon {
  font-size: 2.2rem;
  margin-bottom: .8rem;
}

.card h3 {
  font-family: 'Nunito', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: .5rem;
}

.card p {
  color: var(--text-muted);
  font-size: .88rem;
}

.card-badge {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  padding: .15rem .5rem;
  border-radius: 4px;
  margin-top: .6rem;
}

/* ── BONUS CARD ── */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.4rem;
}

.bonus-card {
  background: var(--black2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.bonus-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-teal);
}

.bonus-card-top {
  background: var(--gradient-red);
  padding: 1.4rem 1.6rem;
  position: relative;
}

.bonus-card-top h3 {
  font-family: 'Nunito', sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
  font-style: italic;
  color: #fff;
}

.bonus-amount {
  font-size: 2.4rem;
  font-weight: 900;
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-style: italic;
  margin: .3rem 0;
}

.bonus-card-body {
  padding: 1.2rem 1.6rem;
}

.bonus-card-body ul {
  list-style: none;
}

.bonus-card-body li {
  padding: .4rem 0;
  font-size: .88rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: .5rem;
}

.bonus-card-body li:last-child {
  border-bottom: none;
}

.bonus-card-body li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 700;
}

/* ── TABLE ── */
.table-wrap {
  overflow-x: auto;
  margin: 1.5rem 0;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
}

caption {
  font-size: .8rem;
  color: var(--text-muted);
  text-align: left;
  padding: .6rem 1rem;
  background: var(--black3);
  border-bottom: 1px solid var(--border);
  font-weight: 600;
}

th {
  background: var(--black3);
  color: var(--teal);
  font-weight: 700;
  padding: .8rem 1rem;
  text-align: left;
  font-size: .82rem;
  letter-spacing: .03em;
  border-bottom: 1px solid var(--border);
}

td {
  padding: .75rem 1rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

tr:last-child td {
  border-bottom: none;
}

tr:hover td {
  background: rgba(255, 255, 255, .03);
}

td:first-child {
  font-weight: 600;
}

.td-green {
  color: var(--teal);
  font-weight: 700;
}

.td-red {
  color: var(--red);
  font-weight: 700;
}

.td-gold {
  color: var(--gold);
  font-weight: 700;
}

/* ── CHART BAR ── */
.chart-section {
  margin: 2rem 0;
}

.chart-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
}

.bar-chart {
  display: flex;
  flex-direction: column;
  gap: .7rem;
}

.bar-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.bar-label {
  min-width: 130px;
  font-size: .82rem;
  color: var(--text-muted);
  text-align: right;
}

.bar-track {
  flex: 1;
  height: 22px;
  background: var(--black3);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.bar-fill {
  height: 100%;
  border-radius: 4px;
  display: flex;
  align-items: center;
  padding-left: .5rem;
  font-size: .72rem;
  font-weight: 700;
  color: var(--black);
  background: var(--gradient-teal);
  transition: width 1s ease;
}

.bar-fill.red {
  background: var(--gradient-red);
  color: #fff;
}

.bar-pct {
  min-width: 42px;
  font-size: .78rem;
  font-weight: 700;
  color: var(--teal);
}

/* ── STEPS ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  counter-reset: steps;
}

.step-card {
  background: var(--black2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem;
  position: relative;
  counter-increment: steps;
}

.step-num {
  font-family: 'Nunito', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  font-style: italic;
  color: var(--red);
  opacity: .2;
  position: absolute;
  top: .8rem;
  right: 1rem;
  line-height: 1;
}

.step-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .4rem;
}

.step-card p {
  color: var(--text-muted);
  font-size: .85rem;
}

/* ── FAQ ── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: .7rem;
}

.faq-item {
  background: var(--black2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-q {
  padding: 1rem 1.3rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-q::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--teal);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item.open .faq-q::after {
  transform: rotate(45deg);
}

.faq-a {
  padding: 0 1.3rem;
  max-height: 0;
  overflow: hidden;
  color: var(--text-muted);
  font-size: .9rem;
  transition: max-height .4s ease, padding .3s;
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding: .8rem 1.3rem 1.2rem;
}

/* ── SEO CONTENT ── */
.seo-content {
  background: var(--black2);
  border-top: 1px solid var(--border);
}

.seo-article h2 {
  font-family: 'Nunito', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  font-style: italic;
  color: var(--white);
  margin: 2rem 0 .8rem;
}

.seo-article h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--teal);
  margin: 1.5rem 0 .5rem;
}

.seo-article p {
  color: var(--text-muted);
  margin-bottom: .9rem;
  line-height: 1.8;
}

.seo-article strong {
  color: var(--text);
}

.text-link {
  color: var(--teal);
  border-bottom: 1px dashed var(--teal);
}

.text-link:hover {
  color: var(--red);
  border-color: var(--red);
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin: 1rem 0;
}

.quick-link {
  background: var(--black3);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: .4rem .9rem;
  font-size: .82rem;
  color: var(--text-muted);
  transition: all var(--transition);
}

.quick-link:hover {
  border-color: var(--teal);
  color: var(--teal);
}

/* ── FOOTER ── */
.site-footer {
  background: #0c0c0c;
  border-top: 2px solid var(--red);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: .83rem;
  margin-top: .7rem;
  line-height: 1.7;
}

.footer-col h4 {
  color: var(--teal);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: .9rem;
}

.footer-col a {
  display: block;
  color: var(--text-muted);
  font-size: .85rem;
  padding: .25rem 0;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--teal);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}

.footer-legal {
  font-size: .75rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.age-badge {
  background: var(--red);
  color: #fff;
  font-weight: 900;
  font-size: .9rem;
  padding: .4rem .8rem;
  border-radius: 6px;
  flex-shrink: 0;
}

.payments-row {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin: 1rem 0;
}

.payment-pill {
  background: var(--black3);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: .3rem .8rem;
  font-size: .78rem;
  color: var(--text-muted);
}

/* ── HIGHLIGHT BOX ── */
.highlight-box {
  background: linear-gradient(135deg, rgba(232, 50, 30, .12) 0%, rgba(30, 203, 181, .08) 100%);
  border: 1px solid rgba(30, 203, 181, .25);
  border-left: 4px solid var(--teal);
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
  margin: 1.5rem 0;
}

.highlight-box strong {
  color: var(--teal);
}

/* ── BREADCRUMB ── */
.breadcrumb {
  padding: .8rem 0;
  font-size: .82rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}

.breadcrumb a {
  color: var(--text-muted);
}

.breadcrumb a:hover {
  color: var(--teal);
}

.breadcrumb span {
  color: var(--text);
}

/* ── PAGE HERO (subpages) ── */
.page-hero {
  background: linear-gradient(135deg, #1a0808 0%, #0d1a18 100%);
  padding: 3.5rem 0 2.5rem;
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  font-style: italic;
  color: var(--white);
}

.page-hero h1 span {
  color: var(--teal);
}

.page-hero p {
  color: var(--text-muted);
  margin-top: .6rem;
  max-width: 600px;
}

/* ── STAT GRID ── */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.stat-card {
  background: var(--black3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem;
  text-align: center;
}

.stat-number {
  font-family: 'Nunito', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  font-style: italic;
  color: var(--teal);
}

.stat-label {
  font-size: .78rem;
  color: var(--text-muted);
  margin-top: .2rem;
}

/* ── RESPONSIVE 900px ── */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ── OVERLAY ── */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .65);
  z-index: 1000;
  cursor: pointer;
}

.nav-overlay.open {
  display: block;
}

/* ── MOBILE 700px ── */
@media (max-width: 700px) {

  /* Show burger button */
  .burger {
    display: flex !important;
  }

  /* Nav: slide-in panel from right */
  .main-nav {
    display: flex !important;
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    align-items: stretch !important;
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: auto !important;
    width: 280px !important;
    max-width: 85vw !important;
    background: #1b1b1b !important;
    padding: 70px 20px 30px !important;
    gap: 4px !important;
    box-shadow: -8px 0 32px rgba(0, 0, 0, .8) !important;
    z-index: 1050 !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    /* hidden state */
    transform: translateX(100%) !important;
    visibility: hidden !important;
    opacity: 0 !important;
    transition: transform .3s ease, visibility .3s ease, opacity .3s ease !important;
  }

  /* open state — added by JS */
  .main-nav.open {
    transform: translateX(0) !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .main-nav a {
    display: block !important;
    width: 100% !important;
    padding: 12px 14px !important;
    font-size: 15px !important;
    color: #fff !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    white-space: normal !important;
    border-bottom: 1px solid rgba(255, 255, 255, .07) !important;
  }

  .main-nav a:last-child {
    border-bottom: none !important;
  }

  .main-nav a:hover,
  .main-nav a:active {
    background: rgba(30, 203, 181, .15) !important;
    color: #1ecbb5 !important;
  }

  .nav-cta {
    margin-top: 12px !important;
    text-align: center !important;
  }

  /* Other mobile fixes */
  .hero-content {
    padding: 2rem 0;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }

  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bar-label {
    min-width: 90px;
    font-size: .75rem;
  }

  .table-wrap {
    font-size: .78rem;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }

  .btn {
    justify-content: center;
  }

  .stat-grid {
    grid-template-columns: 1fr 1fr;
  }
}
/* ══ HEADER MOBILE CTA v4 ══ */
/* Desktop: hard hidden */
.header-cta-mobile { display:none !important; }
@media (min-width:701px) { .header-cta-mobile { display:none !important; } }

/* Mobile only */
@keyframes cta-glow {
  0%,100% { box-shadow:0 3px 14px rgba(232,50,30,.5); }
  50%      { box-shadow:0 5px 24px rgba(232,50,30,.8), 0 0 0 6px rgba(232,50,30,.12); }
}
@media (max-width:700px) {
  .header-cta-mobile {
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
    margin-left:auto !important;
    margin-right:10px !important;
    flex-shrink:0 !important;
    padding:9px 17px !important;
    background:linear-gradient(135deg,#ff3a1e,#bf1f1a) !important;
    color:#fff !important;
    font-size:12.5px !important;
    font-weight:800 !important;
    letter-spacing:.07em !important;
    text-transform:uppercase !important;
    white-space:nowrap !important;
    text-decoration:none !important;
    border-radius:10px !important;
    border:1.5px solid rgba(255,255,255,.22) !important;
    animation:cta-glow 2.8s ease-in-out infinite !important;
  }
  .header-cta-mobile:active { transform:scale(.96) !important; }
}
