.faq-launcher {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(calc(100% - 40px), 1020px);
  margin: 0 auto;
  padding: 30px 36px;
  border: 2px solid var(--ink);
  background: #fff7bb;
  box-shadow: 7px 7px 0 rgba(0, 0, 0, 0.13);
  transform: rotate(-0.45deg);
}
.faq-launcher__note {
  font-size: clamp(18px, 3vw, 27px);
  font-weight: 700;
}
.faq-launcher__button {
  display: flex;
  align-items: center;
  gap: 30px;
  min-width: 230px;
  padding: 15px 20px;
  border: 2px solid var(--ink);
  background: var(--pink);
  box-shadow: 4px 4px 0 var(--ink);
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.12s,
    box-shadow 0.12s;
}
.faq-launcher__button:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--ink);
}
.faq-view {
  width: min(calc(100% - 40px), 920px);
  margin: 0 auto;
  padding: 26px 0 90px;
  font-size: 18px;
}
.faq-view[hidden] {
  display: none;
}
.faq-heading {
  margin-bottom: 58px;
  text-align: center;
}

.faq-heading > p:last-child {
  color: #4f4a45;
  font-size: 18px;
}
.faq-back {
  display: table;
  margin: 0 0 var(--view-back-title-gap);
  padding: 10px 17px;
  border: 2px solid var(--ink);
  background: white;
  box-shadow: 3px 3px 0 var(--ink);
  color: var(--ink);
  font:
    700 18px/1.2 "jf-openhuninn",
    sans-serif;
  cursor: pointer;
}
.faq-back:hover {
  background: #fff4ad;
}
.faq-list {
  display: grid;
  gap: 27px;
}
.faq-card {
  position: relative;
  padding: 27px 30px 25px;
  border: 2px solid var(--ink);
  background: white;
  box-shadow: 6px 7px 0 rgba(0, 0, 0, 0.11);
  transform: rotate(-0.3deg);
  transition:
    transform 0.32s cubic-bezier(0.2, 0.8, 0.2, 1),
    background-color 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}
