:root {
  --bg: #010B13;
  --surface: #041C2C;
  --text: #E0FBFC;
  --muted: #98C1D9;
  --primary: #3D5A80;
  --secondary: #293241;
  --accent: #EE6C4D;
  --border: rgba(152, 193, 217, 0.1);
  --font-serif: Georgia, "Times New Roman", Times, serif;
  --font-sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-display: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --brutalist: "brutalist";
  --anti-design: "anti-design";
  --raw: "raw";
  --typography: "typography";
  --asymmetric: "asymmetric";
}

@keyframes brutalist {
  from {
    opacity: 0.96;
  }
  to {
    opacity: 1;
  }
}

@keyframes asymmetric {
  from {
    transform: translateX(-6px);
  }
  to {
    transform: translateX(0);
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0 0 72px;
  font-family: var(--font-sans);
  color: var(--text);
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(61, 90, 128, 0.35), transparent 55%),
    linear-gradient(165deg, var(--bg) 0%, #021820 42%, var(--bg) 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 47px,
      rgba(152, 193, 217, 0.04) 47px,
      rgba(152, 193, 217, 0.04) 48px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 47px,
      rgba(152, 193, 217, 0.03) 47px,
      rgba(152, 193, 217, 0.03) 48px
    );
}

a {
  color: blue;
}

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

.brutalist {
  border: 2px solid var(--text);
  animation: brutalist 2s ease-in-out infinite alternate;
}

.anti-design {
  transform: rotate(-0.4deg);
}

body::after {
  content: var(--anti-design) " " var(--raw) " " var(--typography);
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.raw {
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.55);
}

.typography {
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.asymmetric {
  margin-left: -1.5rem;
  animation: asymmetric 1.2s ease-out both;
}

.disclosure-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 0 12px;
}

.disclosure-card {
  max-width: 900px;
  width: 100%;
  margin-top: 8px;
  margin-bottom: 8px;
  padding: 10px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  background: #f4f7f8;
  color: #1a1a1a;
  font-size: 12px;
  line-height: 1.45;
  text-align: center;
  font-family: var(--font-sans);
}

.site-main {
  position: relative;
  z-index: 1;
  flex: 1 0 auto;
  width: 100%;
}

.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 52px;
  background: var(--secondary);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 900;
}

.bottom-nav-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 8px;
  gap: 4px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: var(--text);
  flex-shrink: 0;
  margin-right: 8px;
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 700;
}

.nav-brand img {
  width: 28px;
  height: 28px;
  display: block;
}

.nav-links {
  display: flex;
  flex: 1;
  justify-content: space-evenly;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  min-width: 0;
}

.nav-links a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.1;
  gap: 2px;
  min-width: 44px;
  padding: 2px 4px;
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--accent);
}

.nav-ico {
  width: 16px;
  height: 16px;
  border: 1px solid currentColor;
  display: block;
  position: relative;
}

.nav-ico::after {
  content: "";
  position: absolute;
  inset: 3px;
  background: currentColor;
  opacity: 0.55;
}

.nav-more-btn {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 10px;
  cursor: pointer;
  padding: 2px 8px;
  gap: 2px;
  font-family: var(--font-sans);
}

.nav-more-btn .burger-lines {
  width: 14px;
  height: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.nav-more-btn .burger-lines span {
  display: block;
  height: 2px;
  background: currentColor;
}

.nav-overflow {
  display: none;
  position: absolute;
  bottom: 56px;
  right: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 8px;
  min-width: 160px;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.4);
  z-index: 950;
}

.nav-overflow.open {
  display: block;
}

.nav-overflow a {
  display: block;
  color: var(--text);
  text-decoration: none;
  padding: 8px 10px;
  border-bottom: 1px solid var(--border);
  font-size: 12px;
  font-family: var(--font-sans);
}

.nav-overflow a:last-child {
  border-bottom: none;
}

