/* The kingdom look (design/art-bible.md): dusk violet, bronze trim, gold
   accents, cream type, a leaf-green main action, parchment for the rules. */
@font-face {
  font-family: "Lilita One";
  src: url("/assets/fonts/LilitaOne-Regular.ttf") format("truetype");
  /* One face for every weight: headings asking for 900 would otherwise get a
     smeared synthetic bold. */
  font-weight: 100 900;
  font-display: swap;
}
:root {
  --night: #1b1030;
  --panel: #2a1b45;
  --raised: #3b2763;
  --bronze: #8c6a34;
  --gold: #f2c75c;
  --leaf: #94d65a;
  --leaf-dark: #5e9a34;
  --cream: #fff6e0;
  --lavender: #d9ccee;
  --parchment: #f6e9c8;
  --brown: #3a1d08;
  --ink: var(--night);
  --paper: var(--cream);
  --lime: var(--leaf);
  --muted: var(--lavender);
  --line: #4a3670;
  --purple: #b9a2ec;
  --orange: #ff8a76;
  --font:
    "Lilita One", ui-rounded, "Arial Rounded MT Bold", system-ui, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}
body {
  margin: 0;
  background: var(--night);
  color: var(--cream);
  font-family:
    "Nunito",
    ui-rounded,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.55;
}
a {
  color: inherit;
}
h1,
h2,
h3,
.brand,
.button {
  font-family: var(--font);
}
button {
  font: inherit;
}
img,
video {
  display: block;
  max-width: 100%;
}
img {
  height: auto;
}
button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible,
video:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 6px;
}
::selection {
  background: var(--gold);
  color: var(--brown);
}
.wrap {
  width: min(1180px, calc(100% - 64px));
  margin-inline: auto;
}
.skip {
  position: fixed;
  top: -100px;
  left: 20px;
  background: var(--gold);
  color: var(--brown);
  padding: 12px 20px;
  z-index: 100;
}
.skip:focus {
  top: 12px;
}
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--gold);
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--bronze);
  background: #1b103099;
  padding: 7px 12px;
  border-radius: 100px;
  color: var(--gold);
}
.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 900;
  letter-spacing: 0.02em;
  font-size: 28px;
  text-decoration: none;
  line-height: 1;
}
.brand img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
}
.brand img.brand-logo {
  width: 124px;
  height: auto;
  border-radius: 0;
}
.topbar {
  background: var(--night);
  color: var(--cream);
  border-bottom: 1px solid #8c6a3459;
  position: relative;
  z-index: 4;
}
.nav {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links > a:not(.button) {
  font-size: 14px;
  text-decoration: none;
  color: var(--lavender);
  font-weight: 650;
}
.nav-links > a:hover {
  color: var(--cream);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 2px solid transparent;
  border-radius: 14px;
  background: var(--leaf);
  color: var(--night);
  text-decoration: none;
  font-size: 18px;
  letter-spacing: 0.03em;
  min-height: 56px;
  padding: 14px 24px;
  box-shadow: 0 4px 0 var(--leaf-dark);
  transition:
    transform 0.18s,
    background 0.18s,
    box-shadow 0.18s;
}
.button:hover {
  background: #a8e46e;
  transform: translateY(-2px);
  box-shadow: 0 6px 0 var(--leaf-dark);
}
.button.small {
  min-height: 44px;
  padding: 10px 19px;
  font-size: 14px;
  border-radius: 9px;
}
.button svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.button.outline {
  background: #1b103099;
  color: var(--gold);
  border-color: var(--gold);
  box-shadow: none;
}
.button.outline:hover {
  background: #f2c75c1a;
}
.hero {
  background:
    linear-gradient(90deg, #1b1030f2 0%, #1b1030d9 42%, #1b103066 100%),
    url("/assets/kingdom/stage.webp") center 30% / cover,
    var(--night);
  color: var(--cream);
  overflow: hidden;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 40px;
  padding-block: 60px 76px;
}
.hero h1 {
  font-size: clamp(48px, 5.5vw, 78px);
  letter-spacing: 0.01em;
  text-shadow: 0 4px 0 var(--brown);
  line-height: 1.02;
  margin: 26px 0 24px;
  font-weight: 900;
  max-width: 9ch;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold);
}
.lead {
  font-size: 18px;
  line-height: 1.7;
  color: var(--lavender);
  max-width: 440px;
  margin: 0 0 28px;
}
.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.meta {
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--lavender);
  margin: 20px 0 0;
}
.meta span {
  padding-inline: 9px;
  color: var(--bronze);
}
.rollout {
  font-size: 12px;
  color: var(--lavender);
  margin: 10px 0 0;
}
.hero-stage {
  position: relative;
  min-height: 585px;
  display: grid;
  place-items: center;
  isolation: isolate;
}
.hero-stage:before {
  content: "";
  position: absolute;
  width: 510px;
  height: 510px;
  border-radius: 50%;
  background: radial-gradient(circle, #f2c75c1f, transparent 68%);
  border: 1px solid #f2c75c2e;
  z-index: -2;
}
.hero-stage:after {
  content: "";
  position: absolute;
  width: 410px;
  height: 410px;
  border: 1px dashed #f2c75c2e;
  transform: rotate(-20deg);
  border-radius: 44px;
  z-index: -1;
}
.game-frame {
  width: 286px;
  transform: rotate(5deg);
  padding: 8px;
  background: var(--panel);
  border: 3px solid var(--bronze);
  border-radius: 28px;
  box-shadow: 0 28px 70px #0009;
  position: relative;
}
.game-frame img {
  border-radius: 19px;
  width: 100%;
  height: auto;
}
.game-caption {
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--lavender);
}
.sticker {
  position: absolute;
  filter: drop-shadow(0 12px 12px #0006);
  animation: bob 6s ease-in-out infinite;
  pointer-events: none;
}
.sticker.blaze {
  width: 152px;
  top: 27px;
  right: -3px;
  transform: rotate(15deg);
}
.sticker.sprout {
  width: 168px;
  bottom: 27px;
  left: -15px;
  animation-delay: -3s;
}
.combo-stamp {
  position: absolute;
  left: 8px;
  top: 85px;
  background: var(--parchment);
  color: var(--brown);
  border: 3px solid var(--bronze);
  box-shadow: 4px 5px 0 #0006;
  padding: 10px 18px;
  transform: rotate(-12deg);
  font-family: var(--font);
  font-size: 18px;
  line-height: 1.15;
  border-radius: 14px;
}
.combo-stamp strong {
  display: block;
  font-size: 38px;
  letter-spacing: 0.02em;
}
.vs-stamp {
  position: absolute;
  right: 12px;
  bottom: 79px;
  width: 68px;
  height: 68px;
  background: var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transform: rotate(14deg);
  font-family: var(--font);
  font-size: 27px;
  color: var(--brown);
  border: 5px solid var(--brown);
}
.ticker {
  background: var(--gold);
  color: var(--brown);
  border-block: 2px solid var(--bronze);
  padding: 16px 0;
}
.ticker .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.ticker p {
  margin: 0;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
}
.ticker i {
  font-style: normal;
  font-size: 19px;
}
.section {
  padding-block: 92px;
}
.section h2 {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 1.08;
  margin: 14px 0 20px;
}
.intro-row {
  display: flex;
  gap: 40px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 42px;
}
.intro-row p {
  max-width: 340px;
  margin: 0 0 5px;
  color: var(--lavender);
  font-size: 16px;
}
#how {
  background: var(--parchment);
  color: var(--brown);
}
#how .eyebrow,
#how .number {
  color: var(--bronze);
}
#how .intro-row p,
#how .how-card p {
  color: #6b4a2a;
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.how-card {
  padding-top: 22px;
  border-top: 2px solid var(--bronze);
  position: relative;
}
.number {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--gold);
}
.mini-tiles {
  display: flex;
  gap: 5px;
  margin: 28px 0 20px;
  min-height: 61px;
  align-items: center;
}
.mini-tiles img {
  width: 57px;
  height: 57px;
  object-fit: contain;
}
.mini-tiles .plus {
  font-size: 26px;
  font-weight: 600;
  padding-inline: 6px;
}
.how-card h3 {
  font-size: 24px;
  letter-spacing: 0.01em;
  margin: 0 0 10px;
}
.how-card p {
  font-size: 15px;
  color: var(--lavender);
  margin: 0;
  max-width: 310px;
}
.how-card .key {
  display: inline-block;
  border: 1px solid var(--bronze);
  background: #fff6e0;
  border-bottom-width: 3px;
  border-radius: 6px;
  padding: 2px 6px;
  font-size: 12px;
}
.arena {
  background: #231541;
  border-block: 1px solid #8c6a3459;
}
.battle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.battle-card {
  background: var(--panel);
  color: var(--cream);
  border: 1.5px solid var(--bronze);
  border-radius: 22px;
  display: grid;
  grid-template-columns: 1fr 46%;
  min-height: 445px;
  overflow: hidden;
  position: relative;
}
.battle-copy {
  padding: 34px 0 34px 30px;
  align-self: center;
  z-index: 1;
}
.battle-copy .eyebrow {
  color: var(--lime);
  font-size: 10px;
}
.battle-card:nth-child(2) .eyebrow {
  color: var(--gold);
}
.battle-card h3 {
  font-size: 35px;
  letter-spacing: 0.01em;
  line-height: 1.06;
  margin: 18px 0;
}
.battle-card p {
  font-size: 14px;
  color: var(--lavender);
  max-width: 190px;
}
.battle-card img {
  width: 220px;
  max-width: none;
  border: 5px solid var(--bronze);
  border-radius: 18px;
  transform: rotate(7deg);
  align-self: center;
  margin: 40px 0 -30px 12px;
  box-shadow: 0 12px 30px #0005;
}
.battle-card:nth-child(2) img {
  transform: rotate(-5deg);
}
.capture-note {
  font-size: 12px;
  color: var(--lavender);
  margin: 18px 0 0;
}
.preview {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: center;
  padding-top: 72px;
}
.preview h3 {
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: 0.01em;
  margin: 14px 0;
}
.preview p {
  color: var(--lavender);
  font-size: 15px;
  max-width: 330px;
}
.preview .game-frame {
  width: 250px;
  justify-self: center;
  transform: rotate(-4deg);
}
.text-link {
  font-weight: 800;
  color: var(--gold);
  text-underline-offset: 5px;
}
.crew {
  background: var(--panel);
  color: var(--cream);
  border-block: 1px solid #8c6a3459;
  padding: 62px 0 54px;
  overflow: hidden;
}
.crew-top {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}
.crew h2 {
  font-size: 32px;
  letter-spacing: 0.01em;
  margin: 0;
}
.crew-top p {
  font-size: 14px;
  color: var(--lavender);
  max-width: 250px;
  margin: 0;
}
.crew-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top: 35px;
}
.character {
  margin: 0;
  text-align: center;
}
.character img {
  width: 125px;
  margin: auto;
  transition: transform 0.2s;
  filter: drop-shadow(0 8px 9px #0003);
}
.character:hover img {
  transform: translateY(-9px) rotate(-5deg);
}
.character figcaption {
  font-size: 17px;
  font-family: var(--font);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream);
  margin-top: 16px;
}
.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
}
.faq-grid h2 {
  margin-top: 14px;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list summary {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  font-weight: 750;
  list-style: none;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary:after {
  content: "+";
  font-size: 26px;
  font-weight: 400;
  color: var(--gold);
}
.faq-list details[open] summary:after {
  content: "−";
}
.faq-list p {
  color: var(--lavender);
  font-size: 15px;
  margin: 0 26px 24px 0;
  max-width: 530px;
}
.endcap {
  padding: 0 0 80px;
}
.endcap-box {
  background: var(--raised);
  border: 2px solid var(--gold);
  border-radius: 24px;
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  position: relative;
  overflow: hidden;
}
.endcap h2 {
  font-size: clamp(34px, 4vw, 49px);
  letter-spacing: 0.01em;
  line-height: 1.1;
  margin: 0 0 12px;
  max-width: 12ch;
}
.endcap p {
  font-size: 15px;
  max-width: 390px;
  margin: 0;
  color: var(--lavender);
}
.endcap .button {
  white-space: nowrap;
}
.endcap .store-text {
  display: block;
  color: var(--gold);
  text-align: center;
  margin-top: 15px;
  font-size: 13px;
  font-weight: 700;
  text-underline-offset: 4px;
}
.footer {
  border-top: 1px solid #8c6a3459;
  padding: 28px 0 36px;
}
.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer .brand {
  font-size: 24px;
}
.footer-links {
  display: flex;
  gap: 24px;
  align-items: center;
  font-size: 13px;
  color: var(--lavender);
}
.footer-links a {
  text-decoration: none;
}
.footer-links a:hover {
  text-decoration: underline;
}
.copyright {
  font-size: 11px;
  color: var(--lavender);
  margin-top: 20px;
}
.mobile-play {
  display: none;
}
@keyframes bob {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -12px;
  }
}
@media (min-width: 1500px) {
  .hero-grid {
    padding-block: 75px 90px;
  }
}
@media (max-width: 1000px) {
  .wrap {
    width: calc(100% - 48px);
  }
  .hero-grid {
    gap: 12px;
  }
  .hero-stage {
    min-height: 540px;
  }
  .game-frame {
    width: 250px;
  }
  .sticker.blaze {
    width: 125px;
    right: -20px;
  }
  .sticker.sprout {
    width: 130px;
    left: -5px;
  }
  .combo-stamp {
    left: 0;
    font-size: 14px;
    padding: 9px 12px;
  }
  .combo-stamp strong {
    font-size: 31px;
  }
  .vs-stamp {
    right: -5px;
  }
  .hero h1 {
    font-size: 62px;
  }
  .hero .button {
    padding: 13px 17px;
    font-size: 14px;
  }
  .battle-card {
    min-height: 420px;
    grid-template-columns: 1fr 43%;
  }
  .battle-copy {
    padding-left: 24px;
  }
  .battle-card h3 {
    font-size: 29px;
  }
  .battle-card p {
    max-width: 170px;
  }
  .battle-card img {
    width: 195px;
    margin-left: 15px;
  }
  .preview {
    gap: 35px;
  }
  .faq-grid {
    gap: 40px;
  }
}
@media (max-width: 760px) {
  html {
    scroll-padding-top: 24px;
  }
  .wrap {
    width: calc(100% - 40px);
  }
  .nav {
    height: 74px;
  }
  .nav-links {
    gap: 12px;
  }
  .nav-links > .section-link {
    display: none;
  }
  .brand {
    font-size: 25px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    padding: 42px 0 38px;
    gap: 20px;
  }
  .hero h1 {
    font-size: clamp(54px, 10vw, 76px);
    max-width: 10ch;
    margin: 22px 0;
  }
  .hero .lead {
    font-size: 16px;
    max-width: 470px;
  }
  .hero-stage {
    min-height: 510px;
    max-width: 480px;
    width: 100%;
    margin: auto;
  }
  .game-frame {
    width: 244px;
  }
  .sticker.blaze {
    right: 12px;
    top: 20px;
    width: 132px;
  }
  .sticker.sprout {
    left: 5px;
    bottom: 20px;
    width: 146px;
  }
  .combo-stamp {
    left: 14px;
    top: 66px;
  }
  .vs-stamp {
    right: 10px;
    bottom: 58px;
  }
  .hero-stage:before {
    width: 380px;
    height: 380px;
  }
  .hero-stage:after {
    width: 330px;
    height: 330px;
  }
  .hero .button {
    font-size: 15px;
    padding: 14px 20px;
    min-height: 54px;
  }
  .ticker .wrap {
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
  }
  .ticker .wrap p {
    font-size: 10px;
    letter-spacing: 0.08em;
  }
  .ticker .wrap i:last-of-type,
  .ticker .wrap p:last-child {
    display: none;
  }
  .section {
    padding-block: 60px;
  }
  .intro-row {
    display: block;
    margin-bottom: 32px;
  }
  .intro-row p {
    max-width: 480px;
    margin-top: 22px;
  }
  .how-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .how-card {
    padding-left: 88px;
    min-height: 145px;
    padding-top: 20px;
  }
  .number {
    position: absolute;
    left: 0;
    top: 23px;
  }
  .step-word {
    display: none;
  }
  .mini-tiles {
    position: absolute;
    left: 0;
    top: 34px;
    display: grid;
    grid-template-columns: repeat(2, 27px);
    gap: 1px;
    margin: 20px 0;
  }
  .mini-tiles img {
    width: 31px;
    height: 31px;
  }
  .mini-tiles .plus {
    font-size: 17px;
    padding: 0;
  }
  .how-card h3 {
    font-size: 25px;
  }
  .how-card p {
    max-width: none;
  }
  .battle-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .battle-card {
    min-height: 430px;
    grid-template-columns: 1fr 46%;
  }
  .battle-copy {
    padding-left: 26px;
  }
  .battle-card h3 {
    font-size: 33px;
  }
  .battle-card p {
    max-width: 195px;
  }
  .battle-card img {
    width: 215px;
    margin-top: 30px;
    margin-left: 4px;
  }
  .preview {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 44px;
  }
  .preview p {
    max-width: 440px;
  }
  .crew {
    padding-block: 45px;
  }
  .crew-top {
    display: block;
  }
  .crew-top p {
    margin-top: 12px;
    max-width: none;
  }
  .crew-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px 10px;
  }
  .character img {
    width: 95px;
  }
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .endcap {
    padding-bottom: 48px;
  }
  .endcap-box {
    padding: 36px 28px;
    display: block;
  }
  .endcap h2 {
    max-width: 15ch;
  }
  .endcap .actions-end {
    margin-top: 26px;
    display: inline-block;
  }
  .footer-row {
    flex-wrap: wrap;
  }
  .footer-links {
    gap: 18px;
  }
  .footer {
    padding-bottom: 92px;
  }
  .mobile-play {
    position: fixed;
    z-index: 20;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1b1030f5;
    backdrop-filter: blur(12px);
    border-top: 1px solid #f2c75c66;
    padding: 10px 20px max(10px, env(safe-area-inset-bottom));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transform: translateY(120%);
    transition: transform 0.2s;
    color: white;
  }
  .mobile-play.visible {
    transform: translateY(0);
  }
  .mobile-play span {
    font-size: 12px;
    color: #c4c9d0;
  }
  .mobile-play strong {
    font-size: 15px;
    color: white;
    display: block;
  }
  .mobile-play .button {
    min-height: 42px;
    padding: 9px 22px;
    font-size: 14px;
  }
}
@media (max-width: 360px) {
  .wrap {
    width: calc(100% - 32px);
  }
  .hero .actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero h1 {
    font-size: 53px;
  }
  .hero-stage {
    min-height: 480px;
  }
  .sticker.blaze {
    right: -8px;
    width: 110px;
  }
  .sticker.sprout {
    left: -12px;
    width: 120px;
  }
  .combo-stamp {
    left: -3px;
  }
  .battle-copy {
    padding-left: 20px;
  }
  .battle-card h3 {
    font-size: 29px;
  }
  .battle-card p {
    font-size: 13px;
    max-width: 150px;
  }
  .battle-card img {
    width: 190px;
  }
  .ticker .wrap {
    gap: 12px;
  }
  .footer-links {
    gap: 14px;
    font-size: 12px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 3px;
  border: 1px solid var(--bronze);
  border-radius: 8px;
  padding: 3px;
  font-size: 11px;
  font-weight: 750;
  white-space: nowrap;
}
.language-switch a {
  padding: 5px 7px;
  text-decoration: none;
  color: var(--lavender);
  border-radius: 4px;
}
.language-switch a[aria-current="page"] {
  background: var(--gold);
  color: var(--brown);
}
html[lang="pt-BR"] .hero h1 {
  font-size: clamp(46px, 5vw, 70px);
  max-width: 11ch;
}
html[lang="pt-BR"] .hero .button {
  font-size: 14px;
  padding-inline: 18px;
}
html[lang="pt-BR"] .endcap h2 {
  max-width: 17ch;
}
@media (max-width: 760px) {
  .nav-links > .button.small {
    display: none;
  }
  .nav-links {
    gap: 0;
  }
  .nav {
    gap: 12px;
  }
  .language-switch a {
    padding: 7px 8px;
  }
  html[lang="pt-BR"] .hero h1 {
    font-size: clamp(47px, 9vw, 65px);
  }
  html[lang="pt-BR"] .footer-links {
    flex-wrap: wrap;
    row-gap: 14px;
  }
}
@media (max-width: 360px) {
  html[lang="pt-BR"] .hero h1 {
    font-size: 46px;
  }
  html[lang="pt-BR"] .battle-card h3 {
    font-size: 28px;
  }
}
