* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: linear-gradient(to right, #0f0f0f 0%, #0a0a0a 100%);
  color: #e0e0e0;
  font-family: 'Outfit', system-ui, -apple-system, sans-serif;
  opacity: 0;
  animation: fadeIn 0.8s forwards;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

header {
  background-color: #111111;
  border-bottom: 1px solid #222222;
  height: 80px;
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

.header-container,
.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}

.header-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-left {
  flex: 0 0 auto;
  min-width: 180px;
}

.header-left img {
  height: 24px;
  width: auto;
  display: block;
}

.nav-center {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-nav {
  display: flex;
  gap: 40px;
  list-style: none;
}

.main-nav li a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 8px;
  position: relative;
  transition: color 0.2s ease;
}

.main-nav li a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  right: 50%;
  height: 2px;
  background-color: #f9aa4b;
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  opacity: 0;
}

.main-nav li a:hover::after,
.main-nav li a.active::after {
  left: 0;
  right: 0;
  opacity: 1;
}

.main-nav li a:hover,
.main-nav li a.active {
  color: #f9aa4b;
}

.main-nav img {
  height: 24px;
  width: 24px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter 0.25s ease;
}

.main-nav li a:hover img,
.main-nav li a.active img {
  filter: brightness(0) saturate(100%) invert(67%) sepia(60%) saturate(1200%) hue-rotate(350deg) brightness(95%) contrast(105%);
}

.header-right {
  flex: 0 0 auto;
  min-width: 180px;
  display: flex;
  justify-content: flex-end;
}

.btn-signin {
  background-color: #f9aa4b;
  color: #0f0f0f;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 15px;
  transition: background-color 0.2s ease;
  border: none;
  cursor: pointer;
}

.btn-signin:hover {
  background-color: #ffbb5e;
}

/* Promo section */
.promo-section {
  text-align: center;
  padding: 80px 30px 20px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.promo-logo-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 24px;
  transition: transform 0.35s ease;
}

.promo-logo-wrapper:hover {
  transform: scale(0.92);
}

.promo-logo {
  height: 200px;           /* keep original */
  width: auto;
  display: block;

  /* Scale visually without changing box size */
  transform: scale(0.5);   /* 70% size – adjust freely 0.5–1.0 */
  transform-origin: center bottom;   /* important: scale from bottom so dust stays nice */
}

/* Dust particles */
.dust {
  position: absolute;
  bottom: 0;
  left: var(--left);
  width: var(--size);
  height: var(--size);
  background-color: #f9aa4b;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  animation: dust-up linear infinite;
  animation-delay: var(--delay);
  animation-duration: var(--dur);
}

@keyframes dust-up {
  0% {
    transform: translateY(0) translateX(0) scaleX(1) scaleY(1);
    opacity: 0;
  }
  10% {
    opacity: 0.9;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    transform: translateY(-260px) translateX(var(--drift)) scaleX(var(--squish-x)) scaleY(var(--squish-y));
    opacity: 0;
  }
}

.dust:nth-child(1) { --left: 22%; --size: 2.8px; --delay: 0.0s; --dur: 4.2s; --drift: -18px; --squish-x: 1.3; --squish-y: 0.8; }
.dust:nth-child(2) { --left: 35%; --size: 5.5px; --delay: 0.6s; --dur: 3.8s; --drift: 22px; --squish-x: 1; --squish-y: 1; }
.dust:nth-child(3) { --left: 48%; --size: 1.9px; --delay: 1.1s; --dur: 4.5s; --drift: -12px; --squish-x: 0.7; --squish-y: 1.4; }
.dust:nth-child(4) { --left: 60%; --size: 4.3px; --delay: 1.7s; --dur: 3.9s; --drift: 28px; --squish-x: 1.2; --squish-y: 0.9; }
.dust:nth-child(5) { --left: 28%; --size: 3.6px; --delay: 2.3s; --dur: 4.1s; --drift: -20px; --squish-x: 1; --squish-y: 1; }
.dust:nth-child(6) { --left: 72%; --size: 2.5px; --delay: 2.9s; --dur: 4.6s; --drift: 15px; --squish-x: 1.4; --squish-y: 0.7; }
.dust:nth-child(7) { --left: 40%; --size: 5.0px; --delay: 3.5s; --dur: 3.7s; --drift: -25px; --squish-x: 0.9; --squish-y: 1.1; }
.dust:nth-child(8) { --left: 55%; --size: 3.2px; --delay: 0.3s; --dur: 4.3s; --drift: 18px; --squish-x: 1; --squish-y: 1; }
.dust:nth-child(9) { --left: 30%; --size: 4.7px; --delay: 0.9s; --dur: 4.0s; --drift: -16px; --squish-x: 1.1; --squish-y: 0.95;}
.dust:nth-child(10) { --left: 68%; --size: 2.2px; --delay: 1.5s; --dur: 4.8s; --drift: 20px; --squish-x: 0.8; --squish-y: 1.3; }
.dust:nth-child(11) { --left: 45%; --size: 5.8px; --delay: 2.1s; --dur: 3.6s; --drift: -22px; --squish-x: 1; --squish-y: 1; }
.dust:nth-child(12) { --left: 78%; --size: 3.8px; --delay: 2.7s; --dur: 4.4s; --drift: 24px; --squish-x: 1.2; --squish-y: 0.85;}