.hero {
  position: relative;
  padding: 48px 4vw 56px;
  background: var(--bg);
  border-bottom: 2px solid var(--border);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -40px;
  top: 20%;
  width: 180px;
  height: 180px;
  border: 3px solid var(--accent);
  transform: rotate(18deg);
  opacity: 0.35;
  pointer-events: none;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0;
  max-width: 14ch;
  margin-left: -2vw;
  padding-left: 0;
  color: var(--text);
  animation: hero-in 0.9s ease-out both;
}

.hero-sub {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  color: var(--muted);
  max-width: 36ch;
  margin: 1.25rem 0 0 12vw;
  line-height: 1.5;
  animation: hero-in 1.1s 0.15s ease-out both;
}

@keyframes hero-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.marquee {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  white-space: nowrap;
  padding: 8px 0;
}

.marquee-track {
  display: inline-block;
  animation: marquee-scroll 28s linear infinite;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.marquee-track span {
  padding: 0 2rem;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.section {
  padding: 48px 4vw;
  position: relative;
  border-bottom: 1px solid var(--border);
}

.section-head {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin: 0 0 1rem;
  color: var(--text);
  max-width: 22ch;
}

.section p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 1rem;
  max-width: 68ch;
}

.offers-section {
  background-image:
    linear-gradient(180deg, rgba(1, 11, 19, 0.82), rgba(4, 28, 44, 0.9)),
    url("/images/offers_bg/offers_bg.webp");
  background-size: cover;
  background-position: center;
  border-top: 3px solid var(--accent);
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.offer-card {
  background: #ffffff;
  color: #111;
  border: 3px solid #111;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 10px 10px 0 #000;
  text-decoration: none;
  transition: transform 0.2s ease;
  min-width: 0;
  overflow: hidden;
}

.offer-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 13px 13px 0 #000;
}

.offer-logo {
  width: 200px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #f5f5f5;
  border: 1px solid #ddd;
  padding: 8px;
  margin: 0 auto;
  box-sizing: border-box;
}

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

.offer-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0;
  color: #111;
  text-transform: uppercase;
}

.offer-bonus {
  font-family: var(--font-serif);
  font-size: clamp(0.85rem, 2.4vw, 1.05rem);
  margin: 0;
  color: #0a3d62;
  font-weight: 700;
  overflow-wrap: anywhere;
  word-break: break-word;
  line-height: 1.35;
  max-width: 100%;
}

.offer-terms {
  font-size: 11px;
  color: #666;
  margin: 0;
  line-height: 1.35;
}

.offer-desc {
  font-size: 12px;
  color: #555;
  margin: 0;
  line-height: 1.4;
}

.offer-cta {
  margin-top: auto;
  display: inline-block;
  background: #ee6c4d;
  color: #fff;
  text-align: center;
  padding: 10px 14px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 14px;
  border: 2px solid #111;
  text-decoration: none;
}

.info-layout-a {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.info-layout-b {
  max-width: 900px;
  margin: 0 auto;
  border-left: 4px solid var(--accent);
  padding-left: 24px;
}

.info-layout-c {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px dashed var(--muted);
  padding: 28px;
}

.info-layout-d {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.info-num {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--accent);
  line-height: 1;
  border-right: 2px solid var(--border);
  padding-right: 12px;
}

.info-layout-e {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}

.info-card-mini {
  border: 1px solid var(--border);
  background: rgba(4, 28, 44, 0.7);
  padding: 16px;
}

.info-card-mini h3 {
  font-family: var(--font-serif);
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.info-layout-f {
  max-width: 980px;
  margin: 0 auto;
  transform: rotate(0.5deg);
  border: 2px solid var(--primary);
  padding: 32px 24px;
  background:
    linear-gradient(135deg, rgba(61, 90, 128, 0.2), transparent 60%),
    var(--surface);
}

.info-layout-g {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 24px;
  align-items: center;
}

.decor-frame {
  max-width: 500px;
  max-height: 320px;
  overflow: hidden;
  border: 2px solid var(--text);
  box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.5);
}

.decor-frame img {
  display: block;
  width: 100%;
  max-width: 500px;
  max-height: 320px;
  object-fit: cover;
}

.info-layout-h {
  max-width: 860px;
  margin: 0 auto;
  text-align: left;
  padding: 20px;
  background-image: linear-gradient(90deg, var(--surface), transparent);
}

.info-layout-h .pull {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--text);
  border-top: 3px solid var(--accent);
  padding-top: 12px;
  margin: 18px 0;
}

