/* ManitobaWins — Pure CSS */

:root {
  --color-bg: #07031a;
  --color-alert-bg: #0b0722;
  --color-alert-border: #2a326b;
  --color-accent: #1ab2e9;
  --color-card: #202056;
  --color-card-border: rgba(26, 178, 233, 0.15);
  --color-game-grid: #40408c;
  --color-panel: rgba(10, 7, 60, 0.4);
  --color-form-bg: #0b0722;
  --color-input-bg: #161033;
  --color-input-border: #313a58;
  --color-form-text: #e5e7eb;
  --max-width: 1440px;
  --padding-desktop: clamp(16px, 10.42vw, 150px);
  --padding-mobile: 16px;
  --font-family: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  background-color: var(--color-bg);
  color: #fff;
  line-height: normal;
  overflow-x: hidden;
}

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

main {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: disc;
  padding-left: 1.5em;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-color: var(--color-bg);
  pointer-events: none;
}

.page-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.page-bg--legal img {
  opacity: 0.3;
}

.page-bg--mobile {
  display: none;
}

/* Alert */
.alert {
  background: var(--color-alert-bg);
  border-bottom: 1px solid var(--color-alert-border);
  padding: 10px var(--padding-desktop);
  text-align: center;
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}

.alert p {
  font-size: 13px;
  font-weight: 400;
  color: #fff;
  word-break: break-word;
}

/* Header */
.header {
  padding: 10px var(--padding-desktop);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 100;
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}

.logo {
  width: min(229px, 45vw);
  height: auto;
  aspect-ratio: 229 / 65;
  flex-shrink: 0;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav a {
  font-size: 13px;
  font-weight: 400;
  color: #fff;
  white-space: nowrap;
  padding: 0 12px;
  transition: color 0.2s;
}

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

.hamburger {
  display: none;
  width: 24px;
  height: 24px;
  background: none;
  border: none;
  padding: 0;
}

.hamburger img {
  width: 100%;
  height: 100%;
}

/* Hero */
.hero {
  padding: 10px var(--padding-desktop) 30px;
  min-height: clamp(420px, 50vw, 595px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at center, rgba(21, 14, 85, 1) 0%, rgba(6, 4, 37, 0) 100%);
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}

.hero > :not(.hero-planet):not(.hero-satellite) {
  position: relative;
  z-index: 1;
}

.hero-badge {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-accent);
  text-align: center;
  width: 100%;
}

.hero-title {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  width: 100%;
}

.hero-subtitle {
  font-size: 15px;
  font-weight: 400;
  text-align: center;
  width: 100%;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent);
  border: 2px solid var(--color-accent);
  border-radius: 100px;
  padding: 15px 30px;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-bg);
  transition: opacity 0.2s;
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-primary--full {
  width: 100%;
}

.hero-disclaimer {
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  width: 100%;
}

.hero-disclaimer p {
  margin-bottom: 0;
}

.hero-planet {
  position: absolute;
  left: clamp(8px, 10vw, 156.69px);
  top: auto;
  bottom: clamp(10px, 8vw, 40px);
  width: clamp(100px, 22vw, 332px);
  height: auto;
  aspect-ratio: 332 / 268;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.hero-planet img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  animation: planetFloat 4s ease-in-out infinite;
}

.hero-satellite {
  position: absolute;
  right: clamp(8px, 9vw, 146.95px);
  top: clamp(120px, 28vw, 222.53px);
  width: clamp(80px, 16vw, 242px);
  height: auto;
  aspect-ratio: 242 / 248;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.hero-satellite img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  animation: satelliteFloat 4s ease-in-out infinite;
}

@keyframes planetFloat {
  0%, 100% { transform: rotate(-10.01deg) translateY(0px); }
  50% { transform: rotate(-10.01deg) translateY(-18px); }
}

@keyframes satelliteFloat {
  0%, 100% { transform: scaleY(-1) rotate(123.35deg) translateY(0px); }
  50% { transform: scaleY(-1) rotate(123.35deg) translateY(-12px); }
}

/* Sections */
.section {
  padding: 70px var(--padding-desktop);
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  width: 100%;
}

.section-title--left {
  text-align: left;
}

.section-subtitle {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  width: 100%;
}