.faq-card:nth-child(2n) {
  transform: rotate(0.35deg);
}
.faq-card.is-open {
  border-color: #bc000a;
  background: #fffaf0;
  box-shadow: 9px 11px 0 rgba(188, 0, 10, 0.13);
  transform: translateY(-4px) rotate(0deg);
}
.faq-card h2 {
  margin: 0;
  font-size: clamp(18px, 2.4vw, 21px);
  line-height: 1.5;
}
.faq-question {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 17px;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: 700;
  line-height: inherit;
  text-align: left;
  cursor: pointer;
}
.faq-question > span:first-child {
  position: absolute;
  top: -40px;
  left: -40px;
  z-index: 2;
  width: 30px;
  height: 30px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: #ed4f78;
  color: transparent;
  font-size: 0;
  transition:
    transform 0.32s cubic-bezier(0.2, 0.8, 0.2, 1),
    background-color 0.25s ease;
}
.faq-question > span:first-child::before,
.faq-question > span:first-child::after {
  content: none;
}
.faq-question__text {
  flex: 1 1 auto;
}
.faq-question::after {
  content: "+";
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: auto;
  height: auto;
  margin: 0 0 0 auto;
  border: 0;
  background: transparent;
  color: #bc000a;
  font:
    700 28px/1 Arial,
    sans-serif;
  transition:
    transform 0.32s cubic-bezier(0.2, 0.8, 0.2, 1),
    color 0.25s ease;
}
.faq-card.is-open .faq-question::after {
  background: transparent;
  color: #ed4f78;
  transform: rotate(135deg) scale(1.08);
}
.faq-card.is-open .faq-question > span:first-child {
  background: #fff4ad;
  transform: scale(1.14) rotate(12deg);
}
.faq-question:focus-visible {
  outline: 3px solid var(--pink-strong);
  outline-offset: 7px;
}
.faq-answer-reveal {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transform: translateY(-7px);
  transition:
    grid-template-rows 0.38s cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 0.24s ease,
    transform 0.32s ease;
}
.faq-card p {
  min-height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0 0 0 17px;
  border-left: 3px solid var(--pink);
  color: #4f4a45;
  font-size: 18px;
  line-height: 1.8;
  transition: margin-top 0.38s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.faq-card.is-open .faq-answer-reveal {
  grid-template-rows: 1fr;
  opacity: 1;
  transform: translateY(0);
}
.faq-card.is-open p {
  margin-top: 19px;
}
@media (prefers-reduced-motion: reduce) {
  .faq-card,
  .faq-question::after,
  .faq-question > span:first-child,
  .faq-answer-reveal,
  .faq-card p {
    transition-duration: 0.01ms;
  }
}
.faq-back--bottom {
  margin: 50px auto 0;
}
body.faq-open .home-stage,
body.faq-open .page-content,
body.faq-open .faq-launcher {
  display: none;
}
body.faq-open .site-header {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}
body.faq-open .site-nav [data-faq-link] {
  color: var(--pink-strong);
  border-bottom-color: var(--pink-strong);
}

.organizer-view {
  width: 100%;
  padding: 26px 0 0;
}
.organizer-view[hidden] {
  display: none;
}
.organizer-view__heading {
  width: min(calc(100% - 40px), 1152px);
  margin: 0 auto var(--view-back-title-gap);
}
.organizer-frame {
  display: block;
  width: 100%;
  min-height: 1400px;
  border: 0;
  background: #fef9ee;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
body.organizer-open .home-stage,
body.organizer-open .page-content,
body.organizer-open .faq-launcher,
body.organizer-open .faq-view {
  display: none;
}
body.organizer-open .site-header {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}
body.organizer-open .site-nav [data-organizer-link] {
  color: var(--pink-strong);
  border-bottom-color: var(--pink-strong);
}

@media (max-width: 1023.95px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }
  .sketch-page {
    width: 100%;
    max-width: 100%;
  }
  .countdown-section {
    margin-top: 0;
  }
  .countdown-mascot {
    width: clamp(112px, 18vw, 150px);
    height: clamp(126px, 20vw, 172px);
  }
  .section-mascot[data-character-hover] {
    width: clamp(112px, 18vw, 150px);
    height: clamp(126px, 20vw, 172px);
  }
  .countdown-mascot--top-left {
    top: -74px;
    left: clamp(10px, 4vw, 32px);
  }
  .countdown-mascot--bottom-right {
    right: clamp(10px, 4vw, 32px);
    bottom: -88px;
  }
  .home-background {
    background-size: cover;
    background-position: right center;
  }
  .submit-button {
    bottom: 30px;
    top: auto;
    font-size: 18px;
  }
  .site-header {
    margin-bottom: var(--section-gap);
  }
  .site-header__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
    position: relative;
    width: min(calc(100% - 16px), 1280px);
    min-height: 62px;
    padding-block: 9px;
  }
  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 14px 14px;
    border: 1px solid var(--ink);
    border-top: 0;
    background: rgba(255, 253, 240, 0.99);
    box-shadow: 4px 5px 0 rgba(29, 28, 21, 0.2);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 0.2s ease,
      transform 0.2s ease,
      visibility 0s linear 0.2s;
  }
  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s;
  }
  .site-nav a {
    padding: 14px 10px;
    border-bottom: 1px dashed rgba(29, 28, 21, 0.28);
    text-align: center;
  }
  .site-nav a:last-child {
    border-bottom: 0;
  }
  .site-nav a.is-active {
    border-bottom-color: transparent;
    box-shadow: inset 0 0 0 2px var(--pink-strong);
  }
  .nav-toggle {
    display: grid;
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    place-content: center;
    gap: 5px;
    width: clamp(38px, 13vw, 44px);
    height: clamp(38px, 13vw, 44px);
    margin-left: 0;
    padding: 0;
    border: 2px solid var(--ink);
    border-radius: 0;
    background: transparent;
    box-shadow: 3px 3px 0 var(--ink);
    cursor: pointer;
  }
  .nav-toggle__line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink);
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  .nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .site-brand {
    display: none;
  }
  .header-submit {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    max-width: 100%;
    padding: 10px clamp(12px, 4vw, 16px);
    font-size: clamp(16px, 5vw, 18px);
    line-height: 1.15;
  }
  .header-submit,
  .countdown-cta {
    min-width: 0;
  }
  .about-text {
    order: 2;
    padding-top: 0;
  }
  .hero-copy .about-text > p {
    width: min(100%, 42rem);
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(16px, 3.2vw, 20px);
    text-align: center;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: normal;
  }
  .hero-copy {
    align-items: center;
    display: flex;
    flex-direction: column;
  }
  .hero-logo-title {
    position: relative;
    order: 1;
    top: auto;
    left: auto;
    z-index: auto;
    width: min(100%, 520px);
    margin: -18px auto 24px;
    filter: drop-shadow(5px 6px 0 rgba(116, 8, 28, 0.14));
    transform: rotate(-2deg);
  }
  .hero-logo-title img {
    left: 50%;
    transform: translateX(-50%);
  }
  .hero-photo-stack {
    order: 3;
    float: none;
    width: min(94%, 620px);
    margin: 0 auto 42px;
    gap: 34px;
  }
  .hero-photo-stack .stamp {
    order: -1;
    left: auto;
    top: auto;
    margin-bottom: 8px;
  }
  .hero-photo-stack .stamp-logos {
    order: -1;
    left: auto;
    top: auto;
    gap: clamp(18px, 5vw, 30px);
    margin: -18px 0 8px;
  }
  .hero-photo-stack .stamp-logo {
    width: clamp(94px, 26vw, 126px);
  }
  .hero-photo--secondary {
    width: 96%;
    margin-left: auto;
    margin-right: auto;
  }
  .notes-grid {
    grid-template-columns: 1fr;
  }
  .note-card {
    min-height: 0;
    padding: 44px 42px;
  }
  .note-card--rules {
    padding-top: 140px;
    padding-bottom: 44px;
  }
  .note-card--rules {
    background-image:
      linear-gradient(
        90deg,
        transparent 0 17px,
        rgba(226, 105, 124, 0.28) 17px 19px,
        transparent 19px
      ),
      repeating-linear-gradient(
        0deg,
        transparent 0 31px,
        rgba(92, 158, 196, 0.17) 31px 32px
      );
  }
  .note-card--rules::before {
    left: -1px;
  }
  .character-link {
    top: 32px;
    right: 22px;
    bottom: auto;
    width: 290px;
    height: 74px;
    padding: 0 41px 0 19px;
    font-size: 18px;
  }
  .award-note-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .award-note {
    grid-template-rows: 220px auto;
  }
  .reward-prize-list {
    grid-template-columns: 1fr;
  }
  .common-awards-sheet {
    padding-inline: 30px;
    --common-awards-sheet-edge: polygon(
      0.8% 0.6%,
      8% 0.17%,
      16% 0.5%,
      24% 0.15%,
      33% 0.57%,
      41% 0.22%,
      50% 0.55%,
      58% 0.12%,
      66% 0.5%,
      75% 0.2%,
      83% 0.55%,
      91% 0.15%,
      99.2% 0.6%,
      99.7% 7%,
      99.1% 14%,
      99.8% 22%,
      99.2% 31%,
      99.7% 40%,
      99.1% 50%,
      99.8% 61%,
      99.2% 72%,
      99.7% 82%,
      99.1% 92%,
      99.4% 99.3%,
      91% 99.7%,
      83% 99.4%,
      75% 99.8%,
      66% 99.4%,
      58% 99.8%,
      50% 99.4%,
      41% 99.7%,
      33% 99.4%,
      24% 99.8%,
      16% 99.4%,
      8% 99.7%,
      0.7% 99.3%,
      0.25% 91%,
      0.9% 83%,
      0.2% 74%,
      0.8% 65%,
      0.25% 56%,
      0.9% 47%,
      0.2% 38%,
      0.8% 29%,
      0.25% 20%,
      0.9% 12%
    );
  }
  .common-award-notes .award-note {
    grid-template-rows: 145px auto;
  }
  .role-award-note {
    grid-template-rows: 92px auto;
  }
  .section-mascot.role-awards-mascot {
    top: calc(22px - clamp(126px, 20vw, 172px));
    right: 12px;
    left: auto;
    width: clamp(112px, 18vw, 150px);
    height: clamp(126px, 20vw, 172px);
    transform: rotate(4deg);
  }
  .faq-launcher {
    flex-direction: column;
    align-items: stretch;
    padding: 30px 25px 25px;
    text-align: center;
  }
  .section-mascot.faq-launcher-mascot {
    top: calc(0px - clamp(126px, 20vw, 172px));
    left: 20px;
    width: clamp(112px, 18vw, 150px);
    height: clamp(126px, 20vw, 172px);
    transform: rotate(-4deg);
  }
  .faq-launcher__button {
    justify-content: space-between;
    min-width: 0;
  }
  .faq-heading {
    margin-bottom: 42px;
  }
  .faq-card {
    padding: 24px 20px;
  }
  .faq-card p {
    margin-left: 0;
  }
}