.info-layout-i {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
}

.info-layout-i .copy {
  flex: 1 1 320px;
}

.info-layout-i .rail {
  flex: 0 1 280px;
  min-height: 180px;
  max-width: 100%;
  background-size: cover;
  background-position: center;
  border: 2px solid var(--border);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.45);
}

.info-layout-j {
  max-width: 1000px;
  margin: 0 auto;
  columns: 1;
}

.info-layout-j ul {
  columns: 2;
  gap: 24px;
  padding-left: 1.2rem;
  color: var(--muted);
}

.info-cta {
  display: inline-block;
  margin-top: 18px;
  padding: 12px 18px;
  background: var(--primary);
  color: var(--text);
  text-decoration: none;
  border: 2px solid var(--text);
  font-family: var(--font-sans);
  font-weight: 700;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease;
}

.info-cta:hover {
  transform: translate(-2px, -2px);
  color: var(--text);
}

.site-footer {
  position: relative;
  z-index: 1;
  background: var(--secondary);
  border-top: 2px solid var(--border);
  padding: 40px 4vw 32px;
  color: var(--muted);
  margin-top: auto;
  width: 100%;
  flex-shrink: 0;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
}

.footer-brand img {
  width: 36px;
  height: 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
  max-width: 1100px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a {
  color: var(--muted);
  text-decoration: underline;
  font-size: 0.95rem;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin: 24px 0;
}

.footer-badges a,
.footer-badges span {
  display: inline-flex;
  align-items: center;
}

.footer-badges img {
  height: 42px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
}

.footer-legal {
  font-size: 0.85rem;
  line-height: 1.55;
  max-width: 80ch;
}

.footer-company {
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--muted);
}

.updated {
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--muted);
}

.age-gate {
  position: fixed;
  inset: 0;
  background: rgba(1, 11, 19, 0.92);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.age-gate.active {
  display: flex;
}

.age-gate-box {
  background: var(--surface);
  border: 2px solid var(--text);
  padding: 28px 24px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.5);
}

.age-gate-box h2 {
  font-family: var(--font-display);
  margin: 0 0 12px;
  text-transform: uppercase;
}

.age-gate-box p {
  color: var(--muted);
  margin: 0 0 18px;
}

.age-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.age-actions button {
  font-family: var(--font-sans);
  font-weight: 700;
  padding: 10px 18px;
  border: 2px solid var(--text);
  cursor: pointer;
}

.age-actions button[data-age-gate="confirm"] {
  background: var(--accent);
  color: #fff;
}

.age-actions button[data-age-gate="decline"] {
  background: transparent;
  color: var(--text);
}

.cookie-banner {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 64px;
  z-index: 1800;
  display: none;
  max-width: 640px;
  margin: 0 auto;
  background: var(--surface);
  border: 2px solid var(--text);
  padding: 16px 18px;
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.45);
}

.cookie-banner.active {
  display: block;
}

.cookie-banner p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

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

.cookie-actions button {
  font-family: var(--font-sans);
  font-weight: 700;
  padding: 8px 14px;
  border: 2px solid var(--text);
  cursor: pointer;
}

.cookie-accept {
  background: var(--primary);
  color: var(--text);
}

.cookie-reject {
  background: transparent;
  color: var(--text);
}

.page-hero {
  padding: 40px 4vw 24px;
  border-bottom: 2px solid var(--border);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  text-transform: uppercase;
  margin: 0;
  max-width: 18ch;
}

.page-content {
  padding: 32px 4vw 48px;
  max-width: 900px;
  margin: 0 auto;
}

