#show-test-toggle {
  display: none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
video {
  display: inline-block;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden] {
  display: none;
}
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
}
a:focus {
  outline: thin dotted;
}
a:active,
a:hover {
  outline: 0;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
abbr[title] {
  border-bottom: 1px dotted;
}
b,
strong {
  font-weight: bold;
}
dfn {
  font-style: italic;
}
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}
mark {
  background: #ff0;
  color: #000;
}
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em;
}
pre {
  white-space: pre-wrap;
}
q {
  quotes: "\201C""\201D""\2018""\2019";
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
img {
  border: 0;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 0;
}
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
legend {
  border: 0;
  padding: 0;
}
button,
input,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
}
button,
input {
  line-height: normal;
}
button,
select {
  text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
input[type="search"] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
textarea {
  overflow: auto;
  vertical-align: top;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
*,
*::after,
*::before {
  box-sizing: border-box;
}

:root {
  font-size: 32px;
  --red: #de4237;
  --yellow: #ffc65c;
  --blue: #004092;
  --white: #ffffff;
  --black: #000000;
  --rounded-md: 20px;
  --rounded-lg: 40px;
  --space-md: 16px;
}

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

@font-face {
  font-family: "Jost";
  src: url("../font/Jost-SemiBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
}

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

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
.message {
  font-family: "Jost", sans-serif;
}

.container {
  background-color: black;
  min-height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-y: auto;
}

.wrapper {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  gap: 20px;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
}

/* div[id^="zone"] {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(4, 1fr);
  background-color: white;
  flex: 0 0 auto;
  aspect-ratio: 2 / 4;
  height: 100vh;
  width: auto;
  position: relative;
  border-radius: 12px;
} */

div[id^="zone"] {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(4, 1fr);
  background-color: white;
  flex: 1;
  height: 100vh;
  width: auto;
  position: relative;
  border-radius: 12px;
}

.zone.with-data {
  padding: 20px;
  background-color: white;
  box-sizing: border-box;
  border-radius: 30px;
}

/* Base Box Styling */
div[id^="box"] {
  border-radius: var(--rounded-md);
  background-color: var(--red);
  padding: var(--space-md);
  transition: all 200ms ease-out;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Box Animations */
.box-zoom-in {
  transform: scale(1.05) !important;
}

.box-entrance {
  animation: entrance 200ms ease-out;
}

@keyframes entrance {
  0% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.05) rotate(3deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
  }
}

/* Box 11 (1x1) */
.box-11 {
  grid-column: span 1;
  grid-row: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 20px;
  gap: 8px;
  background-color: var(--red);
  border-radius: var(--rounded-md);
  overflow: hidden;
}

.box-11.bg-red {
  background-color: var(--red);
}

.box-11.bg-blue {
  background-color: var(--blue);
}

.box-11.bg-yellow {
  background-color: var(--yellow);
}

.box-11 .bib-row p,
.box-11 .name-row p {
  color: var(--white);
}

.box-11.bg-yellow .bib-row p,
.box-11.bg-yellow .name-row p {
  color: var(--black);
}

.box-11 .box-info {
  display: flex;
  flex-direction: column;
  position: relative;
}

.box-11 .bib-row {
  position: relative;
  bottom: 95%;
}

.box-11 .bib-row p {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

.box-11 .name-row {
  position: absolute;
  top: 10%;
  left: 0;
  width: 100%;
  z-index: 2;
  display: flex;
}

.box-11 .name-row p {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

/* Box 12 (2x1 bib running) */
.box-12 {
  grid-column: 1 / 2;
  grid-row: 1 / span 2;
  background-color: var(--yellow);
  border-radius: var(--rounded-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 0;
}

.box-12.bg-red {
  background-color: var(--red);
}

.box-12.bg-blue {
  background-color: var(--blue);
}

.box-12.bg-yellow {
  background-color: var(--yellow);
}

/* Row 1: BIB */
.box-12 .row.bib-row {
  flex: 0 0 70%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
}

.box-12 .bib-lines {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  transform: translateY(-12%);
}

.box-12 .bib-line {
  font-family: "JockeyOne", sans-serif !important;
  width: 200%;
  white-space: nowrap;
  color: var(--blue);
  line-height: 1;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.bib-line-inner {
  display: inline-block;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.bib-line:nth-child(odd) {
  transform: skewX(10deg);
}

.bib-line:nth-child(even) {
  transform: skewX(-10deg);
}

.bib-line:nth-child(odd) .bib-line-inner {
  animation: bibRight 20s linear infinite;
}

.bib-line:nth-child(even) .bib-line-inner {
  animation: bibLeft 20s linear infinite;
}

.box-12 .bib-line span {
  display: inline-block;
  margin-right: 0.3rem;
  font-size: 2.2em;
  font-weight: 800;
}

.box-12.bg-red .bib-line span.filled,
.box-12.bg-blue .bib-line span.filled {
  color: var(--yellow);
}
.box-12.bg-red .bib-line span.outline,
.box-12.bg-blue .bib-line span.outline {
  color: transparent;
  -webkit-text-stroke: 1px var(--yellow);
}

.box-12.bg-yellow .bib-line span.filled {
  color: var(--blue);
}
.box-12.bg-yellow .bib-line span.outline {
  color: transparent;
  -webkit-text-stroke: 1px var(--blue);
}

/* Row 2: Name / Wording */
.box-12 .row.content-row {
  flex: 0 0 30%;
  display: block;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  padding-top: 5%;
}

.box-12 .row.content-row .text-content {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  max-width: 80%;
}

.box-12.bg-red .text-content,
.box-12.bg-blue .text-content {
  color: var(--white);
}

.box-12.bg-yellow .text-content {
  color: var(--black);
}

@keyframes bibRight {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0%);
  }
}
@keyframes bibLeft {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-50%);
  }
}

/* === BOX 13 DEFAULT === */
.box-13 {
  grid-column: 1 / 3;
  grid-row: 4;
  border-radius: var(--rounded-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  position: relative;
  padding: 0 50px;
}

.box-13.bg-red {
  background-color: var(--red);
}

.box-13.bg-blue {
  background-color: var(--blue);
}

.box-13.bg-yellow {
  background-color: var(--yellow);
}

.box-13 .message {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
}

.box-13 .left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.box-13 .bib-row p,
.box-13 .name-row p {
  margin: 0;
  color: var(--white);
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.2;
}

.box-13 .accent-icon-large {
  width: 2.5em;
  height: auto;
  justify-self: end;
}

/* === BOX 13: WORDING MODE === */
.box-13.wording-mode .message {
  grid-template-columns: 1fr;
  justify-items: center;
}

.box-13.wording-mode .left {
  display: flex;
  justify-content: center;
  align-items: center;
}

.box-13.wording-mode .text-wrapper {
  width: 100%;
}

.box-13.wording-mode .accent-icon-large {
  display: none;
}

.box-13.wording-mode .bib-row,
.box-13.wording-mode .name-row {
  display: none;
}

/* Box 14 - Middle Large Photo (2x2) */
.box-14 {
  grid-column: 1 / 3;
  grid-row: 2 / 4;
  padding: 0;
  position: relative;
  border-radius: var(--rounded-md);
  overflow: hidden;
}

.box-14 .photo {
  position: relative;
  width: 100%;
  height: 100%;
}

.box-14 .photo-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(100%);
  z-index: 0;
}

/* Overlay hitam fade dari bawah ke atas */
.box-14 .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  z-index: 1;
}

/* Kontainer BIB dan name di atas overlay */
.box-14 .photo-info {
  position: absolute;
  left: 5%;
  bottom: 10%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

/* Kotak BIB */
.box-14 .bib-tag {
  background-color: var(--blue);
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 8px;
  display: inline-block;
  letter-spacing: 1px;
}

/* Nama di bawah BIB */
.box-14 .runner-name {
  color: var(--white);
  font-weight: 700;
  margin: 0;
}

/* Box 15 - Info + Small Photo (2x1 layout) */
.box-15 {
  grid-column: 1 / 3;
  background: var(--blue);
  border-radius: var(--rounded-md);
  display: flex;
  overflow: hidden;
  min-height: 220px;
}

.box-15 .message {
  display: flex;
  width: 100%;
  height: 100%;
}

/* KIRI: teks info */
.box-15 .left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 5%;
  gap: 10px;
}

.box-15 .bib-row p {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--yellow);
  margin: 0;
  line-height: 1.1;
}

.box-15 .name-row p {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
  line-height: 1.1;
}

/* KANAN: foto */
.box-15 .right {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: inherit;
}

/* FOTO */
.box-15 .photo-full {
  position: relative;
  width: 90%;
  height: 90%;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.box-15 .photo-full .photo-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(100%);
  z-index: 1;
  border-radius: 20px;
}

.box-15 .photo-full .photo-year {
  position: absolute;
  right: 30%;
  background: var(--blue);
  color: white;
  font-size: 1rem;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 5px;
  z-index: 2;
  transform: rotate(-90deg);
  transform-origin: top right;
  white-space: nowrap;
}

.photo-year-wrapper {
  position: absolute;
  right: 30%;
  top: 0;
  transform: rotate(-90deg);
  transform-origin: top right;
  z-index: 2;
}

.photo-year {
  background: var(--blue);
  color: white;
  font-size: 1rem;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 5px;
  white-space: nowrap;
}

/* === BOX 15: WORDING MODE === */
.box-15.wording-mode {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: var(--blue);
  text-align: center;
}

.box-15.wording-mode .left,
.box-15.wording-mode .right {
  display: none;
}

.box-15.wording-mode .wording-text {
  display: block !important;
  width: 100%;
  padding: 10%;
  font-size: 1.2Srem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

/* Box 16 - 2x2 tanpa foto, BIB running + nama */
.box-16 {
  grid-column: 1 / 3;
  grid-row: 2 / 4;
  background-color: var(--red);
  border-radius: var(--rounded-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 0;
}

.box-16.bg-red {
  background-color: var(--red);
}

.box-16.bg-blue {
  background-color: var(--blue);
}

.box-16.bg-yellow {
  background-color: var(--yellow);
}

/* Row 1: BIB */
.box-16 .row.bib-row {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
}

.box-16 .bib-lines {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  transform: translateY(-18%);
}

.box-16 .bib-line {
  font-family: "JockeyOne", sans-serif !important;
  width: 200%;
  white-space: nowrap;
  color: var(--yellow);
  line-height: 1;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.bib-line:nth-child(odd) {
  transform: skewX(10deg);
}

.bib-line:nth-child(even) {
  transform: skewX(-10deg);
}

.bib-line:nth-child(odd) .bib-line-inner {
  animation: bibRight 20s linear infinite;
}

.bib-line:nth-child(even) .bib-line-inner {
  animation: bibLeft 20s linear infinite;
}

.box-16 .bib-line span {
  display: inline-block;
  margin-right: 0.3rem;
  font-size: 2.1rem;
  font-weight: 800;
}

.box-16.bg-red .bib-line span.filled,
.box-16.bg-blue .bib-line span.filled {
  color: var(--yellow);
}
.box-16.bg-red .bib-line span.outline,
.box-16.bg-blue .bib-line span.outline {
  color: transparent;
  -webkit-text-stroke: 1px var(--yellow);
}

.box-16.bg-yellow .bib-line span.filled {
  color: var(--blue);
}
.box-16.bg-yellow .bib-line span.outline {
  color: transparent;
  -webkit-text-stroke: 1px var(--blue);
}

.box-16 .row.content-row {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 5%;
}

.box-16 .row.content-row {
  justify-content: flex-start;
}

.box-16 .row.content-row.center-mode {
  justify-content: center;
  align-items: center;
}

.box-16 .row.content-row .text-content {
  font-weight: 700;
  margin: 10%;
  line-height: 1;
  max-width: 90%;
}

.box-16.bg-red .text-content,
.box-16.bg-blue .text-content {
  color: var(--white);
}

.box-16.bg-yellow .text-content {
  color: var(--black);
}

/* Box 17 - Photo Grid with Diagonal Scroll (2x2) */
.box-17 {
  grid-column: 1 / 3;
  grid-row: 2 / 4;
  padding: 0;
  background-color: var(--white);
  border-radius: var(--rounded-md);
  overflow: hidden;
  position: relative;
}

/* Box 18 - Photo Grid with Diagonal Scroll (2x3) */
.box-18 {
  grid-column: 1 / 3;
  grid-row: 3 / 4;
  padding: 0;
  background-color: var(--white);
  border-radius: var(--rounded-md);
  overflow: hidden;
  position: relative;
}

.box-17 .box-18 .photo-grid-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.box-17 .box-18 .grid-wrapper {
  position: absolute;
  top: -50%;
  will-change: transform;
  transform-origin: center center;
}

.box-17 .box-18 .grid-photo {
  position: relative;
  transition: transform 0.3s ease;
}

.box-17 .box-18 .grid-wrapper {
  animation: verticalScroll 8s linear infinite;
}

@keyframes verticalScroll {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(10%);
  }
}

@keyframes diagonalScroll {
  from {
    transform: translate(10%, -10%) scale(1.5);
  }
  to {
    transform: translate(-10%, 10%) scale(1.5);
  }
}

/* Box 19 - 2x1 BIB + Name */
.box-19 {
  grid-column: 1 / 3;
  grid-row: span 1;
  border-radius: var(--rounded-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  position: relative;
  overflow: hidden;
  background-color: var(--red);
}

.box-19.bg-red {
  background-color: var(--red);
}

.box-19.bg-blue {
  background-color: var(--blue);
}

.box-19.bg-yellow {
  background-color: var(--yellow);
}

/* === Name Styling === */
.box-19:not(.wording-mode) .name-row {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: left;
  max-width: 70%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  word-break: break-word;
  line-height: 1;
  transition: opacity 0.3s ease;
}

.box-19.bg-red .name-row,
.box-19.bg-blue .name-row {
  color: var(--white);
}

.box-19.bg-yellow .name-row {
  color: var(--black);
}

/* === BIB Styling === */
.box-19:not(.wording-mode) .bib-row {
  border-radius: 20px;
  padding: 10px 15px;
  writing-mode: vertical-rl;
  text-align: center;
  flex-shrink: 0;
  transition: opacity 0.3s ease;
}

.box-19.bg-red .bib-row {
  background-color: var(--white);
  color: var(--red);
}

.box-19.bg-blue .bib-row {
  background-color: var(--white);
  color: var(--blue);
}

.box-19.bg-yellow .bib-row {
  background-color: var(--black);
  color: var(--white);
}

/* Bib inner <p> */
.box-19:not(.wording-mode) .bib-row p {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
}

/* === Wording Mode === */
.box-19.wording-mode {
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center;
  padding: 0;
}

.box-19.wording-mode .name-row,
.box-19.wording-mode .bib-row {
  display: none !important;
}

.box-19 p.wording {
  position: relative;
  transform: none;
  top: auto;
  left: auto;
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  text-align: center;
  opacity: 0;
  display: none;
  max-width: 90%;
  line-height: 1.4;
  color: var(--white);
}

.box-19.bg-yellow p.wording {
  color: var(--black);
}

/* DEFAULT STYLING FOR DEFAULT ZONE WITH BOOK  */

.default-zone {
  background-color: black;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  grid-column: 1 / 3;
  grid-row: 1 / 5;
  text-align: center;
  padding: 20px;
  overflow: hidden;
  perspective: 1400px;
  perspective-origin: 50% 50%;
}

.default-zone h2 {
  font-size: 1.3rem;
  color: white;
  margin-bottom: 15%;
  min-height: 12%;
}

.book-wrapper {
  width: 100%;
  flex-direction: column;
  align-items: left;
  justify-content: center;
  margin-left: 33%;
  position: relative;
  perspective: 1600px;
  perspective-origin: 50% 50%;
}

.book {
  width: 70%;
  aspect-ratio: 3 / 4;
  background-color: var(--red);
  margin: 30px 0;
  border-radius: var(--rounded-md);
  position: relative;
  overflow: hidden;
  max-height: 80vh;
  z-index: 3;
  transform-style: preserve-3d;
  perspective: 2000px;
  transform-origin: left center;
}

/* LOGO ON BOOK COVER */
.logo-top,
.logo-bottom {
  position: absolute;
  max-width: 95%;
  z-index: 2;
}

/* LOGO BORMAR */
.logo-top {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  height: 35%;
  width: auto;
}

/* LOGO TEMA */
.logo-bottom {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  height: 25%;
  width: auto;
}

/* VERTICAL LINE ON BOOK COVER */
.book::before {
  content: "";
  position: absolute;
  top: 0;
  left: 5%;
  width: 3%;
  height: 100%;
  background-color: #b02b2e;
  z-index: 3;
}

.yellow-ribbon {
  width: 5%;
  height: 10%;
  background-color: var(--yellow);
  border-radius: 0 0 var(--rounded-md) var(--rounded-md);
  position: relative;
  top: -50px;
  left: 5%;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 75%, 0 100%);
  z-index: 1;
}

.accent-icon {
  height: 6%;
  width: auto;
  margin-top: 15%;
}

.hidden {
  display: none !important;
}

.cover {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  backface-visibility: hidden;
  border-radius: var(--rounded-md);
  background-color: var(--red);
  overflow: hidden;
  transform-origin: left center;
  transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1);
}

/* VERTICAL LINE ON BOOK COVER */
.cover::before {
  content: "";
  position: absolute;
  top: 0;
  left: 5%;
  width: 3%;
  height: 100%;
  background-color: #b02b2e;
  z-index: 3;
}

.cover.front {
  z-index: 4;
}

.cover.back {
  transform: rotateY(180deg);
  background-color: var(--red);
  z-index: 3;
}

.book-inner-page {
  position: absolute;
  top: 0;
  width: 70%;
  aspect-ratio: 3 / 4;
  border-radius: var(--rounded-md);
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  inset: 0;
  opacity: 0;
  z-index: 2;
  top: 6%;
  transition: opacity 0.3s ease;
}

.book-inner-page .logo-center {
  top: 12%;
  height: 34%;
}

.default-zone {
  transition: opacity 300ms ease;
  will-change: opacity;
}

.zone.bg-red .book,
.zone.bg-red .cover,
.zone.bg-red .cover.back {
  background-color: var(--red);
}

.zone.bg-blue .book,
.zone.bg-blue .cover,
.zone.bg-blue .cover.back {
  background-color: var(--blue);
}

.zone.bg-yellow .book,
.zone.bg-yellow .cover,
.zone.bg-yellow .cover.back {
  background-color: var(--yellow);
}

.zone.bg-red .cover::before,
.zone.bg-red .book::before {
  background-color: #a83028;
}

.zone.bg-blue .cover::before,
.zone.bg-blue .book::before {
  background-color: #06346e;
}

.zone.bg-yellow .cover::before,
.zone.bg-yellow .book::before {
  background-color: #d09d3c;
}

.zone.bg-yellow .yellow-ribbon {
  background-color: var(--red);
}