@media (max-width: 845px) {
  .site-footer {
    margin-top: var(--section-gap);
    font-size: 12px;
  }
  .site-footer__inner {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    gap: 0;
    width: min(calc(100% - 34px), 1280px);
    padding: 31px 0;
    text-align: center;
  }
  .footer-actions {
    display: contents;
    margin-left: 0;
  }
  .footer-identity {
    grid-column: 1;
    grid-row: 3;
    width: 100%;
    margin-top: 34px;
  }
  .footer-organizers {
    justify-content: center;
  }
  .footer-organizer {
    font-size: 14px;
  }
  .footer-organizer img {
    height: 58px;
  }
  .footer-organizer:last-child img {
    height: 54px;
  }
  .footer-contact {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    padding-bottom: 34px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    margin-bottom: 34px;
    font-size: 13px;
  }
  .site-footer .footer-links {
    grid-column: 1;
    grid-row: 2;
    align-items: center;
    width: 100%;
    padding-bottom: 34px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    text-align: center;
  }
  .footer-contact a,
  .site-footer .footer-links {
    font-size: 14px;
  }
  .faq-launcher {
    flex-direction: column;
    align-items: stretch;
    padding: 30px 25px 25px;
    text-align: center;
  }
  .faq-launcher__button {
    justify-content: space-between;
    min-width: 0;
  }
  .faq-heading {
    margin-bottom: 42px;
  }
  .faq-card {
    padding: 24px 20px;
  }
  .faq-card p {
    margin-left: 0;
  }
}

