:root {
  --bg: #061316;
  --bg-soft: #0b2028;
  --surface: rgba(13, 37, 47, 0.78);
  --surface-strong: rgba(18, 49, 60, 0.94);
  --line: rgba(255, 255, 255, 0.12);
  --text: #f3fbff;
  --muted: #acc7cf;
  --gold: #42d3b5;
  --gold-strong: #8ff2dc;
  --navy: #0f2f3d;
  --success: #9be7c8;
  --danger: #ff9b9b;
  --radius-lg: 24px;
  --radius-md: 18px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  --max-width: 1180px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(66, 211, 181, 0.12), transparent 32rem),
    radial-gradient(circle at 80% 10%, rgba(74, 163, 255, 0.18), transparent 34rem),
    var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(100% - 32px, var(--max-width));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  top: -120px;
  left: 16px;
  z-index: 9999;
  background: var(--gold);
  color: #061316;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  background: rgba(6, 19, 22, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  letter-spacing: -0.02em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: #061316;
  background: linear-gradient(135deg, var(--gold), #c6fff1);
  box-shadow: 0 12px 36px rgba(66, 211, 181, 0.24);
}

.brand strong {
  display: block;
  font-size: 1.08rem;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-menu a {
  display: inline-flex;
  padding: 10px 11px;
  color: var(--muted);
  border-radius: 999px;
  font-size: 0.92rem;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.nav-menu a:hover,
.nav-menu a.is-active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.cart-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid rgba(66, 211, 181, 0.35);
  border-radius: 999px;
  background: rgba(66, 211, 181, 0.08);
  color: var(--text);
}

.cart-count {
  display: grid;
  place-items: center;
  min-width: 24px;
  height: 24px;
  padding-inline: 7px;
  border-radius: 999px;
  background: var(--gold);
  color: #061316;
  font-size: 0.82rem;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: grid;
  align-items: center;
  overflow: hidden;
  background-image: url('../img/hero.jpeg');
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 19, 22, .96), rgba(6, 19, 22, .74) 48%, rgba(6, 19, 22, .62)),
    radial-gradient(circle at 72% 35%, rgba(66, 211, 181, .20), transparent 30rem);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  gap: 40px;
  align-items: center;
  padding: 88px 0;
}

.hero h1,
.page-hero h1 {
  font-size: clamp(2.45rem, 5vw, 3.8rem);
  line-height: .98;
  letter-spacing: -0.065em;
  margin: 16px 0 22px;
}

.hero p,
.page-hero p,
.section-heading p {
  color: var(--muted);
  font-size: 1.1rem;
}

.hero-copy {
  max-width: 800px;
}

.hero-actions,
.card-actions,
.form-actions,
.toolbar-actions,
.cookie-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.eyebrow,
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-strong);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
  font-weight: 800;
}

.badge {
  padding: 8px 11px;
  border-radius: 999px;
  border: 1px solid rgba(66, 211, 181, .35);
  background: rgba(66, 211, 181, .1);
  text-transform: none;
  letter-spacing: 0;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-strip span,
.info-stack div,
.rules-box {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .06);
  border-radius: 999px;
  padding: 9px 13px;
  color: var(--muted);
}

.hero-panel,
.panel,
.draw-card,
.mini-card,
.cart-item {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.hero-panel {
  padding: 28px;
}

.hero-panel h2 {
  margin-top: 14px;
  font-size: 1.6rem;
  line-height: 1.1;
}

.section {
  padding: 86px 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, .01));
  border-block: 1px solid var(--line);
}

.section-heading {
  margin-bottom: 34px;
}

.section-heading h2,
.split h2,
.panel h2,
.cart-toolbar h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
  margin: 10px 0 12px;
}

.cards-grid {
  display: grid;
  gap: 22px;
}

.cards-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.draw-card {
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.draw-card:hover,
.mini-card:hover,
.panel:hover,
.cart-item:hover {
  transform: translateY(-4px);
  border-color: rgba(66, 211, 181, .35);
}

.draw-card img {
  width: 100%;  
  background: #fff;
}

.card-body {
  padding: 22px;
}

.card-body>i,
.mini-card>i,
.panel h2 i {
  color: var(--gold-strong);
  font-size: 1.5rem;
}

.card-body h3,
.mini-card h3 {
  font-size: 1.4rem;
  margin: 12px 0 6px;
}

.card-body p,
.mini-card p,
.panel p,
.cart-item p,
.legal-content p {
  color: var(--muted);
}

.mini-card {
  padding: 24px;
  transition: transform .25s ease, border-color .25s ease;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: center;
}

.info-stack {
  display: grid;
  gap: 14px;
}

.info-stack div {
  border-radius: var(--radius-md);
  display: grid;
  gap: 4px;
}

.info-stack strong {
  color: var(--text);
  font-size: 1.08rem;
}

.page-hero {
  position: relative;
  padding: 92px 0 72px;
  background:
    linear-gradient(135deg, rgba(10, 38, 48, .96), rgba(6, 19, 22, .92)),
    url('../img/hero.jpeg') center/cover;
  border-bottom: 1px solid var(--line);
}

.page-hero.compact h1 {
  max-width: 920px;
}

.page-hero.compact p {
  max-width: 760px;
}

.panel {
  padding: 28px;
  transition: transform .25s ease, border-color .25s ease;
}

.contact-grid,
.ticket-layout {
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr);
  gap: 26px;
  align-items: start;
}