/* Side images containers */
.left-side-images,
.right-side-images {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.left-side-images { left: 0; }
.right-side-images { right: 0; }

.side-item {
  position: absolute;
  height: auto;
  object-fit: contain;
  opacity: 0.9;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.9)) drop-shadow(0 4px 12px rgba(0,0,0,0.6));
}

/* Left side – push further left (smaller left values) */
.left-dragonlore {
  width: 225px;
  top: 45%;
  left: 220px;           /* was 400px → moved left by 180px */
  transform: translateY(-322px);
  animation: subtle-wind-1 8.2s infinite ease-in-out;
}

.left-lvbag {
  width: 160px;
  top: 45%;
  left: 365px;           /* was 545px → -180px */
  transform: translateY(-175px);
  animation: subtle-wind-2 8.9s infinite ease-in-out;
}

.left-ring {
  width: 150px;
  top: 45%;
  left: 223px;           /* was 403px → -180px */
  transform: translateY(-110px);
  animation: subtle-wind-3 9.4s infinite ease-in-out;
}

.left-wild {
  width: 100px;
  top: 65%;
  left: 370px;           /* was 550px → -180px */
  transform: translateY(-197px);
  animation: subtle-wind-4 8.7s infinite ease-in-out;
}

/* Right side – push further right (larger right values) */
.right-butterflylore {
  width: 150px;
  top: 50%;
  right: 220px;          /* was 400px → moved right by 180px */
  transform: translateY(-322px);
  animation: subtle-wind-5 8.5s infinite ease-in-out;
}

.right-nikeshoes {
  width: 150px;
  top: 45%;
  right: 365px;          /* was 545px → +180px */
  transform: translateY(-175px);
  animation: subtle-wind-6 9.1s infinite ease-in-out;
}

.right-nuggetbackpack {
  width: 150px;
  top: 45%;
  right: 223px;          /* was 403px → +180px */
  transform: translateY(-110px);
  animation: subtle-wind-7 9.6s infinite ease-in-out;
}

.right-bear {
  width: 65px;
  top: 65%;
  right: 370px;          /* was 550px → +180px */
  transform: translateY(-197px);
  animation: subtle-wind-8 8.4s infinite ease-in-out;
}