@media (max-width: 1023.95px) {
  .home-stage.is-playing .submit-button {
    top: auto;
    bottom: 60px;
    min-width: 220px;
    padding: 16px 34px;
    font-size: 18px;
  }
}

@media (min-width: 600px) and (max-width: 1023.95px) {
  .home-stage.is-playing .submit-button {
    top: auto;
    bottom: 60px;
    width: 320px;
    min-width: 0;
    min-height: 82px;
    padding: 20px 54px;
    font-size: 24px;
  }
}

@media (min-width: 1024px) {
  .home-stage .submit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 60px;
    min-width: 0;
    min-height: 0;
    padding: 0 28px;
    font-size: 18px;
    background: #ad173c;
    color: #fff;
  }
}

@media (max-width: 599.95px) {
  .home-stage,
  .sketch-page,
  .site-header,
  .page-content {
    width: 100%;
    max-width: 100%;
  }
  .home-background {
    background-position: right center;
  }
  #logo-motion.logo-motion {
    margin-top: 88px;
  }
  .submit-button {
    top: auto;
    bottom: 60px;
    width: min(400px, calc(100vw - 40px));
    min-width: 0;
    padding: 15px 24px;
    font-size: 18px;
  }
  .page-content {
    padding-inline: 20px;
  }
  .note-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    justify-self: stretch;
    padding: 36px 30px;
  }
  .note-card--rules {
    padding-top: 126px;
    padding-bottom: 36px;
  }
  .character-link {
    top: 26px;
    right: 18px;
    width: min(100%, calc(100% - 36px));
  }
  .section-mascot {
    width: 82px;
    height: 96px;
  }
  .countdown-mascot {
    width: 104px;
    height: 122px;
  }
  .section-mascot[data-character-hover] {
    width: 104px;
    height: 122px;
  }
  .countdown-mascot--top-left {
    top: -72px;
    left: 10px;
  }
  .countdown-mascot--bottom-right {
    right: 10px;
    bottom: -96px;
  }
  .rules-mascot {
    top: -76px;
    left: 24px;
  }
  .section-mascot.title-mascot--right {
    top: -122px;
    left: auto;
    right: 4px;
    width: 104px;
    height: 122px;
    transform: rotate(4deg);
  }
  .section-mascot.title-mascot--left {
    top: -122px;
    right: auto;
    left: 4px;
    width: 104px;
    height: 122px;
    transform: rotate(-4deg);
  }
  .section-mascot.role-awards-mascot {
    top: -122px;
    left: auto;
    right: 4px;
    width: 104px;
    height: 122px;
    transform: rotate(4deg);
  }
  .section-mascot.faq-launcher-mascot {
    top: -122px;
    left: 12px;
    width: 104px;
    height: 122px;
    transform: rotate(-4deg);
  }
  .hero-copy {
    padding: 34px 10px;
  }
  .hero h1 {
    font-size: 43px;
  }
  .countdown-section {
    padding: 0 8px;
  }
  .countdown-card {
    padding: 54px 16px 38px;
  }
  .countdown-card::before {
    display: none;
  }
  .countdown {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }
  .time-card {
    flex: 1 1 0;
    padding: 17px 2px;
    border-width: 3px;
  }
  .time-card strong {
    font-size: 27px;
  }
  .time-card span {
    font-size: clamp(14px, 4.4vw, 18px);
    letter-spacing: 0;
  }
  .countdown-card .countdown-cta {
    max-width: 100%;
    padding: 14px 26px;
    font-size: clamp(22px, 8vw, 30px);
    white-space: normal;
  }
  .awards-showcase .section-title {
    gap: 12px;
  }
  .reward-policy__paper {
    min-height: 0;
    padding: 38px 22px;
    transform: none;
  }
  .reward-policy__paper::before {
    display: none;
  }
  .reward-policy__paper::after {
    display: none;
  }
  .reward-policy__columns {
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start;
  }
  .reward-policy__list {
    padding-left: 25px;
  }
  .reward-direction--desktop {
    display: none;
  }
  .reward-direction--mobile {
    display: inline;
  }
  .reward-prize-list b {
    min-width: 0;
  }
  .reward-prize-list li {
    grid-template-columns: 1fr;
    row-gap: 1px;
  }
  .reward-prize-list__heading,
  .reward-prize-list b,
  .reward-prize-list span {
    white-space: normal;
  }
  .reward-prize-list .fit-single-line {
    font-size: inherit !important;
    letter-spacing: 0 !important;
  }
  .reward-prize-list .reward-prize-list__value {
    grid-column: 1;
    width: 100%;
  }
  .reward-prize-list .reward-prize-list__bonus {
    grid-column: 1;
    width: 100%;
  }
  .common-awards-sheet {
    padding: 44px clamp(14px, 5vw, 24px) 34px;
    transform: none;
  }
  .common-awards-sheet::before {
    background-image:
      repeating-linear-gradient(
        0deg,
        transparent 0 31px,
        rgba(86, 132, 159, 0.12) 31px 33px
      ),
      radial-gradient(
        circle at 18% 24%,
        rgba(142, 112, 71, 0.08) 0 1px,
        transparent 1.5px
      ),
      radial-gradient(
        circle at 78% 68%,
        rgba(142, 112, 71, 0.07) 0 1px,
        transparent 1.5px
      );
    background-size:
      auto,
      23px 25px,
      29px 31px;
  }
  .judge-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(6px, 2vw, 10px);
  }
  .judge-grid figcaption {
    overflow-wrap: anywhere;
    font-size: clamp(15px, 4.5vw, 18px);
  }
  .judge-grid figcaption strong {
    padding-inline: 5px;
    font-size: clamp(16px, 4.5vw, 18px);
  }
  .award-note-grid {
    grid-template-columns: 1fr;
    padding: 0;
  }
  .award-note {
    grid-template-rows: 250px auto;
  }
  .common-award-notes {
    padding-inline: 0;
  }
  .common-award-notes .award-note {
    grid-template-rows: 190px auto;
  }
  .role-award-note {
    grid-template-rows: 137px auto;
  }
  .detail-sheet {
    padding: 42px 23px;
  }
  .detail-grid {
    grid-template-columns: 1fr;
  }
  .footer-contact {
    padding-bottom: 34px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    margin-bottom: 34px;
  }
  .site-footer .footer-links {
    align-items: center;
    text-align: center;
    width: 100%;
    padding-bottom: 34px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    font-size: 18px;
  }
  .footer-actions {
    flex-direction: column;
    gap: 0;
  }
  .site-footer {
    height: auto;
  }
  .site-footer__inner {
    container-type: inline-size;
    padding-top: 64px;
    padding-bottom: 64px;
    padding-right: 20px;
    padding-left: 20px;
  }
  .footer-organizers {
    flex-wrap: wrap;
    gap: 18px;
  }
  .footer-contact p,
  .footer-contact a,
  .footer-identity p {
    overflow-wrap: anywhere;
    white-space: normal;
  }
  .footer-contact p {
    font-size: min(14.5px, 4.1cqi);
  }
  .footer-contact a {
    font-size: min(16px, 7.5cqi);
  }
  .footer-identity p {
    font-size: min(12px, 3.1cqi);
  }
  .character-link,
  .character-link svg {
    max-width: 100%;
  }
  .check-list li,
  .rule-list li,
  .reward-policy__list > li,
  .common-awards-sheet,
  .award-note,
  .award-note figcaption,
  .award-note figcaption > strong,
  .award-note figcaption > span,
  .award-judge {
    min-width: 0;
    overflow-wrap: anywhere;
  }
  .award-note .award-prize__line {
    white-space: normal;
  }
  .award-judge {
    flex-wrap: wrap;
  }
}

