/* Bunnyroll export: re-exporting replaces manual edits here. */
:root {
  --br-layout-width: 100vw;
  --br-rendered-width: var(--br-layout-width);
}

/* Bunnyroll layout helpers */

#container {
  width: var(--br-layout-width);
  max-width: none;
  margin: 0 auto;
  overflow-x: hidden;
  overflow-x: clip;
}

#content {
  padding: 0;
}

.br-pge {
  container-type: inline-size;
  position: relative;
  width: 100%;
  aspect-ratio: 1280 / 1611;
  overflow: hidden;
  isolation: isolate;
  background-color: #bdbdffff;
}

.br-ele {
  position: absolute;
  margin: 0;
  transform-origin: center;
}

.br-img img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 3px;
  max-width: none;
  margin: 0;
}

/* External embeds are deliberately identifiable in exported HTML via
   .br-embed, data-br-embed-provider, and data-br-embed-consent. */
.br-embed {
  overflow: hidden;
  border-radius: 0.46875cqw;
  background: var(--br-theme-panel, #f5f5f0);
}

.br-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.br-embed[data-br-embed-type="code"][data-br-embed-status="loaded"] {
  overflow: visible;
  border-radius: 0;
  background: transparent;
}

.br-embed-consent {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.78125cqw;
  width: 100%;
  height: 100%;
  padding: 1.7187500000000002cqw;
  border: 0.15625cqw dashed var(--br-theme-button-detail, #777);
  color: var(--br-theme-text, #171717);
  text-align: center;
  font-size: 1.09375cqw;
  line-height: 1.35;
}

.br-embed-consent span {
  max-width: 34em;
  opacity: 0.75;
  font-size: 0.85em;
}

.br-embed-consent button {
  min-height: 2.96875cqw;
  padding: 0 1.25cqw;
  border: 0.078125cqw solid var(--br-theme-button-detail, #777);
  border-radius: 0.625cqw;
  color: var(--br-theme-button-text, #171717);
  background: var(--br-theme-button, #fff);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.br-embed-error {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 1.7187500000000002cqw;
  color: var(--br-theme-text, #171717);
  text-align: center;
  font-size: 1.09375cqw;
}

.br-txt {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0.78125cqw;
  overflow-wrap: anywhere;
  line-height: 1.08;
  border-radius: 0.234375cqw;
}

.br-ftr {
  position: absolute;
  z-index: 900;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.875cqw;
  width: 100%;
  height: 4.375cqw;
  background-color: #bdbdffff;
  padding: 0 1.875cqw;
  font-size: 1.09375cqw;
  line-height: 1.4;
}

.br-cnt {
  width: 100%;
  min-width: 0;
  min-height: 1em;
  white-space: pre-wrap;
}

.br-txt [data-br-text-effect-char="wavy"],
.br-txt [data-br-text-effect-char="shake"] {
  position: relative;
}

.br-txt [data-br-text-effect-char="wavy"] {
  animation: br-text-wavy 1800ms ease-in-out infinite;
  animation-delay: var(--br-text-effect-delay);
}

.br-txt [data-br-text-effect-char="shake"] {
  animation: br-text-shake 240ms linear infinite;
  animation-delay: var(--br-text-effect-delay);
}

.br-txt [data-br-text-effect-char="rainbow"] {
  animation: br-text-rainbow 1800ms linear infinite;
  animation-delay: var(--br-text-effect-delay);
}

@keyframes br-text-wavy {
  0%, 100% { top: 0; }
  25% { top: -0.16em; }
  75% { top: 0.16em; }
}

@keyframes br-text-shake {
  0%, 100% { top: 0; left: 0; }
  25% { top: -0.06em; left: 0.04em; }
  50% { top: 0.04em; left: -0.05em; }
  75% { top: -0.03em; left: -0.03em; }
}

@keyframes br-text-rainbow {
  0%, 100% { color: #ff365d; }
  17% { color: #ff9f1c; }
  33% { color: #ffe53b; }
  50% { color: #33d17a; }
  67% { color: #3584e4; }
  83% { color: #a855f7; }
}

@media (prefers-reduced-motion: reduce) {
  .br-txt [data-br-text-effect-char] { animation: none; }
}


.br-txt p,
.br-txt ul,
.br-txt ol {
  margin: 0 0 0.45em;
  line-height: inherit;
}

.br-txt > :last-child {
  margin-bottom: 0;
}

.br-txt ul,
.br-txt ol {
  padding-left: 1.2em;
}

#content .br-txt li {
  line-height: inherit;
}

.br-pge::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: linear-gradient(#ffffff54 0.3125cqw, transparent 0.3125cqw);
  background-size: 3.359375cqw 3.359375cqw;
  background-position: 0 0;
  background-repeat: repeat;
}

#item-1-1 {
  left: 3.359375%;
  top: 4.6875cqw;
  width: 22.421875%;
  height: 17.65625cqw;
  transform: rotate(-1deg);
  z-index: 7;
  opacity: 1;
}

#item-1-1 img {
  object-fit: contain;
  transform: scale(var(--br-image-link-scale, 1)) scaleX(1) scaleY(1);
}

#item-2-1 {
  left: 29.062500000000004%;
  top: 5cqw;
  width: 6.25%;
  height: 6.25cqw;
  transform: rotate(7deg);
  z-index: 20;
  opacity: 0.92;
}

#item-2-1 img {
  object-fit: contain;
  transform: scale(var(--br-image-link-scale, 1)) scaleX(1) scaleY(1);
}

#item-3-1 {
  left: 27.500000000000004%;
  top: 5.9375cqw;
  width: 8.4375%;
  height: 8.4375cqw;
  transform: rotate(7deg);
  z-index: 1;
  opacity: 1;
}

#item-3-1 img {
  object-fit: contain;
  transform: scale(var(--br-image-link-scale, 1)) scaleX(1) scaleY(1);
}

#item-4-1 {
  left: 56.56250000000001%;
  top: 8.671875cqw;
  width: 12.890625%;
  height: 18.75cqw;
  transform: rotate(8deg);
  z-index: 8;
  opacity: 1;
}

#item-4-1 img {
  object-fit: contain;
  transform: scale(var(--br-image-link-scale, 1)) scaleX(1) scaleY(1);
}

#item-5-1 {
  left: 39.609375%;
  top: 10.703125cqw;
  width: 20.3125%;
  height: 3.75cqw;
  transform: rotate(-4deg);
  z-index: 9;
  opacity: 1;
}

#item-5-1 .br-txt {
  font-family: var(--br-font-verdana);
  font-size: 5.46875cqw;
  font-weight: 700;
  color: #6E44FF;
  text-align: center;
}

#item-6-1 {
  left: 31.71875%;
  top: 17.109375cqw;
  width: 26.5625%;
  height: 7.5cqw;
  transform: rotate(3deg);
  z-index: 15;
  opacity: 1;
}

#item-6-1 .br-txt {
  font-family: var(--br-font-verdana);
  font-size: 1.9cqw;
  font-weight: 400;
  color: #6E44FFff;
  text-align: center;
}