/* Subtle wind-like floating */
@keyframes subtle-wind-1 { 0%,100% { transform: translateY(-322px) translateX(0); } 25% { transform: translateY(-328px) translateX(5px); } 50% { transform: translateY(-316px) translateX(-4px); } 75% { transform: translateY(-330px) translateX(3px); } }
@keyframes subtle-wind-2 { 0%,100% { transform: translateY(-175px) translateX(0); } 20% { transform: translateY(-181px) translateX(-5px); } 45% { transform: translateY(-169px) translateX(6px); } 70% { transform: translateY(-183px) translateX(-3px); } }
@keyframes subtle-wind-3 { 0%,100% { transform: translateY(-110px) translateX(0); } 30% { transform: translateY(-116px) translateX(4px); } 55% { transform: translateY(-104px) translateX(-5px); } 80% { transform: translateY(-118px) translateX(4px); } }
@keyframes subtle-wind-4 { 0%,100% { transform: translateY(-197px) translateX(0); } 35% { transform: translateY(-203px) translateX(-4px); } 60% { transform: translateY(-191px) translateX(5px); } 85% { transform: translateY(-205px) translateX(-3px); } }
@keyframes subtle-wind-5 { 0%,100% { transform: translateY(-322px) translateX(0); } 22% { transform: translateY(-328px) translateX(5px); } 48% { transform: translateY(-316px) translateX(-5px); } 73% { transform: translateY(-330px) translateX(4px); } }
@keyframes subtle-wind-6 { 0%,100% { transform: translateY(-175px) translateX(0); } 28% { transform: translateY(-181px) translateX(-6px); } 53% { transform: translateY(-169px) translateX(5px); } 78% { transform: translateY(-183px) translateX(-4px); } }
@keyframes subtle-wind-7 { 0%,100% { transform: translateY(-110px) translateX(0); } 32% { transform: translateY(-116px) translateX(4px); } 57% { transform: translateY(-104px) translateX(-5px); } 82% { transform: translateY(-118px) translateX(3px); } }
@keyframes subtle-wind-8 { 0%,100% { transform: translateY(-197px) translateX(0); } 38% { transform: translateY(-203px) translateX(-5px); } 63% { transform: translateY(-191px) translateX(6px); } 88% { transform: translateY(-205px) translateX(-4px); } }

.promo-header {
  font-size: 36px;
  font-weight: 600;
  font-style: italic;
  letter-spacing: -0.5px;
}

.promo-header span {
  color: #e0e0e0;
}

.promo-header .code {
  color: #f9aa4b;
}

.promo-subtext {
  font-size: 18px;
  font-weight: 400;
  color: #b0b0b0;
  max-width: 600px;
  margin: 8px auto 0;
  line-height: 1.5;
}

.section-separator {
  height: 1px;
  width: 70%;
  max-width: 450px;
  background-color: #333333;
  opacity: 0.4;
  margin: 40px auto;
  border-radius: 2px;
}

/* Bonuses cards */
.bonuses-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px 80px;
  text-align: center;
}

.cards-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
}

.cards-row:last-child {
  margin-bottom: 0;
}

.bonus-card {
  background-color: #1a1a1a;
  border: 1px solid #222222;
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s ease;
}

.bonus-card:hover {
  border-color: #f9aa4b55;
}

.card-banner {
  height: 100px;
  background-color: #111111;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  overflow: hidden;
}

.card-banner img {
  width: auto;
  height: auto;
  object-fit: contain;
  max-width: 80%;
}

.card-banner img.large-logo {
  width: 350px;
  max-width: none;
}

.card-content {
  padding: 20px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}


.perks-list li:last-child {
  margin-bottom: 0;
}

.claim-btn {
  background-color: #f9aa4b;
  color: #0f0f0f;
  font-weight: 600;
  font-size: 16px;
  padding: 14px;
  border-radius: 8px;
  text-decoration: none;
  display: block;
  width: 100%;
  text-align: center;
  transition: background-color 0.2s ease, color 0.2s ease;
  border: none;
  cursor: pointer;
}

.claim-btn:hover {
  background-color: #ffbb5e;
  color: #0f0f0f;
}

/* My Socials section */
.socials-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px 60px;
  text-align: center;
}

.socials-header {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #e0e0e0;
}

.socials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.social-card {
  background-color: #1a1a1a;
  border: 1px solid #222222;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: border-color 0.25s ease, transform 0.2s ease;
  text-decoration: none;
  color: inherit;
}

.social-card:hover {
  border-color: #f9aa4b55;
  transform: translateY(-4px);
}

.social-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icon svg {
  width: 100%;
  height: 100%;
  fill: #e0e0e0;
}

.social-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.social-text {
  flex: 1;
  text-align: left;
}

.social-label {
  font-size: 15px;
  font-weight: 500;
  color: #b0b0b0;
  opacity: 0.85;
  margin-bottom: 4px;
}

.social-handle {
  font-size: 18px;
  font-weight: 600;
  color: #f9aa4b;
}

/* Footer */
footer {
  background-color: #111111;
  border-top: 1px solid #222222;
  padding: 60px 0 40px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-left {
  max-width: 300px;
}

.footer-logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  height: 32px;
  width: auto;
}

.footer-brand {
  font-size: 22px;
  font-weight: 700;
  color: #e0e0e0;
}