@media (min-width: 600px) and (max-width: 767.95px) {
  .reward-policy__paper {
    min-height: 0;
    padding: 44px 34px;
  }
  .reward-policy__paper::before {
    display: none;
  }
  .reward-policy__columns {
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
  }
  .reward-policy__prizes,
  .reward-prize-list {
    min-width: 0;
  }
  .reward-prize-list li {
    grid-template-columns: minmax(0, max-content) minmax(0, 1fr);
  }
  .reward-prize-list span {
    white-space: normal;
  }
  .reward-prize-list .fit-single-line {
    font-size: inherit !important;
    letter-spacing: 0 !important;
  }
  .reward-prize-list .reward-prize-list__bonus {
    grid-column: 1 / -1;
  }
}

@media (max-width: 340px) {
  .page-content {
    padding-inline: 14px;
  }
  .hero-copy {
    padding-inline: 8px;
  }
  .note-card {
    padding-right: 20px;
    padding-left: 20px;
  }
  #rules {
    width: 100%;
    max-width: 100%;
    grid-template-columns: minmax(0, 1fr);
    justify-items: stretch;
    gap: calc(var(--section-gap) * 0.75);
    overflow-x: clip;
  }
  #rules > .note-card {
    width: auto;
    max-width: 100%;
    min-width: 0;
  }
  .note-card--rules,
  .note-card--guidelines {
    transform: none;
  }
  .note-card--rules {
    padding-top: 116px;
  }
  .check-list li,
  .rule-list li {
    padding-left: 32px;
  }
  .rule-list li::before {
    width: 25px;
    height: 25px;
    font-size: 15px;
  }
  .character-link {
    right: 10px;
    width: min(100%, calc(100% - 20px));
  }
  .countdown-section {
    padding-inline: 0;
  }
  .countdown-card {
    padding-right: 10px;
    padding-left: 10px;
  }
  .reward-policy__paper {
    padding-right: 16px;
    padding-left: 16px;
  }
  .common-awards-sheet {
    padding-right: 12px;
    padding-left: 12px;
  }
  .about-text,
  .hero-copy .hero-declaration,
  .collaboration-stamps,
  .common-awards-sheet {
    overflow-x: clip;
  }
}