.ticket-layout {
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, .8fr);
}

.form-card {
  display: grid;
  gap: 16px;
}

.form-card label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-weight: 700;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 14px;
  background: rgba(255, 255, 255, .06);
  color: var(--text);
  padding: 12px 13px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.form-card select option {
  color: #061316;
}

.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(66, 211, 181, .14);
}

.form-row.two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.check {
  display: flex !important;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px !important;
  font-weight: 600 !important;
  color: var(--muted) !important;
}

.check input {
  width: auto;
}

.rules-box {
  border-radius: var(--radius-md);
}

.ticket-fields {
  display: grid;
  gap: 16px;
}

.ticket-box {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .04);
}

.ticket-box h3 {
  margin: 0 0 14px;
}

.number-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(92px, 1fr));
  gap: 10px;
}

.number-grid label {
  font-size: .86rem;
  color: var(--muted);
}

.auth-section {
  display: grid;
  place-items: center;
}

.auth-card {
  width: min(100% - 32px, 540px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #c6fff1);
  color: #061316;
  box-shadow: 0 16px 36px rgba(66, 211, 181, .22);
}

.btn-secondary {
  background: rgba(255, 255, 255, .08);
  border-color: var(--line);
  color: var(--text);
}
.remove-item {
  height: 40px;
}
.btn-ghost {
  border-color: rgba(66, 211, 181, .28);
  color: var(--gold-strong);
  background: transparent;
}

.btn-small {
  min-height: 36px;
  padding: 8px 12px;
  font-size: .9rem;
}

.feature-list,
.legal-list,
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.feature-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
}

.feature-list i {
  color: var(--gold-strong);
  margin-top: 4px;
}

.notice {
  border-left: 4px solid var(--gold);
  background: rgba(66, 211, 181, .08);
  border-radius: 12px;
  padding: 13px 14px;
}

.muted {
  color: var(--muted);
}

.cart-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 22px;
}

.cart-list {
  display: grid;
  gap: 16px;
}

.cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  padding: 20px;
  transition: transform .25s ease, border-color .25s ease;
}

.cart-item h3 {
  margin: 0 0 8px;
}

.number-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  margin: 4px 4px 4px 0;
  border: 1px solid rgba(66, 211, 181, .28);
  border-radius: 999px;
  background: rgba(66, 211, 181, .09);
  color: var(--text);
  font-weight: 800;
}

.empty-state {
  text-align: center;
  padding: 44px;
}

.site-footer {
  padding: 58px 0 26px;
  border-top: 1px solid var(--line);
  background: rgba(4, 14, 17, .8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr .8fr;
  gap: 26px;
}

.footer-brand {
  font-weight: 900;
  font-size: 1.1rem;
}

.site-footer h2 {
  font-size: 1rem;
  margin: 0 0 14px;
}

.site-footer p,
.site-footer li {
  color: var(--muted);
  font-size: .95rem;
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 20px;
  justify-content: space-between;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 200;
  display: none;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(7, 24, 28, .95);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.cookie-banner.is-visible {
  display: grid;
}

.cookie-banner p {
  margin: 4px 0 0;
  color: var(--muted);
}

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

.cookie-custom {
  grid-column: 1 / -1;
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  color: var(--muted);
}

.toast {
  position: fixed;
  top: calc(var(--header-height) + 18px);
  right: 18px;
  z-index: 300;
  max-width: min(420px, calc(100% - 36px));
  padding: 14px 16px;
  border: 1px solid rgba(66, 211, 181, .38);
  border-radius: 16px;
  background: rgba(7, 29, 35, .96);
  color: var(--text);
  box-shadow: var(--shadow);
  transform: translateY(-14px);
  opacity: 0;
  pointer-events: none;
  transition: transform .25s ease, opacity .25s ease;
}

.toast.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.reveal {
  animation: fadeUp .7s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1060px) {
  .header-inner {
    grid-template-columns: auto auto auto;
    justify-content: space-between;
  }

  .site-nav {
    order: 3;
  }

  .nav-toggle {
    display: grid;
    gap: 5px;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, .06);
  }

  .nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text);
    border-radius: 999px;
  }

  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(6, 19, 22, .98);
    box-shadow: var(--shadow);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a {
    justify-content: center;
  }

  .hero-content,
  .split,
  .contact-grid,
  .ticket-layout {
    grid-template-columns: 1fr;
  }

  .cards-grid.three,
  .cards-grid.two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 72px;
  }

  .container {
    width: min(100% - 22px, var(--max-width));
  }

  .brand small,
  .cart-button span {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 64px 0;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.2rem, 14vw, 3.6rem);
  }

  .section {
    padding: 58px 0;
  }

  .cards-grid.three,
  .cards-grid.two,
  .footer-grid,
  .form-row.two {
    grid-template-columns: 1fr;
  }

  .cart-toolbar,
  .cart-item,
  .footer-bottom {
    grid-template-columns: 1fr;
    display: grid;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
  }

  .toolbar-actions,
  .cookie-actions {
    justify-content: stretch;
  }

  .btn {
    width: 100%;
  }

  .card-actions .btn {
    width: auto;
    flex: 1 1 180px;
  }
}


