@font-face {
  font-family: "Pacific Northwest Rough Letters";
  src: url("assets/fonts/PacificNorthwestRoughLetters-B.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Radcliffe Hand";
  src: url("assets/fonts/RadcliffeHand-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Atma";
  src: url("assets/fonts/Atma-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Atma";
  src: url("assets/fonts/Atma-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #0C1143;
  --teal: #245C7A;
  --gold: #C08A43;
  --brown: #5A2F13;
  --black-brown: #24160F;
  --paper: #D7C2A1;
  --paper-deep: #C08A43;
  --cream: #F4E7CA;
  --night: #0C1143;
  --white: #F8EAD0;
  --font-title: "Pacific Northwest Rough Letters", "Rye", Georgia, serif;
  --font-subtitle: "Radcliffe Hand", "Segoe Print", "Comic Sans MS", cursive;
  --font-body: "Atma", "Trebuchet MS", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--black-brown);
  font-family: var(--font-body);
  background:
    linear-gradient(rgba(215, 194, 161, .16), rgba(215, 194, 161, .16)),
    url("assets/images/paper-background.jpg") center / cover fixed;
}

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

.site {
  width: 100%;
  min-height: 100vh;
  margin: 0 auto;
  overflow: hidden;
  background:
    linear-gradient(rgba(215, 194, 161, .28), rgba(215, 194, 161, .28)),
    url("assets/images/paper-background.jpg") center / cover;
  box-shadow: 0 0 28px rgba(48, 33, 7, .25);
}

.masthead {
  height: 142px;
  padding: 28px 28px 12px;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
}

.brand-stroke {
  position: relative;
  width: 100%;
  max-width: 520px;
  height: auto;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.brand-stroke::before {
  content: none;
  position: absolute;
  inset: 6px 0 0;
  z-index: -1;
  background: var(--teal);
  clip-path: polygon(8% 18%, 20% 8%, 54% 10%, 87% 3%, 100% 18%, 93% 32%, 99% 45%, 89% 56%, 97% 73%, 71% 76%, 47% 69%, 20% 84%, 4% 70%, 11% 55%, 0 41%, 10% 30%);
  opacity: .96;
}

.brand-stroke::after {
  content: none;
  position: absolute;
  inset: 0 18px 10px;
  z-index: -1;
  background: rgba(12, 17, 67, .18);
  filter: blur(8px);
}

.brand span {
  display: block;
  width: 100%;
}

.brand-logo {
  display: block;
  width: min(100%, 520px);
  height: auto;
  opacity: .96;
  filter: drop-shadow(0 8px 10px rgba(36, 22, 15, .2));
}

.brand-text {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 14px 42px 20px;
  pointer-events: none;
}

.brand h1 {
  margin: 0;
  color: var(--white);
  font-family: var(--font-title);
  font-size: clamp(2.05rem, 7.5vw, 3.02rem);
  font-weight: 400;
  line-height: .98;
  text-align: center;
  white-space: nowrap;
  text-shadow: 0 2px 2px rgba(36, 22, 15, .55);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.brand p {
  margin: 5px 0 0;
  color: var(--gold);
  font-family: var(--font-subtitle);
  font-size: clamp(.92rem, 3.25vw, 1.24rem);
  text-align: center;
}

.nav {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 54px;
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, .12);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.nav a {
  display: grid;
  place-items: center;
  padding: 14px 8px 13px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: clamp(.82rem, 3vw, 1.04rem);
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: normal;
}

.nav a[aria-current="page"] {
  color: var(--gold);
}

.main {
  min-height: calc(100vh - 186px);
  position: relative;
  padding: 24px 14px 34px;
}

.home-hero {
  min-height: 462px;
  display: grid;
  place-items: center;
}

.home-asset-card {
  position: relative;
  z-index: 2;
  width: min(86%, 388px);
  margin: 8px auto 0;
}

.home-parchment {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 12px 20px rgba(36, 22, 15, .16));
}

.home-asset-copy {
  position: absolute;
  inset: 18% 16% 15%;
  z-index: 2;
  display: grid;
  justify-items: center;
  align-content: center;
  text-align: center;
}

.home-event-title {
  margin: 0;
  color: #090704;
  font-family: var(--font-body);
  font-size: clamp(1rem, 3.6vw, 1.35rem);
  font-weight: 700;
  line-height: 1.05;
}

.home-asset-copy p {
  margin: 10px 0 0;
  max-width: 305px;
  color: #090704;
  font-size: clamp(.86rem, 3.05vw, 1.08rem);
  line-height: 1.12;
}

.home-asset-copy strong {
  font-weight: 700;
}

.asset-deco {
  position: absolute;
  z-index: 1;
  display: block;
  height: auto;
  pointer-events: none;
  user-select: none;
}

.asset-compass {
  position: absolute;
  z-index: 3;
  top: clamp(36px, 6vw, 72px);
  left: 50%;
  width: clamp(58px, 9vw, 96px);
  aspect-ratio: 1;
  border: 2px solid rgba(90, 47, 19, .68);
  border-radius: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.asset-compass::before,
.asset-compass::after {
  content: "";
  position: absolute;
  inset: 11%;
  background: rgba(90, 47, 19, .78);
  clip-path: polygon(50% 0, 57% 42%, 100% 50%, 57% 58%, 50% 100%, 43% 58%, 0 50%, 43% 42%);
}

.asset-compass::after {
  inset: 22%;
  background: var(--cream);
  transform: rotate(45deg);
}

.asset-deco--stamp {
  width: clamp(72px, 12vw, 118px);
  right: clamp(16px, 8vw, 160px);
  top: clamp(118px, 18vw, 210px);
  transform: rotate(14deg);
}

.asset-deco--globe {
  z-index: 1;
  width: clamp(100px, 15vw, 188px);
  right: clamp(6px, 9vw, 150px);
  top: clamp(336px, 31vw, 430px);
  opacity: .95;
  transform: rotate(7deg);
}

.asset-deco--pion {
  width: clamp(86px, 14vw, 132px);
  left: clamp(14px, 8vw, 150px);
  top: clamp(245px, 30vw, 330px);
  transform: rotate(-28deg);
}

.asset-deco--dice {
  width: clamp(88px, 14vw, 132px);
  left: clamp(28px, 13vw, 210px);
  bottom: clamp(26px, 10vw, 110px);
  transform: rotate(12deg);
}

.asset-deco--rule-map {
  width: clamp(96px, 14vw, 140px);
  left: clamp(12px, 6vw, 100px);
  bottom: clamp(24px, 6vw, 70px);
  transform: rotate(-18deg);
}

.asset-deco--rule-pion {
  width: clamp(88px, 12vw, 136px);
  right: clamp(14px, 7vw, 110px);
  top: clamp(96px, 14vw, 160px);
  opacity: .9;
  transform: rotate(20deg);
}

.asset-deco--reward-dice {
  width: clamp(92px, 12vw, 140px);
  left: clamp(12px, 7vw, 100px);
  bottom: clamp(30px, 7vw, 80px);
  transform: rotate(-12deg);
}

.asset-deco--reward-map {
  width: clamp(92px, 12vw, 138px);
  right: clamp(12px, 7vw, 100px);
  top: clamp(94px, 14vw, 150px);
  transform: rotate(14deg);
}

.asset-deco--chest {
  width: clamp(80px, 11vw, 130px);
  right: clamp(14px, 8vw, 120px);
  bottom: clamp(22px, 7vw, 88px);
}

.paper-note {
  position: relative;
  width: min(86%, 330px);
  min-height: 338px;
  padding: 70px 26px 34px;
  display: grid;
  justify-items: center;
  align-content: center;
  text-align: center;
  background:
    radial-gradient(circle at 22% 30%, rgba(120, 78, 24, .09), transparent 24%),
    radial-gradient(circle at 78% 66%, rgba(120, 78, 24, .11), transparent 20%),
    repeating-linear-gradient(82deg, rgba(69, 47, 19, .045) 0 2px, transparent 2px 12px),
    linear-gradient(rgba(248, 231, 184, .92), rgba(248, 231, 184, .92));
  filter: drop-shadow(0 8px 16px rgba(79, 49, 12, .16));
  clip-path: polygon(4% 12%, 15% 6%, 32% 8%, 49% 4%, 62% 7%, 83% 5%, 96% 14%, 93% 34%, 97% 51%, 91% 67%, 95% 87%, 73% 93%, 54% 91%, 37% 96%, 17% 91%, 6% 82%, 9% 64%, 4% 48%, 7% 30%);
}

.paper-note::before,
.paper-note::after {
  content: "";
  position: absolute;
  width: 118px;
  height: 46px;
  background: rgba(160, 126, 73, .22);
  transform: rotate(-26deg);
}

.paper-note::before {
  top: 8px;
  left: -32px;
}

.paper-note::after {
  right: -30px;
  bottom: 22px;
  transform: rotate(24deg);
}

.title-script {
  margin: 0 0 6px;
  color: var(--gold);
  font-family: var(--font-subtitle);
  font-size: clamp(1.72rem, 6vw, 2.25rem);
  font-weight: 400;
  line-height: .95;
}

.lead {
  margin: 0;
  max-width: 270px;
  font-size: 1rem;
  line-height: 1.08;
}

.tiny-map {
  position: absolute;
  top: 42px;
  width: 86px;
  height: 46px;
  border: 2px solid var(--brown);
  background: var(--paper);
  transform: rotate(3deg);
}

.tiny-map::before,
.tiny-map::after {
  content: "";
  position: absolute;
  border: 2px dashed var(--brown);
  border-left: 0;
  border-bottom: 0;
  width: 50px;
  height: 28px;
  border-radius: 50%;
  top: 9px;
  left: 13px;
}

.tiny-map::after {
  width: 7px;
  height: 7px;
  border: 0;
  border-radius: 50%;
  background: var(--brown);
  left: 57px;
  top: 16px;
}

.qr {
  width: 104px;
  aspect-ratio: 1;
  margin-top: 14px;
  background:
    linear-gradient(90deg, var(--brown) 11px, transparent 0 18px, var(--brown) 0 27px, transparent 0 38px, var(--brown) 0 47px, transparent 0 58px, var(--brown) 0 68px, transparent 0 77px, var(--brown) 0 88px, transparent 0),
    linear-gradient(var(--brown) 11px, transparent 0 18px, var(--brown) 0 27px, transparent 0 38px, var(--brown) 0 47px, transparent 0 58px, var(--brown) 0 68px, transparent 0 77px, var(--brown) 0 88px, transparent 0);
  background-color: var(--cream);
  background-blend-mode: multiply;
  border: 6px solid var(--cream);
  box-shadow: inset 0 0 0 5px var(--brown);
}

.deco {
  position: absolute;
  pointer-events: none;
}

.compass {
  width: 82px;
  height: 82px;
  border: 3px solid var(--brown);
  border-radius: 50%;
  background: radial-gradient(circle, var(--cream) 0 11%, var(--brown) 12% 15%, transparent 16%);
}

.compass::before,
.compass::after {
  content: "";
  position: absolute;
  inset: 12px;
  background: var(--brown);
  clip-path: polygon(50% 0, 59% 42%, 100% 50%, 59% 58%, 50% 100%, 41% 58%, 0 50%, 41% 42%);
}

.compass::after {
  inset: 18px;
  background: var(--cream);
  transform: rotate(45deg);
}

.stamp {
  width: 62px;
  height: 86px;
  border-radius: 38px 38px 8px 8px;
  background: linear-gradient(105deg, var(--brown), var(--gold) 50%, var(--brown));
  transform: rotate(18deg);
  box-shadow: inset 0 -10px 0 rgba(54, 25, 7, .35);
}

.meeple,
.dice,
.palms,
.chest,
.coins {
  position: absolute;
}

.meeple {
  left: 52px;
  top: 164px;
  width: 72px;
  height: 90px;
  transform: rotate(-33deg);
  background: var(--gold);
  clip-path: polygon(42% 0, 59% 0, 72% 14%, 69% 31%, 100% 58%, 78% 82%, 61% 66%, 57% 100%, 34% 100%, 38% 66%, 18% 83%, 0 60%, 31% 31%, 28% 14%);
  filter: drop-shadow(3px 5px 0 rgba(84, 56, 19, .24));
}

.meeple::after {
  content: "";
  position: absolute;
  width: 48px;
  height: 16px;
  top: 22px;
  left: 10px;
  background: var(--ink);
  border-radius: 50%;
  transform: rotate(-15deg);
}

.dice {
  width: 42px;
  height: 42px;
  left: 76px;
  bottom: 76px;
  border-radius: 7px;
  background: var(--brown);
  transform: rotate(17deg);
  box-shadow: 28px 14px 0 var(--teal);
}

.dice::before {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  left: 9px;
  top: 9px;
  border-radius: 50%;
  background: var(--cream);
  box-shadow: 17px 0 0 var(--cream), 8px 11px 0 var(--cream), 0 23px 0 var(--cream), 17px 23px 0 var(--cream), 36px 15px 0 var(--cream), 53px 23px 0 var(--cream);
}

.palms {
  left: 58px;
  bottom: 92px;
  width: 82px;
  height: 76px;
}

.palms::before,
.palms::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 10px;
  height: 58px;
  background: var(--brown);
  transform-origin: bottom;
}

.palms::before {
  left: 28px;
  transform: rotate(7deg);
}

.palms::after {
  left: 47px;
  height: 64px;
  transform: rotate(-8deg);
}

.palm-leaf {
  position: absolute;
  width: 50px;
  height: 24px;
  background: var(--teal);
  border-radius: 100% 0;
  transform-origin: right center;
}

.palm-leaf:nth-child(1) { left: 0; top: 12px; transform: rotate(-20deg); }
.palm-leaf:nth-child(2) { left: 21px; top: 5px; transform: rotate(20deg); }
.palm-leaf:nth-child(3) { left: 35px; top: 22px; transform: rotate(55deg); }
.palm-leaf:nth-child(4) { left: 7px; top: 29px; transform: rotate(-65deg); }

.night-page {
  background:
    linear-gradient(rgba(12, 17, 67, .28), rgba(12, 17, 67, .44)),
    url("assets/images/night-sky.jpg") center / cover;
  color: var(--white);
}

.content {
  position: relative;
  z-index: 4;
  width: 100%;
  display: grid;
  justify-items: center;
  text-align: center;
}

.rewards-main .content {
  max-width: none;
}

.page-title {
  margin: 10px 0 18px;
  color: var(--white);
  font-family: var(--font-title);
  font-size: clamp(2rem, 8vw, 2.6rem);
  font-weight: 400;
  line-height: .88;
  text-shadow: 2px 2px 0 rgba(0,0,0,.45);
}

.rules-list {
  width: min(100%, 330px);
  display: grid;
  gap: 15px;
}

.rule h2,
.reward-copy strong {
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 1rem;
}

.rule h2 {
  margin: 0 0 2px;
}

.rule p,
.reward-copy p {
  margin: 0;
  font-size: .86rem;
  line-height: 1.07;
}

.reward-copy {
  width: min(100%, 350px);
  display: grid;
  gap: 10px;
}

.medals {
  margin: 4px 0;
  display: grid;
  gap: 2px;
  font-family: var(--font-body);
  font-weight: 700;
}

.partner-scroll {
  justify-self: center;
  width: min(92vw, 1040px);
  margin-top: 16px;
  padding: clamp(54px, 8vw, 94px) clamp(54px, 11vw, 150px);
  background: url("assets/images/parchemin-large-clean.svg") center / 100% 100% no-repeat;
  color: var(--black-brown);
}

.badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 18px;
}

.badge {
  display: grid;
  justify-items: center;
  gap: 4px;
  font-family: var(--font-body);
  font-size: clamp(.56rem, 1.9vw, .82rem);
  line-height: .98;
}

.seal {
  width: 48px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 3px double currentColor;
  color: var(--brown);
  background: var(--cream);
  font: 700 .62rem var(--font-body);
  text-align: center;
}

.bars-intro {
  margin: -5px auto 12px;
  width: min(92vw, 1180px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 44px;
  padding: clamp(58px, 9vw, 100px) clamp(48px, 10vw, 150px) clamp(58px, 9vw, 94px) clamp(74px, 14vw, 210px);
  background: url("assets/images/parchemin-large-clean.svg") center / 100% 100% no-repeat;
}

.bar-line {
  font-size: clamp(.58rem, 1.65vw, .82rem);
  line-height: 1.08;
}

.bar-line b {
  display: block;
  font-family: var(--font-body);
  font-size: clamp(.66rem, 1.8vw, .95rem);
}

.bar-line span {
  display: block;
  color: var(--brown);
}

.home-main .compass {
  top: 34px;
  right: 52px;
  transform: rotate(-20deg);
}

.home-main .stamp {
  right: 46px;
  top: 124px;
}

.home-main .dice {
  bottom: 78px;
}

.home-main .paper-note {
  padding-top: 76px;
}

.home-main .paper-note .compass {
  top: -36px;
  right: -26px;
  transform: rotate(20deg) scale(.86);
}

.rules-main .compass {
  top: 18px;
  right: 28px;
  opacity: .75;
  transform: scale(.9);
}

.rules-main .tiny-map {
  left: 24px;
  bottom: 36px;
  top: auto;
  transform: rotate(-18deg);
}

.map-main {
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

.map-main .main {
  padding-bottom: 0;
}

.map-image {
  width: min(100%, 980px);
  margin: 18px auto 0;
  padding: clamp(8px, 2vw, 14px);
  background:
    radial-gradient(circle at 72% 24%, rgba(90, 47, 19, .09), transparent 24%),
    repeating-linear-gradient(85deg, rgba(36, 22, 15, .04) 0 2px, transparent 2px 12px),
    linear-gradient(rgba(215, 194, 161, .92), rgba(215, 194, 161, .92));
  border: 2px solid rgba(90, 47, 19, .38);
  box-shadow: 0 12px 28px rgba(36, 22, 15, .18);
}

.map-image a,
.map-image img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 380px) {
  .masthead {
    height: 128px;
    padding-inline: 14px;
  }

  .nav {
    overflow: visible;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .nav a {
    font-size: clamp(.72rem, 3.55vw, .9rem);
    line-height: 1.05;
    padding: 13px 3px 12px;
  }

  .main {
    padding-inline: 10px;
  }

  .bars-intro {
    grid-template-columns: 1fr;
    width: min(94vw, 390px);
    padding: 58px 48px 54px 70px;
  }

  .partner-scroll {
    width: min(94vw, 390px);
    padding: 52px 54px 50px;
  }

  .map-image {
    margin-inline: -2px;
  }

  .paper-note {
    width: 94%;
  }
}

@media (max-width: 759px) {
  .partner-scroll {
    width: min(94vw, 680px);
    padding: 68px 86px 62px;
  }

  .badges {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 22px;
  }

  .badge {
    min-width: 0;
    font-size: clamp(.62rem, 2.7vw, .78rem);
    overflow-wrap: anywhere;
  }

  .seal {
    width: clamp(50px, 13vw, 66px);
    font-size: clamp(.56rem, 2.25vw, .72rem);
  }

  .bars-intro {
    width: min(94vw, 700px);
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 72px 74px 66px 112px;
  }

  .bar-line {
    min-width: 0;
    font-size: clamp(.68rem, 2.75vw, .82rem);
    overflow-wrap: anywhere;
  }

  .bar-line b {
    font-size: clamp(.76rem, 3vw, .92rem);
  }
}

@media (max-width: 460px) {
  .partner-scroll {
    width: min(94vw, 390px);
    padding: 52px 58px 50px;
  }

  .badges {
    gap: 9px 12px;
  }

  .badge {
    font-size: .58rem;
    line-height: .95;
  }

  .seal {
    width: 50px;
    font-size: .55rem;
  }

  .bars-intro {
    width: min(94vw, 390px);
    padding: 58px 48px 54px 72px;
  }

  .bar-line {
    font-size: .62rem;
    line-height: 1.02;
  }

  .bar-line b {
    font-size: .7rem;
  }
}

@media (min-width: 760px) {
  .masthead {
    height: 260px;
    padding: 34px 48px 18px;
  }

  .brand-stroke {
    max-width: 680px;
    height: auto;
  }

  .brand-logo {
    width: min(100%, 680px);
  }

  .brand h1 {
    font-size: clamp(3rem, 5.4vw, 4.9rem);
  }

  .brand p {
    font-size: clamp(1.2rem, 2vw, 1.75rem);
  }

  .nav {
    grid-template-columns: repeat(4, minmax(140px, 1fr));
  }

  .nav a {
    font-size: 1.22rem;
    padding-block: 18px 17px;
  }

  .main {
    min-height: calc(100vh - 310px);
    padding: 44px clamp(32px, 6vw, 96px) 56px;
  }

  .home-hero {
    min-height: calc(100vh - 310px);
  }

  .home-asset-card {
    width: min(47vw, 520px);
  }

  .home-asset-copy {
    inset: 18% 15% 14%;
  }

  .home-asset-copy .lead {
    font-size: 1.12rem;
  }

  .asset-deco--stamp {
    right: 19%;
    top: 188px;
  }

  .asset-deco--globe {
    right: 18%;
    top: 430px;
  }

  .asset-compass {
    top: 48px;
    width: 96px;
  }

  .asset-deco--pion {
    left: 18%;
    top: 260px;
  }

  .asset-deco--dice {
    left: 21%;
    bottom: 108px;
  }

  .asset-deco--rule-map {
    left: 8%;
    bottom: 54px;
  }

  .asset-deco--rule-pion {
    right: 10%;
    top: 128px;
  }

  .asset-deco--reward-dice {
    left: 10%;
    bottom: 78px;
  }

  .asset-deco--reward-map {
    right: 10%;
    top: 130px;
  }

  .paper-note {
    width: min(62vw, 580px);
    min-height: 430px;
    padding: 98px 56px 48px;
  }

  .title-script {
    font-size: clamp(2.15rem, 3.4vw, 3.25rem);
  }

  .lead {
    max-width: 420px;
    font-size: 1.2rem;
  }

  .qr {
    width: 132px;
  }

  .tiny-map {
    width: 112px;
    height: 58px;
  }

  .home-main .compass {
    right: 18%;
    top: 54px;
    transform: rotate(-20deg) scale(1.2);
  }

  .home-main .stamp {
    right: 20%;
    top: 190px;
    transform: rotate(18deg) scale(1.16);
  }

  .home-main .paper-note .compass {
    right: -44px;
    top: -42px;
  }

  .home-main .dice {
    left: 21%;
    bottom: 110px;
    transform: rotate(17deg) scale(1.2);
  }

  .meeple {
    left: 18%;
    top: 230px;
    transform: rotate(-33deg) scale(1.15);
  }

  .palms {
    left: 74px;
    bottom: 100px;
    transform: scale(1.12);
  }

  .content {
    max-width: 860px;
    margin: 0 auto;
  }

  .page-title {
    font-size: clamp(3rem, 4.5vw, 4.6rem);
    margin-top: 18px;
  }

  .rules-list {
    width: min(100%, 680px);
    gap: 22px;
  }

  .rule h2,
  .reward-copy strong {
    font-size: 1.25rem;
  }

  .rule p,
  .reward-copy p {
    font-size: 1.05rem;
    line-height: 1.22;
  }

  .reward-copy {
    width: min(100%, 760px);
  }

  .partner-scroll {
    width: min(92vw, 1120px);
    padding: 100px 170px 90px;
  }

  .badge {
    font-size: .84rem;
  }

  .seal {
    width: 72px;
    font-size: .78rem;
  }

  .bars-intro {
    width: min(92vw, 1200px);
    grid-template-columns: repeat(2, minmax(260px, 1fr));
    gap: 18px 72px;
    padding: 104px 150px 94px 250px;
  }

  .bar-line {
    font-size: .86rem;
  }

  .bar-line b {
    font-size: .98rem;
  }

  .map-image {
    margin-top: 28px;
  }
}