#item-7-1 {
  left: 18.359375%;
  top: 25.234374999999996cqw;
  width: 5.234375%;
  height: 5.234375cqw;
  transform: rotate(-3deg);
  z-index: 13;
  opacity: 1;
}

#item-7-1 img {
  object-fit: contain;
  transform: scale(var(--br-image-link-scale, 1)) scaleX(1) scaleY(1);
}

#item-8-1 {
  left: 31.71875%;
  top: 28.203125cqw;
  width: 36.640625%;
  height: 27.500000000000004cqw;
  transform: rotate(0deg);
  z-index: 17;
  opacity: 1;
}

#item-8-1 img {
  object-fit: contain;
  transform: scale(var(--br-image-link-scale, 1)) scaleX(1) scaleY(1);
}

#item-9-1 {
  left: -1.015625%;
  top: 28.359374999999996cqw;
  width: 22.265625%;
  height: 8.046875cqw;
  transform: rotate(-3deg);
  z-index: 16;
  opacity: 1;
}

#item-9-1 .br-txt {
  font-family: var(--br-font-astloch);
  font-size: 1.9cqw;
  font-weight: 400;
  color: #0a0a16;
  text-align: center;
}

#item-10-1 {
  left: 75.9375%;
  top: 29.843750000000004cqw;
  width: 11.40625%;
  height: 18.75cqw;
  transform: rotate(0deg);
  z-index: 4;
  opacity: 1;
}

#item-10-1 img {
  object-fit: contain;
  transform: scale(var(--br-image-link-scale, 1)) scaleX(-1) scaleY(1);
}

#item-11-1 {
  left: 26.25%;
  top: 47.5cqw;
  width: 3.515625%;
  height: 7.890625cqw;
  transform: rotate(24deg);
  z-index: 14;
  opacity: 1;
}