.footer-copyright {
  font-size: 14px;
  color: #b0b0b0;
  margin-bottom: 8px;
}

.footer-credits {
  font-size: 14px;
  color: #b0b0b0;
}

.footer-credits a {
  color: #f9aa4b;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-credits a:hover {
  color: #ffbb5e;
}

.footer-right {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.footer-col {
  min-width: 140px;
}

.footer-col h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #e0e0e0;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 2.5px;
}

.footer-col a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #f9aa4b;
}

/* Mobile – hide side images */
@media (max-width: 1024px) {
  .left-side-images,
  .right-side-images { display: none; }
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
  .footer-right {
    justify-content: center;
  }
}

.perks-list {
  list-style: none;
  margin: 0 0 24px 0;          /* removed auto → no more centering the whole list block */
  padding: 0;
  flex: 1;
  max-width: 100%;             /* let it take full available width of the card */
  display: flex;
  flex-direction: column;
  align-items: stretch;        /* changed from flex-start → items take full width */
}

.perks-list li {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 8px;
  color: #d0d0d0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
}

.perks-list li:last-child {
  margin-bottom: 0;
}

.perks-list li::before {
  content: "";
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: url('/assets/bullet.png') no-repeat center / contain;
  background-size: contain;
  margin-top: 3px;

  /* Recolor to match #f9aa4b orange */
  filter: brightness(0) saturate(100%) invert(67%) sepia(60%) saturate(1200%) hue-rotate(350deg) brightness(95%) contrast(105%);
}

/* ── Logged-in user pills & dropdown ── */
.user-panel {
  position: relative;
}

.pill {
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 999px;
  padding: 6px 14px;              /* smaller for points, we'll override for username */
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #e0e0e0;
  transition: all 0.2s ease;
}

.pill:hover {
  background: #222;
  border-color: #555;
}

.points-pill {
  padding: 6px 12px;              /* slightly smaller */
  font-size: 14px;
}

.username-pill {
  padding: 6px 16px 6px 10px;     /* wider, more padding left for pic */
  cursor: pointer;
  font-size: 15px;
  user-select: none;
}

.points-amount {
  color: #e0e0e0;                 /* same as username – NOT orange */
}

/* Icons: color black→orange #f9aa4b */
.theme-icon {
  width: 18px;
  height: 18px;
  filter: brightness(0) saturate(100%) invert(67%) sepia(60%) saturate(1200%) hue-rotate(350deg) brightness(95%) contrast(105%);
  /* This is a very close match to #f9aa4b – tested in multiple generators */
}

/* Dropdown */
#user-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 8px;
  min-width: 180px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.6);
  z-index: 1000;
  overflow: hidden;
  font-family: 'Outfit', sans-serif; /* ensure whole dropdown uses Outfit */
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  color: #e0e0e0;
  text-decoration: none;
  font-size: 14px;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s;
  font-family: 'Outfit', sans-serif;
}

.dropdown-item:hover {
  background: #222;
}

.dropdown-separator {
  height: 1px;
  background: #333;
  margin: 4px 0;
}

.logout-item {
  color: #ff4d4d !important;      /* red for logout */
}

.logout-item:hover {
  background: #330000;            /* subtle dark red hover */
}

/* ────────────────────────────────────────────────
   Mobile-first adjustments + tablet
───────────────────────────────────────────────── */

/* Up to ~1024px: already hiding side images → good */
/* But let's make sure promo is better centered & sized on smaller screens */

@media (max-width: 1024px) {
  .promo-section {
    padding: 60px 20px 20px;
  }

  .promo-logo {
    height: 160px;          /* smaller than desktop 200px */
    transform: scale(0.55); /* adjust if still too big */
  }

  .promo-header {
    font-size: 28px;
  }

  .promo-subtext {
    font-size: 16px;
  }
}