.page-content h2 {
  font-family: var(--font-serif);
  margin-top: 1.8rem;
  color: var(--text);
}

.page-content p,
.page-content li {
  color: var(--muted);
  line-height: 1.65;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
  max-width: 520px;
  border: 2px solid var(--border);
  padding: 20px;
  background: var(--surface);
}

.contact-form label {
  font-size: 0.9rem;
  color: var(--text);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-form input,
.contact-form textarea {
  background: var(--bg);
  border: 1px solid var(--muted);
  color: var(--text);
  padding: 10px 12px;
  font-family: var(--font-sans);
  font-size: 1rem;
}

.contact-form button {
  align-self: flex-start;
  background: var(--accent);
  color: #fff;
  border: 2px solid var(--text);
  padding: 10px 18px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-sans);
}

.form-error {
  color: var(--accent);
  font-size: 0.85rem;
  display: none;
}

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

.form-success {
  display: none;
  padding: 20px;
  border: 2px solid var(--primary);
  background: var(--surface);
  color: var(--text);
  margin-top: 20px;
}

.form-success.visible {
  display: block;
}

.topic-hero {
  padding: 48px 4vw;
  background: var(--surface);
  border-bottom: 3px solid var(--accent);
}

.topic-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  text-transform: uppercase;
  margin: 0;
  max-width: 16ch;
  margin-left: -1vw;
}

.topic-body {
  padding: 36px 4vw 56px;
  max-width: 1000px;
  margin: 0 auto;
}

.topic-body h2 {
  font-family: var(--font-serif);
  color: var(--text);
}

.topic-body p {
  color: var(--muted);
  line-height: 1.7;
}

.split-rail {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 28px;
  align-items: start;
}

.stat-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 28px 0;
}

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

.stat-band strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--accent);
}

.pull-quote {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--text);
  border-left: 4px solid var(--accent);
  padding: 8px 0 8px 18px;
  margin: 24px 0;
}

.bg-band {
  min-height: 180px;
  margin: 28px 0;
  background-size: cover;
  background-position: center;
  border: 2px solid var(--text);
  box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.5);
  max-width: 100%;
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

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

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

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

.go-notes {
  margin-top: 24px;
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 480px;
}

#AD {
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}

.not-found {
  padding: 80px 4vw;
  text-align: center;
}

.not-found h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 4rem);
}

@media (max-width: 900px) {
  .info-layout-a,
  .info-layout-g,
  .split-rail {
    grid-template-columns: 1fr;
  }

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

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

  .info-num {
    border-right: none;
    border-bottom: 2px solid var(--border);
    padding-bottom: 8px;
  }

  .info-layout-j ul {
    columns: 1;
  }

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

  .stat-band {
    grid-template-columns: 1fr;
  }

  .hero-title {
    margin-left: 0;
    text-align: center;
    max-width: none;
  }

  .hero-sub {
    margin-left: 0;
    text-align: center;
    max-width: none;
  }

  .asymmetric {
    margin-left: 0;
  }

  .nav-links .nav-hide-mobile {
    display: none;
  }

  .nav-more-btn {
    display: flex;
  }
}

@media (max-width: 600px) {
  .decor-frame {
    max-width: 100%;
    max-height: 220px;
    width: 100%;
  }

  .decor-frame img {
    max-width: 100%;
    max-height: 220px;
  }

  .offer-card {
    box-shadow: 6px 6px 0 #000;
  }

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

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

  .bg-band {
    min-height: 120px;
    max-height: 180px;
    max-width: 100%;
  }

  .info-layout-i .rail {
    flex: 1 1 100%;
    max-width: 100%;
    min-height: 140px;
  }

  .section,
  .topic-body,
  .page-content,
  .hero {
    overflow-x: hidden;
  }
}

@media (max-width: 375px) {
  .offer-logo {
    width: 140px;
    height: 56px;
  }

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

  .decor-frame,
  .decor-frame img,
  .bg-band {
    max-width: 100%;
  }
}