@media (max-width: 480px) {
  .judge-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .judge-grid figure {
    grid-template-columns: clamp(76px, 24vw, 96px) minmax(0, 1fr);
    grid-template-rows: auto;
    align-items: center;
    column-gap: 18px;
    text-align: left;
  }
  .judge-portrait {
    width: 100%;
    max-width: none;
    margin: 0;
  }
  .judge-grid figcaption {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto;
    align-items: center;
    justify-items: start;
    width: 100%;
    column-gap: 12px;
    row-gap: 0;
    text-align: left;
  }
  .judge-grid figcaption strong {
    justify-self: end;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .home-white-bg,
  .home-logo,
  .home-vfx,
  .home-pink-vfx,
  .submit-button {
    animation: none !important;
    opacity: 1;
  }
  .home-white-bg,
  .home-logo,
  .home-vfx {
    transform: none;
  }
  .home-stage.is-playing::after {
    opacity: 1;
    clip-path: none;
  }
  .home-pink-vfx {
    opacity: 0;
    clip-path: none;
  }
  .submit-button {
    transform: translateX(-50%);
  }
  .site-header {
    transition: none;
  }
  .polaroid {
    transition: none;
  }
  .pv-modal,
  .pv-modal__content {
    animation: none;
    transition: none;
  }
}

/* Organizer Section Styles */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.notebook-line {
    border: 2px solid #1d1c15;
}

/* Journal Binding Spine Visual */
.journal-container {
    position: relative;
    background: #ffffff;
    border: 2px solid #1d1c15;
    border-left: 15px solid #323029; /* Structured book spine */
    box-shadow: 10px 10px 0px rgba(0,0,0,0.1);
}

/* Repositioned binder holes - fully inside */
.binder-holes {
    position: absolute;
    left: 20px;
    top: 40px;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.hole {
    width: 14px;
    height: 14px;
    border: 2px solid #1d1c15;
    border-radius: 50%;
    background: #fffdf0; /* Match background color for "cut through" look */
}

.grid-pattern {
    background-image: linear-gradient(#e5e7eb 1px, transparent 1px), linear-gradient(90deg, #e5e7eb 1px, transparent 1px);
    background-size: 24px 24px;
}

.handwritten {
    font-family: 'jf-openhuninn', cursive;
}

/* Label at top-left corner */
.corner-label {
    position: absolute;
    top: 0;
    left: 0;
    background: #1d1c15;
    color: #ffffff;
    padding: 4px 16px;
    font-family: 'jf-openhuninn', cursive;
    font-size: 1.25rem;
    z-index: 20;
}

.washi-tape-accent {
    position: absolute;
    width: 80px;
    height: 24px;
    background: rgba(255, 205, 210, 0.6);
    border: 1px solid rgba(0,0,0,0.05);
    z-index: 5;
}

.organizer-polaroid {
  --polaroid-angle: 0deg;
  position: relative;
  width: min(100%, 300px);
  padding: 12px 12px 34px;
  border: 2px solid #1d1c15;
  background: #fff;
  box-shadow: 8px 8px 0 rgb(0 0 0 / 10%);
  transform: rotate(var(--polaroid-angle));
  transform-origin: 50% 12%;
  transition:
    transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 320ms ease;
  will-change: transform;
}

.organizer-polaroid--nekomatsuri {
  --polaroid-angle: 2deg;
}

.organizer-polaroid--president {
  --polaroid-angle: 1deg;
}

.organizer-polaroid__tape {
  top: -16px;
  left: 50%;
  background: rgb(191 219 254 / 60%);
  transform: translateX(-50%) rotate(-3deg);
  transition: transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.organizer-polaroid__image {
  aspect-ratio: 1;
  overflow: hidden;
  border: 2px solid #1d1c15;
}

.organizer-polaroid__image img {
  transition:
    transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 320ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .organizer-polaroid:hover {
    transform: translateY(-10px) rotate(0deg) scale(1.025);
    box-shadow: 14px 18px 0 rgb(0 0 0 / 14%);
  }

  .organizer-polaroid:hover .organizer-polaroid__image img {
    filter: grayscale(0);
    transform: scale(1.06);
  }

  .organizer-polaroid:hover .organizer-polaroid__tape {
    transform: translate(-50%, -3px) rotate(1deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .organizer-polaroid,
  .organizer-polaroid__image img,
  .organizer-polaroid__tape {
    transition: none;
  }
}

.organizer-polaroid__caption {
  margin-top: 18px;
  text-align: center;
}

.organizer-polaroid__caption span {
  font-size: 1.5rem;
  line-height: 1.25;
}

.organizer-quote-heading {
  color: #1d1c15;
}

.journal-container-1 {
  border-left-color: rgb(255, 205, 210);
}

.corner-label-1 {
  background-color: rgb(255, 233, 138);
  color: rgb(29, 28, 21);
  transform: rotate(-2deg);
  top: 8px;
  left: 56px;
  box-shadow: rgba(0, 0, 0, 0.1) 4px 4px 0px;
  padding: 8px 24px;
  min-width: 140px;
  text-align: center;
}

.journal-container-2 {
  border-left-color: #990000;
}

.corner-label-2 {
  background-color: rgb(255, 233, 138);
  color: rgb(29, 28, 21);
  transform: rotate(1deg);
  top: 8px;
  left: 56px;
  box-shadow: rgba(0, 0, 0, 0.1) 4px 4px 0px;
  padding: 8px 24px;
  min-width: 140px;
  text-align: center;
}

.organizer-credits {
  border-left-color: #ffcf56;
  overflow: visible;
}

.organizer-credits__label {
  top: 8px;
  left: 56px;
  min-width: 140px;
  padding: 8px 24px;
  transform: rotate(-1deg);
  background: #ffe98a;
  color: #1d1c15;
  text-align: center;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
}

.organizer-credits-title {
  margin-bottom: 28px !important;
}

.organizer-credits-title h2 {
  flex: 0 0 auto;
  margin: 0;
  font-family: 'jf-openhuninn', cursive;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
}

.organizer-credits-title span {
  flex: 0 0 2px;
  width: 2px;
  height: 46px;
  background: #1d1c15;
}

.organizer-credits__content {
  width: 100%;
  padding: 88px 40px 46px 58px;
}

.organizer-credits__notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.credit-note {
  position: relative;
  display: flex;
  min-height: 155px;
  padding: 34px 22px 24px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff8df;
  color: #1d1c15;
  font-family: 'jf-openhuninn', cursive;
  text-align: center;
  box-shadow: 5px 6px 0 rgba(29, 28, 21, 0.14);
  transform: rotate(-1.2deg);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.credit-note:nth-child(3n + 2) {
  background: #faf3df;
  transform: rotate(1deg);
}

.credit-note:nth-child(3n) {
  background: #fffaf0;
  transform: rotate(-0.5deg);
}

.organizer-credits__notes > .credit-note:last-child,
.credit-note--centered {
  width: calc((100% - 56px) / 3);
  grid-column: 1 / -1;
  justify-self: center;
}

.credit-note:hover {
  z-index: 2;
  box-shadow: 7px 9px 0 rgba(29, 28, 21, 0.18);
  transform: translateY(-3px) rotate(0);
}

.credit-note__tape {
  position: absolute;
  top: -12px;
  left: 50%;
  width: 78px;
  height: 25px;
  transform: translateX(-50%) rotate(-2deg);
  border: 1px solid rgba(29, 28, 21, 0.08);
  background: rgba(255, 255, 255, 0.58);
}

.credit-note:nth-child(even) .credit-note__tape {
  transform: translateX(-50%) rotate(3deg);
}

.credit-note h3 {
  position: relative;
  margin: 0 0 13px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.35;
}

.credit-meme-button {
  position: absolute;
  top: -20px;
  display: inline-grid;
  width: 34px;
  height: 27px;
  margin-left: -3px;
  padding: 0;
  place-items: center;
  border: 0;
  background: transparent;
  color: #2f3740;
  cursor: pointer;
  transition: transform 150ms ease;
  animation: credit-meme-nudge 2.4s ease-in-out infinite;
}

@keyframes credit-meme-nudge {
  0%, 72%, 100% {
    transform: translateY(0) rotate(0);
  }
  80% {
    transform: translateY(-2px) rotate(-3deg);
  }
  88% {
    transform: translateY(1px) rotate(2deg);
  }
  94% {
    transform: translateY(-1px) rotate(-1deg);
  }
}

.credit-meme-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 30'%3E%3Cpath d='M17 3C8.5 3 3 7.2 3 13.5c0 4.5 3.3 8 8.5 9.5L9 28l7-4.2h5c7.5 0 12-4.2 12-10.3S28 3 17 3Z' fill='%23fff' stroke='%232f3740' stroke-width='2' stroke-linejoin='round'/%3E%3Ccircle cx='12' cy='13.5' r='2' fill='%232f3740'/%3E%3Ccircle cx='18' cy='13.5' r='2' fill='%232f3740'/%3E%3Ccircle cx='24' cy='13.5' r='2' fill='%232f3740'/%3E%3C/svg%3E") center / contain no-repeat;
  filter: drop-shadow(1px 2px 0 rgb(29 28 21 / 14%));
}

.credit-meme-button::after {
  content: none;
}

.credit-meme-button span {
  display: none;
}

.credit-meme-button:hover {
  animation-play-state: paused;
  transform: translateY(-2px) rotate(-3deg) scale(1.05);
}

.credit-meme-button:focus-visible {
  animation-play-state: paused;
  outline: 3px solid #d32958;
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .credit-meme-button {
    animation: none;
  }
}

.credit-note p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.55;
}

.credit-note__segment--muted {
  color: #8b8b8b;
}

.credit-note__segment--strikethrough {
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
}

.credit-note a {
  color: inherit;
  text-decoration: none;
}

.credit-note a:hover,
.credit-note a:focus-visible {
  color: #9e304c;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.organizer-sponsors {
  width: min(680px, calc(100% - 32px));
  margin: 0 auto;
  font-family: 'jf-openhuninn', cursive;
}

.organizer-sponsor-list {
  margin-top: 54px;
}

.organizer-sponsor-list__title {
  margin-bottom: 28px !important;
}

.organizer-sponsor-list__title h2 {
  flex: 0 0 auto;
  margin: 0;
  font-family: 'jf-openhuninn', cursive;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
}

.organizer-sponsor-list__title span {
  flex: 0 0 2px;
  width: 2px;
  height: 46px;
  background: #1d1c15;
}

.sponsor-note {
  position: relative;
  min-height: 135px;
  padding: 34px 24px 22px;
  background: #f7efdc;
  text-align: center;
  box-shadow: 5px 6px 0 rgba(29, 28, 21, 0.14);
  transform: rotate(0.8deg);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.sponsor-note:hover {
  box-shadow: 7px 9px 0 rgba(29, 28, 21, 0.18);
  transform: translateY(-3px) rotate(0);
}

.sponsor-note__pin {
  position: absolute;
  top: 12px;
  left: 50%;
  width: 12px;
  height: 12px;
  transform: translateX(-50%);
  border: 2px solid rgba(29, 28, 21, 0.25);
  border-radius: 50%;
  background: #e94f64;
  box-shadow: 1px 2px 0 rgba(29, 28, 21, 0.2);
}

.organizer-sponsors dt,
.organizer-sponsors dd {
  margin: 0;
}

.organizer-sponsors dt {
  margin-bottom: 10px;
  font-size: 1.25rem;
  font-weight: 700;
}

.organizer-sponsors dd {
  font-size: 1.05rem;
  line-height: 1.6;
}

@media (max-width: 899px) {
  .organizer-credits__notes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .organizer-credits__notes > .credit-note:last-child,
  .credit-note--centered {
    width: auto;
    grid-column: auto;
  }
}

@media (max-width: 639px) {
  .organizer-credits-title,
  .organizer-sponsor-list__title {
    gap: 15px;
  }

  .organizer-credits-title h2,
  .organizer-sponsor-list__title h2 {
    font-size: 2rem;
  }

  .organizer-credits-title span,
  .organizer-sponsor-list__title span {
    height: 36px;
  }

  .organizer-credits__content {
    padding: 84px 18px 32px 50px;
  }

  .organizer-credits__notes {
    grid-template-columns: 1fr;
  }

  .organizer-credits__notes {
    gap: 30px;
    justify-items: center;
  }

  .credit-note {
    width: 100%;
    max-width: 330px;
    min-height: 135px;
  }

  .organizer-sponsors {
    width: calc(100% - 16px);
  }
}
/* Discourage long-press menus, selection, and dragging on site artwork. */
img {
  -webkit-touch-callout: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  user-select: none;
}