/* ── Phones & small tablets (≤ 768px) ── */
@media (max-width: 768px) {

  /* ── Header ── */
  .header-container {
    padding: 0 16px;
    justify-content: center;     /* force center everything */
  }

  .header-left {
    display: none;               /* hide logo completely */
  }

  .nav-center {
    flex: none;                  /* don't grow */
  }

  .main-nav {
    gap: 28px;                   /* slightly tighter */
    justify-content: center;
  }

  .main-nav li a {
    font-size: 15px;
    padding: 10px 6px;
    gap: 0;                      /* remove icon-text gap */
  }

  .main-nav img {
    display: none;               /* hide all nav icons */
  }

  .header-right {
    display: none;               /* usually sign-in / user panel – hide or adjust if needed */
  }

  /* ── Promo / Hero area ── */
  .promo-section {
    padding: 50px 16px 30px;
  }

  .promo-logo-wrapper {
    margin-bottom: 20px;
  }

  .promo-logo {
    height: 140px;
    transform: scale(0.6);       /* tune this 0.55–0.7 until centered & nice size */
  }

  .promo-header {
    font-size: 26px;
    line-height: 1.2;
  }

  .promo-header span {
    display: block;              /* force "Use Code:" on own line if too wide */
  }

  .promo-subtext {
    font-size: 15px;
    max-width: 90%;
  }

  /* Dust particles become less noticeable / fewer – optional */
  .dust {
    --size: calc(var(--size) * 0.7);
  }

  /* ── Bonus cards ── stack naturally already, but make them full-width-ish */
  .bonus-card {
    max-width: 420px;            /* wider on mobile for readability */
  }

  .card-banner {
    height: 90px;
  }

  .card-banner img.large-logo {
    width: 280px;                /* scale down huge logos */
  }

  /* ── Socials grid ── already responsive, but tighten */
  .socials-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
  }

  .social-card {
    padding: 16px;
  }
}

/* ── Small phones (≤ 480px / iPhone SE, etc.) ── */
@media (max-width: 480px) {

  .promo-logo {
    height: 120px;
    transform: scale(0.58);
  }

  .promo-header {
    font-size: 22px;
  }

  .promo-subtext {
    font-size: 14px;
  }

  .main-nav {
    gap: 20px;
  }

  .main-nav li a {
    font-size: 14px;
    padding: 8px 4px;
  }

  .cards-row {
    gap: 16px;
  }

  .bonus-card {
    max-width: 100%;             /* full width on very small screens */
  }
}

/* ── Footer mobile adjustments ── */
@media (max-width: 768px) {

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
    padding: 40px 20px 30px;
  }

  .footer-left {
    max-width: 100%;
  }

  .footer-logo-wrapper {
    justify-content: center;
  }

  .footer-brand {
    font-size: 20px;
  }

  .footer-right {
    justify-content: center;
    gap: 40px;
    width: 100%;
  }

  .footer-col {
    text-align: center;
  }

  /* Hide "Socials" column completely on mobile */
  .footer-col h4[contains(text(),'Social')] ~ ul,
  .footer-col h4:text-contains("Social") {
    display: none;
  }

  /* Better selector – hide whole column that contains "Socials" */
  /* If you have e.g. <h4>Socials</h4> then: */
  .footer-col:has(h4:text-contains("Social")) {
    display: none;
  }

  /* Fallback if :has() not supported enough yet (2025–2026 should be fine) */
  /* You can also give that column a class like .footer-socials and do: */
  /* .footer-socials { display: none; } */
}

/* If you gave the socials column a class .footer-socials, use this instead: */
@media (max-width: 768px) {
  .footer-socials {
    display: none;
  }

  /* Force Explore + Information next to each other if space */
  .footer-right {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 768px) {

  .promo-logo-wrapper {
    display: block;
    margin: 0 auto 20px auto;
    max-width: 100%;
    position: relative;
  }

  .promo-logo {
    display: block;
    margin: 0 auto;
    width: auto;                    /* let natural width decide */
    height: auto !important;        /* ← KEY: never force height, preserve ratio */
    max-width: 80vw;                /* cap width to fit screen nicely */
    max-height: 120px;              /* soft cap on height so it doesn't get huge */
    object-fit: contain;            /* preserve aspect ratio, no stretching */
    image-rendering: -webkit-optimize-contrast; /* optional: sharper on some browsers */
  }
}

@media (max-width: 480px) {

  .promo-logo {
    max-width: 75vw;
    max-height: 100px;              /* even smaller cap for tiny screens */
    object-fit: contain;
            transform: scale(1);
  }
}

.card-banner h2 {
  margin: 0;
  padding: 20px 10px;
  font-size: 2.2rem;
  font-weight: 800;
  color: #f9aa4b;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}