:root {
  --bg: #1A1A1A;
  --surface: #242424;
  --surface-light: #2e2e2e;
  --text: #E2E2E2;
  --muted: #888888;
  --primary: #B45309;
  --secondary: #78350F;
  --accent: #D97706;
  --border: rgba(180, 83, 9, 0.2);
  --disclosure-bg: #f5f0eb;
  --disclosure-text: #57534e;
  --max-w: 1200px;
  --sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
  overflow-x: hidden;
}

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

body.nav-open,
body.age-locked {
  overflow: hidden;
}

main {
  flex: 1 0 auto;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--primary);
}

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

.disclosure-bar {
  position: relative;
  width: 100%;
  background: var(--disclosure-bg);
  padding: 8px 16px 14px;
  text-align: center;
  font-size: 12px;
  line-height: 1.5;
  color: var(--disclosure-text);
  flex-shrink: 0;
}

.disclosure-bar p {
  margin: 0;
}

.disclosure-bar__wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 12px;
  line-height: 0;
  pointer-events: none;
}

.disclosure-bar__wave svg {
  display: block;
  width: 100%;
  height: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: linear-gradient(90deg, var(--surface) 0%, var(--surface-light) 100%);
  width: 100%;
}

.site-header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 16px 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-header__logo img {
  height: 36px;
  width: auto;
}

.site-nav {
  display: none;
  align-items: center;
  gap: 20px;
}

.site-nav a {
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  position: relative;
  padding: 4px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.25s ease, left 0.25s ease;
}

.site-nav a:hover {
  color: var(--text);
}

.site-nav a:hover::after {
  width: 100%;
  left: 0;
}

.nav-burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: 2px solid var(--border);
  cursor: pointer;
  padding: 6px;
}

.nav-burger span {
  display: block;
  height: 2px;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-burger.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 250;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(300px, 85vw);
  height: 100vh;
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-light) 100%);
  z-index: 300;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  padding: 80px 32px 32px;
  overflow-y: auto;
}

.nav-drawer.is-open {
  transform: translateX(0);
}

.nav-drawer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-drawer a {
  display: block;
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 12px 0;
  position: relative;
}

.nav-drawer a::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.25s ease, left 0.25s ease;
}

.nav-drawer a:hover::after {
  width: 100%;
  left: 0;
}

.hero-compact {
  background: var(--bg);
  overflow: hidden;
}

.hero-compact__head {
  height: 120px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  padding: 0 24px;
}

.hero-compact__title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 0.9;
  color: var(--text);
  -webkit-text-stroke: 1px var(--primary);
  white-space: nowrap;
  transform: skewX(-4deg);
  margin-bottom: -0.05em;
}

.hero-compact__strip {
  height: 40px;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 0.04em;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.marquee-wrap {
  background: var(--primary);
  color: #fff;
  overflow: hidden;
  padding: 8px 0;
  border-bottom: 3px solid var(--secondary);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0 40px;
  white-space: nowrap;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.offers-section {
  background-image: url("/images/offers_bg/offers_bg.svg");
  background-size: cover;
  background-position: center;
  background-color: var(--bg);
  padding: 56px 24px;
  position: relative;
}

.offers-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.82);
  pointer-events: none;
}

.offers-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
}

.offers-inner h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  -webkit-text-stroke: 0.5px var(--accent);
}

.offers-intro {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 32px;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.offer-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(145deg, rgba(41, 50, 65, 0.95), rgba(4, 28, 44, 0.9));
  border: 1px solid rgba(152, 193, 217, 0.18);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(16px);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(61, 90, 128, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  border-color: rgba(152, 193, 217, 0.3);
}

.offer-logo {
  width: 200px;
  height: 100px;
  margin: 24px auto 0;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.offer-logo img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: center;
  display: block;
}

.offer-body {
  padding: 20px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.offer-name {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #E0FBFC;
}

.offer-bonus-wrap {
  margin-bottom: 12px;
}

.offer-bonus {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  color: #EE6C4D;
  margin-bottom: 4px;
  line-height: 1.35;
  word-break: break-word;
  overflow-wrap: break-word;
}

.offer-terms {
  font-size: 0.72rem;
  color: #98C1D9;
  opacity: 0.85;
}

.offer-desc {
  font-size: 0.78rem;
  color: #98C1D9;
  opacity: 0.8;
  margin-bottom: 16px;
  line-height: 1.45;
}

.offer-cta {
  margin-top: auto;
  display: inline-block;
  padding: 12px 20px;
  background: #3D5A80;
  color: #E0FBFC;
  border: none;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  transition: background 0.25s ease, transform 0.25s ease;
  font-family: inherit;
}

.offer-cta:hover {
  background: #4a6d96;
  color: #fff;
  transform: scale(1.02);
}

.info-section {
  padding: 56px 24px;
  border-bottom: 1px solid var(--border);
}

.info-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.info-section h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.info-section p {
  color: var(--muted);
  font-size: 0.95rem;
}

.info-layout-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.info-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 4px 10px;
  margin-bottom: 16px;
  transform: rotate(-2deg);
}

.tape-frame {
  position: relative;
  max-width: 500px;
  max-height: 320px;
  overflow: hidden;
  border: 3px solid var(--text);
  box-shadow: 6px 6px 0 var(--primary);
  transform: rotate(1.5deg);
}

.tape-frame::before,
.tape-frame::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 18px;
  background: rgba(226, 226, 226, 0.25);
  z-index: 2;
}