/* Age verification gate */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background:
    radial-gradient(circle at 20% 10%, rgba(66, 211, 181, .18), transparent 32rem),
    radial-gradient(circle at 80% 10%, rgba(42, 143, 179, .28), transparent 30rem),
    rgba(4, 14, 17, .88);
  backdrop-filter: blur(18px);
}

.age-gate.is-visible {
  display: flex;
}

.age-gate-card {
  width: min(100%, 620px);
  border: 1px solid rgba(66, 211, 181, .28);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(13, 37, 47, .96), rgba(8, 13, 26, .98));
  box-shadow: 0 34px 110px rgba(0, 0, 0, .58);
  padding: clamp(24px, 5vw, 42px);
  text-align: center;
  outline: none;
}

.age-gate-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: var(--gold-strong);
  background: rgba(66, 211, 181, .12);
  border: 1px solid rgba(66, 211, 181, .26);
  font-size: 1.8rem;
}

.age-gate-card h2 {
  margin: 10px 0 14px;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1;
  letter-spacing: -.045em;
}

.age-gate-card p {
  color: var(--muted);
}

.age-gate-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 22px;
}

.age-gate-small {
  font-size: .9rem;
  margin-top: 18px;
}

/* Long legal/editorial pages */
.legal-longform {
  max-width: 980px;
}

.legal-longform h2 {
  margin-top: 34px;
  padding-top: 6px;
}

.legal-longform h2:first-of-type {
  margin-top: 12px;
}

.legal-longform p {
  font-size: 1.02rem;
}

.legal-longform .feature-list {
  margin: 18px 0 26px;
}

.cookie-custom-inline {
  display: none;
  margin: 18px 0 26px;
  padding: 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .04);
}

.cookie-custom-inline.is-open {
  display: grid;
  gap: 12px;
}

.responsible-intro {
  text-align: left;
}

@media (max-width: 640px) {
  .age-gate-card {
    text-align: left;
  }

  .age-gate-icon {
    margin-inline: 0;
  }

  .age-gate-actions {
    justify-content: stretch;
  }

  .age-gate-actions .btn {
    width: 100%;
    justify-content: center;
  }
}


/* Mobile refinement: age gate behaves like a dismissible bottom sheet after confirmation */
body.age-gate-open {
  overflow: hidden;
}

.age-gate {
  overscroll-behavior: contain;
}

.age-gate-card {
  max-height: calc(100dvh - 48px);
  overflow-y: auto;
}

@media (max-width: 640px) {
  .age-gate {
    align-items: flex-end;
    padding: 12px;
  }

  .age-gate-card {
    width: 100%;
    max-height: min(82dvh, 620px);
    border-radius: 24px 24px 18px 18px;
    padding: 22px;
  }

  .age-gate-card h2 {
    font-size: 1.8rem;
  }

  .age-gate-card p {
    font-size: .96rem;
  }
}

/* Footer imported from reference site and adapted for Frenchtirages */
.site-footer-compliance {
  background: linear-gradient(180deg, #03101f 0%, #071934 100%);
  color: rgba(255, 255, 255, 0.88);
  padding: clamp(34px, 5vw, 52px) 0 24px; 
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 18px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto 24px;
}

.footer-logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 76px;
  padding: 8px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.footer-logo-link:hover,
.footer-logo-link:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.28);
  border-color: rgba(255, 255, 255, 0.22);
}

.footer-logo-link img {
  width: 100%;
  max-width: 260px;
  max-height: 50px;
  height: auto;
  display: block;
  object-fit: contain;
}

.footer-compliance-text {
  text-align: center;
  max-width: 1000px;
  margin: 10px auto 0;
  display: grid;
  gap: 10px;
  padding-inline: clamp(0px, 4vw, 40px);
}

.footer-compliance-text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1rem;
  line-height: 1.65;
}

.footer-compliance-text a,
.footer-operator-box a,
.footer-bottom-links a {
  color: #ffffff;
}

.footer-alert {
  color: #ff5f5f !important;
  font-weight: 800;
  font-size: 1.18rem !important;
}

.footer-operator-box {
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  display: grid;
  gap: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  overflow-wrap: anywhere;
}

.footer-operator-box p {
  margin: 0;
  line-height: 1.7;
}

.footer-bottom-centered {
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.78);
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
}

.footer-bottom-links a {
  font-weight: 750;
}

@media (max-width: 1100px) {
  .footer-logo-row {
    grid-template-columns: repeat(3, minmax(120px, 1fr));
  }
}

@media (max-width: 760px) {
  .footer-logo-row {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
  }

  .footer-bottom-centered {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
  }
}

@media (max-width: 520px) {
  .footer-logo-row {
    grid-template-columns: 1fr;
  }

  .footer-compliance-text p,
  .footer-operator-box {
    font-size: 0.92rem;
  }
}