/* Cards grid */
.cards-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.feature-card {
  background: var(--color-card);
  border: 1px solid var(--color-card-border);
  border-radius: 30px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 1 1 280px;
  max-width: 367px;
  min-width: 0;
  min-height: 211px;
  transition: border 0.3s, background 0.3s;
}

.feature-card:hover {
  border: 2px solid var(--color-accent);
  background: radial-gradient(ellipse at 27% 29%, rgba(32, 32, 86, 1) 0%, rgba(47, 47, 132, 1) 50%, rgba(61, 61, 179, 1) 100%);
}

.feature-card__emoji {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
}

.feature-card__title {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  width: 100%;
}

.feature-card__text {
  font-size: 15px;
  font-weight: 400;
  text-align: center;
  width: 100%;
}

.card-divider {
  width: 100%;
  height: 1px;
  object-fit: cover;
}

/* Team */
.team-grid {
  display: flex;
  gap: 20px;
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
}

.team-card {
  background: var(--color-card);
  border: 1px solid var(--color-card-border);
  border-radius: 30px;
  padding: 20px;
  flex: 1 1 200px;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.team-card__avatar {
  width: min(135px, 30vw);
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
}

.team-card__name {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  width: 100%;
}

/* Cosmic Shifting */
.cosmic-section {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 70px var(--padding-desktop);
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}

.cosmic-panel {
  background: var(--color-panel);
  border-radius: 20px;
  padding: 20px;
  flex: 1 1 320px;
  max-width: 550px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.cosmic-panel__title {
  font-size: 36px;
  font-weight: 700;
}

.cosmic-panel__text {
  font-size: 15px;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cosmic-panel__text p {
  margin: 0;
}

.cosmic-panel__subtitle {
  font-size: 20px;
  font-weight: 700;
}

.cosmic-image {
  flex: 1 1 320px;
  max-width: 560px;
  width: 100%;
  height: auto;
  aspect-ratio: 560 / 578;
  border-radius: 30px;
  object-fit: cover;
}

/* Game cards */
.games-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
  justify-content: center;
}

.game-card {
  background: var(--color-card);
  border: 1px solid var(--color-card-border);
  border-radius: 30px;
  padding: 20px;
  flex: 1 1 320px;
  max-width: 560px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.game-card__preview {
  width: 100%;
  height: auto;
  aspect-ratio: 520 / 253;
  border-radius: 10px;
  object-fit: cover;
}

.game-card__title {
  font-size: 20px;
  font-weight: 700;
}

.game-card__desc {
  font-size: 15px;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.game-card__desc p {
  margin: 0;
}

.game-card__desc span.regular {
  font-weight: 400;
}

.game-grid {
  background: var(--color-game-grid);
  border-radius: 10px;
  padding: clamp(16px, 4vw, 30px) clamp(16px, 5vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  overflow: hidden;
}

.game-grid__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: clamp(28px, 7vw, 64px);
  font-weight: 700;
  text-align: center;
  gap: 8px;
}

.game-grid__row--win {
  background: var(--color-accent);
}

.game-grid__row--win.is-winning {
  box-shadow: 0 0 20px rgba(26, 178, 233, 0.6);
}

.slot-cell {
  flex: 1 1 0;
  min-width: 0;
  max-width: 94px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.slot-cell.is-spinning {
  opacity: 0.65;
  filter: blur(1px);
}

.game-grid__divider {
  width: 100%;
  height: 1px;
  object-fit: cover;
}

.match-board {
  gap: 10px;
}

.match-board .game-grid__row {
  justify-content: space-between;
}

.match-cell {
  flex: 1 1 0;
  min-width: 0;
  max-width: 94px;
  aspect-ratio: 94 / 80;
  height: auto;
  border-radius: 10px;
  background: var(--color-card);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(28px, 7vw, 64px);
  font-weight: 700;
  cursor: pointer;
  user-select: none;
  transition: background 0.2s ease, transform 0.15s ease;
  color: inherit;
  font-family: inherit;
}

.match-cell:hover:not(.match-cell--revealed):not(.match-cell--matched):not(.match-cell--center):not(:disabled) {
  transform: scale(1.03);
}

.match-cell--revealed,
.match-cell--matched {
  background: transparent;
  cursor: default;
}

.match-cell--matched {
  opacity: 0.85;
}

.match-cell--center {
  background: transparent;
  cursor: default;
  pointer-events: none;
}

.match-cell:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.game-card__message {
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  min-height: 1.2em;
  margin: 0;
  color: var(--color-accent);
}

.game-card__message.is-win {
  color: #7ee8ff;
}

.game-card__message.is-lose {
  color: #e5e7eb;
  opacity: 0.8;
}

.btn-primary:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.game-card__disclaimer {
  font-size: 15px;
  font-weight: 400;
  text-align: center;
}

/* Full game previews */
.game-full {
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 1140 / 644;
  border-radius: 30px;
  object-fit: cover;
}

/* How it works */
.how-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
}

.how-card {
  background: var(--color-card);
  border-bottom: 2px solid var(--color-accent);
  border-radius: 30px 30px 0 0;
  padding: 20px;
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}

.how-card__title {
  font-size: 20px;
  font-weight: 700;
}

.how-card__text {
  font-size: 15px;
  font-weight: 400;
}

/* Important panel */
.important-panel {
  background: var(--color-panel);
  border-radius: 20px;
  padding: 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.important-panel__title {
  font-size: 36px;
  font-weight: 700;
}

.important-panel__text {
  font-size: 15px;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.important-panel__text p {
  margin: 0;
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  width: 100%;
  justify-content: center;
}

.faq-card {
  background: var(--color-card);
  border-left: 1px solid var(--color-accent);
  border-radius: 0 30px 30px 0;
  padding: 20px;
  flex: 1 1 320px;
  max-width: 560px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-card__title {
  font-size: 20px;
  font-weight: 700;
}

.faq-card__text {
  font-size: 15px;
  font-weight: 400;
}

/* Footer */
.footer {
  background: var(--color-bg);
  padding: 70px 0;
  width: 100%;
}

.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--padding-desktop);
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.footer__info {
  font-size: 15px;
  font-weight: 400;
  text-align: left;
  width: 100%;
}

.footer__info p {
  margin-bottom: 0;
}

.bold {
  font-weight: 700;
}

.regular {
  font-weight: 400;
}

.footer__info .bold {
  font-weight: 700;
}

.footer__links {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer__links a {
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}

.footer__links a:hover {
  color: var(--color-accent);
}

.footer__helpline {
  font-size: 15px;
  text-align: center;
  width: 100%;
}

.footer__helpline a {
  font-weight: 700;
  text-decoration: underline;
  color: #fff;
}

.footer__help-title {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  width: 100%;
}

.footer__help-links {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer__help-links a {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-accent);
  text-decoration: underline;
}

.footer__divider {
  width: 100%;
  height: 1px;
  object-fit: cover;
}

.footer__legal {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  width: 100%;
}

.footer__age {
  font-size: 24px;
  font-weight: 700;
  flex-shrink: 0;
}

.footer__legal-text {
  font-size: 15px;
  font-weight: 400;
  max-width: 673px;
}

.footer__legal-text p {
  margin-bottom: 0;
}

/* Contact page */
.contact-hero {
  padding: 70px var(--padding-desktop);
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}

.contact-hero__title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  width: 100%;
}

.contact-layout {
  display: flex;
  gap: 20px;
  width: 100%;
  max-width: 1152px;
  flex-wrap: wrap;
}

.contact-form-wrap {
  background: var(--color-form-bg);
  border-radius: 12px;
  padding: 24px;
  flex: 1 1 320px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form-wrap__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-form-text);
}

.contact-form-wrap form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.form-group label {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-form-text);
}

.form-group input,
.form-group textarea {
  background: var(--color-input-bg);
  border: 1px solid var(--color-input-border);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 16px;
  font-family: inherit;
  color: var(--color-form-text);
  width: 100%;
}

.form-group input {
  height: 44px;
}

.form-group textarea {
  height: 121px;
  resize: vertical;
}

.form-consent {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.form-consent input[type="checkbox"] {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  margin-top: 4px;
  accent-color: var(--color-accent);
}

.form-consent label {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-form-text);
  flex: 1;
}

.contact-sidebar {
  background: var(--color-form-bg);
  border-radius: 30px;
  padding: 24px;
  flex: 1 1 280px;
  max-width: 367px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.contact-sidebar__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-form-text);
}

.contact-sidebar__text {
  font-size: 20px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-sidebar__text p {
  margin: 0;
}

.contact-sidebar__text span.regular {
  font-weight: 400;
}

/* Legal pages */
.legal-content {
  padding: 70px var(--padding-desktop);
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}

.legal-content__title {
  font-size: 36px;
  font-weight: 700;
}

.legal-content__date {
  font-size: 15px;
  font-weight: 700;
}

.legal-content__body {
  font-size: 15px;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.legal-content__body p,
.legal-content__body h2,
.legal-content__body ul {
  margin: 0;
}

.legal-content__body h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

.legal-content__body p {
  margin-bottom: 0;
}

.legal-content__body ul {
  margin-bottom: 0;
}

/* Age Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 3, 26, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 16px;
}

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

.modal {
  background: var(--color-alert-bg);
  border: 1px solid rgba(26, 178, 233, 0.05);
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15.3px;
  max-width: 480px;
  width: 100%;
}

.modal__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-form-text);
  text-align: center;
}

.modal__text {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  text-align: center;
}

.modal__text p {
  margin-bottom: 0;
}

.modal__buttons {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.modal__btn-yes {
  background: var(--color-accent);
  border: 2px solid transparent;
  border-radius: 100px;
  padding: 14px 26px;
  font-size: 13.1px;
  font-weight: 700;
  color: var(--color-alert-bg);
}

.modal__btn-no {
  background: transparent;
  border: 2px solid var(--color-accent);
  border-radius: 100px;
  padding: 14px 26px;
  font-size: 13.1px;
  font-weight: 700;
  color: var(--color-accent);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(7, 3, 26, 0.97);
  z-index: 9999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 16px;
}

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

.mobile-nav a {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
}

.mobile-nav__close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 28px;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-title {
    font-size: clamp(28px, 5vw, 40px);
  }

  .cosmic-panel__title,
  .important-panel__title,
  .section-title {
    font-size: clamp(28px, 4.5vw, 36px);
  }
}

@media (max-width: 830px) {
  .nav {
    display: none;
  }

  .hamburger {
    display: block;
  }
}

@media (max-width: 768px) {
  .page-bg--desktop {
    display: none;
  }

  .page-bg--mobile {
    display: block;
  }

  .alert {
    padding: 10px var(--padding-mobile);
  }

  .header {
    padding: 10px var(--padding-mobile);
  }

  .hero {
    padding: 30px var(--padding-mobile);
    min-height: auto;
    padding-bottom: clamp(120px, 30vw, 180px);
  }

  .hero-planet {
    left: 4px;
    bottom: 0;
    width: clamp(90px, 28vw, 140px);
  }

  .hero-satellite {
    right: 4px;
    top: auto;
    bottom: 20%;
    width: clamp(70px, 22vw, 110px);
  }

  .hero-title {
    font-size: 28px;
  }

  .section {
    padding: 40px var(--padding-mobile);
  }

  .section-title {
    font-size: 28px;
  }

  .feature-card,
  .game-card,
  .faq-card,
  .team-card,
  .contact-sidebar {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .team-grid,
  .games-grid,
  .how-grid,
  .faq-grid,
  .cards-row {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .cosmic-section {
    flex-direction: column;
    padding: 40px var(--padding-mobile);
  }

  .cosmic-panel,
  .cosmic-image {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .game-full {
    height: auto;
    aspect-ratio: 1140 / 644;
  }

  .footer {
    padding: 40px 0;
  }

  .footer__inner {
    padding: 0 var(--padding-mobile);
  }

  .footer__legal {
    flex-direction: column;
    text-align: center;
  }

  .footer__legal-text {
    max-width: 100%;
  }

  .footer__help-links {
    flex-direction: column;
    align-items: center;
  }

  .contact-hero {
    padding: 40px var(--padding-mobile);
  }

  .contact-layout {
    flex-direction: column;
  }

  .contact-sidebar {
    width: 100%;
  }

  .legal-content {
    padding: 40px var(--padding-mobile);
  }

  .modal__text {
    white-space: normal;
  }
}