.tape-frame::before {
  top: -4px;
  left: 20px;
  transform: rotate(-8deg);
}

.tape-frame::after {
  bottom: -4px;
  right: 20px;
  transform: rotate(6deg);
}

.tape-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 320px;
}

.info-layout-band {
  background: var(--surface);
  padding: 40px;
  border-left: 6px solid var(--primary);
  position: relative;
}

.info-layout-band h2 {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  position: absolute;
  left: -12px;
  top: 40px;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--accent);
  transform: rotate(180deg);
}

.info-layout-band .band-content {
  margin-left: 24px;
}

.info-layout-zigzag {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: start;
}

.info-box-outline {
  border: 2px dashed var(--border);
  padding: 28px;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 8px,
    rgba(180, 83, 9, 0.03) 8px,
    rgba(180, 83, 9, 0.03) 16px
  );
}

.info-layout-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.stat-block {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 16px;
  text-align: center;
}

.stat-block strong {
  display: block;
  font-size: 1.4rem;
  color: var(--accent);
  margin-bottom: 4px;
}

.stat-block span {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.info-layout-glitch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.glitch-img-wrap {
  max-width: 500px;
  max-height: 320px;
  overflow: hidden;
  position: relative;
}

.glitch-img-wrap img {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  transition: filter 0.1s ease;
}

.glitch-img-wrap:hover img {
  animation: glitch 0.4s steps(2) infinite;
}

@keyframes glitch {
  0% { transform: translate(0); filter: hue-rotate(0deg); }
  25% { transform: translate(-3px, 2px); filter: hue-rotate(90deg); }
  50% { transform: translate(3px, -2px); filter: contrast(1.4); }
  75% { transform: translate(-2px, -1px); filter: hue-rotate(-45deg); }
  100% { transform: translate(0); filter: hue-rotate(0deg); }
}

.info-layout-quote {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.info-layout-quote h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  -webkit-text-stroke: 1px var(--text);
  color: transparent;
  margin-bottom: 24px;
}

.info-layout-stacked .stack-item {
  background: var(--surface);
  border-left: 4px solid var(--primary);
  padding: 20px 24px;
  margin-bottom: 12px;
}

.info-layout-stacked .stack-item:last-child {
  margin-bottom: 0;
}

.info-layout-asymmetric {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
}

.info-layout-asymmetric .side-panel {
  background: var(--surface);
  padding: 24px;
  border: 2px solid var(--border);
  transform: translateY(20px);
}

.info-layout-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.mini-card {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 14px;
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
}

.mini-card strong {
  display: block;
  color: var(--accent);
  font-size: 0.7rem;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.info-layout-narrow {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.info-layout-narrow .decor-below {
  margin: 32px auto 0;
  max-width: 400px;
}

.info-6 { background: var(--surface); }
.info-8 { background: linear-gradient(135deg, var(--bg) 0%, var(--surface) 100%); }
.info-10 { background: var(--surface); }

.site-footer {
  background: var(--surface);
  border-top: 3px solid var(--primary);
  padding: 48px 24px 32px;
  margin-top: auto;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-brand img {
  height: 32px;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 280px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}

.footer-nav a {
  font-size: 0.82rem;
  color: var(--muted);
}

.footer-nav a:hover {
  color: var(--text);
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.footer-badges img {
  height: 40px;
  width: auto;
}

.footer-disclosure {
  font-size: 11px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 12px;
}

.footer-updated {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 8px;
}

.footer-copy {
  font-size: 11px;
  color: var(--muted);
  opacity: 0.7;
}

.footer-cookie-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.82rem;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-overlay.is-hidden {
  display: none;
}

.modal-box {
  background: var(--surface);
  border: 2px solid var(--primary);
  padding: 32px;
  max-width: 440px;
  width: 100%;
  box-shadow: 8px 8px 0 var(--secondary);
}

.modal-box h2 {
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.modal-box p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  padding: 12px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: inherit;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.btn-primary:hover {
  background: var(--accent);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--surface);
  border-top: 2px solid var(--primary);
  z-index: 8000;
  padding: 20px 24px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

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

.cookie-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.cookie-inner > p {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 16px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-panel {
  display: none;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--muted);
}

.cookie-panel.is-open {
  display: block;
}

.subpage-header {
  background: linear-gradient(90deg, var(--surface) 0%, var(--surface-light) 100%);
  padding: 16px 24px;
}

.subpage-header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.subpage-header__logo img {
  height: 36px;
}

.content-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 24px 64px;
}

.content-page h1 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 24px;
  border-bottom: 3px solid var(--primary);
  padding-bottom: 12px;
}

.content-page h2 {
  font-size: 1.15rem;
  margin: 28px 0 12px;
  color: var(--text);
}

.content-page h3 {
  font-size: 1rem;
  margin: 20px 0 10px;
}

.content-page p,
.content-page li {
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.content-page ul,
.content-page ol {
  padding-left: 24px;
  margin-bottom: 16px;
}

.content-page table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 0.85rem;
}

.content-page th,
.content-page td {
  border: 1px solid var(--border);
  padding: 8px 12px;
  text-align: left;
  color: var(--muted);
}

.content-page th {
  background: var(--surface);
  color: var(--text);
}

.contact-form {
  margin-top: 32px;
  padding: 28px;
  background: var(--surface);
  border: 2px solid var(--border);
}

.contact-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.form-error {
  display: none;
  color: #ef4444;
  font-size: 0.82rem;
  margin-top: -12px;
  margin-bottom: 12px;
}

.form-error.is-visible {
  display: block;
}

.form-success {
  padding: 24px;
  background: var(--surface);
  border: 2px solid var(--accent);
  text-align: center;
}

.form-success.hidden,
.contact-form.hidden,
.hidden {
  display: none;
}

.go-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  text-align: center;
}

.go-ad {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 24px;
  letter-spacing: 0.1em;
}

.go-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 24px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.go-page h1 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.go-page > p {
  color: var(--muted);
  margin-bottom: 24px;
}

.go-compliance {
  max-width: 480px;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
}

.go-compliance p {
  margin-bottom: 8px;
}

.error-page {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
}

.error-page h1 {
  font-size: clamp(4rem, 12vw, 8rem);
  -webkit-text-stroke: 2px var(--primary);
  color: transparent;
  line-height: 1;
  margin-bottom: 16px;
}

.error-page p {
  color: var(--muted);
  margin-bottom: 24px;
}

@media (min-width: 900px) {
  .site-nav {
    display: flex;
  }

  .nav-burger {
    display: none;
  }
}

@media (max-width: 899px) {
  .hero-compact__head {
    height: 80px;
  }

  .info-layout-split,
  .info-layout-zigzag,
  .info-layout-glitch,
  .info-layout-asymmetric {
    grid-template-columns: 1fr;
  }

  .info-layout-band h2 {
    writing-mode: horizontal-tb;
    position: static;
    transform: none;
    margin-bottom: 16px;
  }

  .info-layout-band .band-content {
    margin-left: 0;
  }

  .info-layout-stats {
    grid-template-columns: 1fr;
  }

  .info-layout-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .info-layout-cards {
    grid-template-columns: 1fr;
  }

  .offer-logo {
    width: 160px;
    height: 80px;
  }

  .offer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
  }
}

@media (max-width: 375px) {
  .info-inner {
    overflow: hidden;
    max-width: 100%;
  }

  .tape-frame,
  .glitch-img-wrap,
  .decor-below,
  .side-panel.tape-frame {
    max-width: 100%;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    transform: none;
    box-sizing: border-box;
  }

  .tape-frame img,
  .glitch-img-wrap img,
  .decor-below img {
    max-width: 100%;
    width: 100%;
    height: auto;
    max-height: 220px;
    object-fit: cover;
  }

  .info-layout-band {
    padding: 24px 16px;
  }

  .hero-compact__title {
    white-space: normal;
    text-align: center;
    font-size: clamp(1.75rem, 8vw, 2.5rem);
  }
}