#item-11-1 img {
  object-fit: contain;
  transform: scale(var(--br-image-link-scale, 1)) scaleX(-1) scaleY(1);
}

#item-12-1 {
  left: 65.546875%;
  top: 53.75cqw;
  width: 4.140625%;
  height: 4.140625cqw;
  transform: rotate(-211deg);
  z-index: 18;
  opacity: 1;
}

#item-12-1 img {
  object-fit: contain;
  transform: scale(var(--br-image-link-scale, 1)) scaleX(1) scaleY(1);
}

#item-13-1 {
  left: 27.968749999999996%;
  top: 55.234375cqw;
  width: 26.5625%;
  height: 7.5cqw;
  transform: rotate(3deg);
  z-index: 19;
  opacity: 1;
}

#item-13-1 .br-txt {
  font-family: var(--br-font-verdana);
  font-size: 1.9cqw;
  font-weight: 400;
  color: #6E44FFff;
  text-align: center;
}

#item-14-1 {
  left: 44.296875%;
  top: 64.765625cqw;
  width: 19.84375%;
  height: 18.75cqw;
  transform: rotate(-5deg);
  z-index: 5;
  opacity: 1;
}

#item-14-1 img {
  object-fit: contain;
  transform: scale(var(--br-image-link-scale, 1)) scaleX(-1) scaleY(1);
}

#item-15-1 {
  left: 6.406249999999999%;
  top: 67.8125cqw;
  width: 12.5%;
  height: 12.5cqw;
  transform: rotate(-7deg);
  z-index: 12;
  opacity: 1;
}

#item-15-1 img {
  object-fit: contain;
  transform: scale(var(--br-image-link-scale, 1)) scaleX(1) scaleY(1);
}

#item-16-1 {
  left: 7.03125%;
  top: 73.90625cqw;
  width: 32.421875%;
  height: 32.421875cqw;
  transform: rotate(-8deg);
  z-index: 11;
  opacity: 1;
}

#item-16-1 img {
  object-fit: contain;
  transform: scale(var(--br-image-link-scale, 1)) scaleX(1) scaleY(1);
}

#item-17-1 {
  left: 53.515625%;
  top: 76.09375cqw;
  width: 12.5%;
  height: 12.5cqw;
  transform: rotate(37deg);
  z-index: 2;
  opacity: 1;
}

#item-17-1 img {
  object-fit: contain;
  transform: scale(var(--br-image-link-scale, 1)) scaleX(1) scaleY(1);
}

#item-18-1 {
  left: 73.203125%;
  top: 81.25cqw;
  width: 7.968749999999999%;
  height: 12.65625cqw;
  transform: rotate(9deg);
  z-index: 6;
  opacity: 1;
}

#item-18-1 img {
  object-fit: contain;
  transform: scale(var(--br-image-link-scale, 1)) scaleX(1) scaleY(1);
}

#item-19-1 {
  left: 74.6875%;
  top: 91.875cqw;
  width: 7.03125%;
  height: 7.03125cqw;
  transform: rotate(-42deg);
  z-index: 3;
  opacity: 1;
}

#item-19-1 img {
  object-fit: contain;
  transform: scale(var(--br-image-link-scale, 1)) scaleX(1) scaleY(1);
}

#item-20-1 {
  left: 36.71875%;
  top: 96.640625cqw;
  width: 32.03125%;
  height: 5.78125cqw;
  transform: rotate(0deg);
  z-index: 10;
  opacity: 0.86;
}

#item-20-1 .br-txt {
  font-family: var(--br-font-inter);
  font-size: 1.875cqw;
  font-weight: 600;
  color: #230903;
  text-align: center;
}

@media (max-width: 600px) {
  :root:not([data-br-layout]) #content {
    overflow: hidden;
  }

  :root:not([data-br-layout]) .br-pge {
    --br-rendered-width: calc(2.1333333333333333 * var(--br-layout-width));
    width: calc(2.1333333333333333 * 100%);
    margin-left: -56.666666666666664%;
  }
}

:root[data-br-layout="desktop"] .br-pge {
  --br-rendered-width: var(--br-layout-width);
  width: 100%;
  margin-left: 0;
}

:root[data-br-layout="mobile"] #content {
  overflow: hidden;
}

:root[data-br-layout="mobile"] .br-pge {
  --br-rendered-width: calc(2.1333333333333333 * var(--br-layout-width));
  width: calc(2.1333333333333333 * 100%);
  margin-left: -56.666666666666664%;
}
