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

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

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

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

:root {
  --font-family-base: "Poppins", system-ui, sans-serif;
  --font-family-paper: "Poppins", system-ui, sans-serif;
  --line-height-body: 1.75;
  --color-text: #241f1b;
  --color-paper-text: #241f1b;
  --color-background: #fefdfc;
  --color-border: rgba(36, 31, 27, 0.12);
  --color-link: #241f1b;
  --site-grid-line: transparent;
  --site-grid-size: 32px;

  --header-height: 150px;
  --header-shell-width: 1440px;
  --header-background: #f4ecdf;
  --header-accent: #5b3000;
  --header-logo-width: 390px;
  --header-logo-height: auto;

  --footer-shell-width: 1440px;
  --footer-background: #f4ecdf;
  --footer-text: #5b3000;

  --sticker-border: 4px solid #ffffff;
  --sticker-radius: 1.4rem;
  --sticker-control-bg: #fffaf2;
  --sticker-panel-bg: #fffaf2;
  --sticker-shadow: 0 0 0 1px rgba(91, 48, 0, 0.25);
  --reading-control-font: "Atkinson Hyperlegible", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  margin: 0;
  padding-top: var(--header-height);
  background: #FEFDFC;
  color: #241f1b;
  font-family: var(--font-family-base);
  line-height: 1.75;
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

/* HEADER */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  width: 100%;
  height: var(--header-height);
  background: var(--header-background);
}

.site-header__inner {
  width: min(100%, var(--header-shell-width));
  height: 100%;
  margin-inline: auto;
  padding-inline: clamp(1.5rem, 4vw, 3.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.site-header__brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
}

.site-header__brand-link {
  display: inline-flex;
  align-items: center;
}

.site-header__logo {
  width: var(--header-logo-width);
  height: auto;
  object-fit: contain;
}

.site-header__nav {
  width: auto;
  margin: 0;
  padding: 0;
  flex: 0 0 auto;
  display: flex;
  justify-content: flex-end;
  min-width: 0;
}

.site-header__menu {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: clamp(0.45rem, 1vw, 0.8rem);
  margin: 0;
  padding: 0;
  list-style: none;
  border: 0;
  border-radius: 0;
  max-width: 100%;
}

.site-header__item {
  position: relative;
}

.site-header__link,
.site-header__language-toggle,
.site-header__language-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family-base);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--header-accent);
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-header__link,
.site-header__language-toggle {
  min-height: 42px;
  padding: 0.7rem 0.9rem;
  border: var(--sticker-border);
  border-radius: var(--sticker-radius);
  background: var(--sticker-control-bg);
  box-shadow: var(--sticker-shadow);
}

.site-header__link::after,
.site-header__language-toggle::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.15rem;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
}

.site-header__link:hover::after,
.site-header__link:focus-visible::after,
.site-header__item.is-active > .site-header__link::after,
.site-header__item.is-active > .site-header__language-toggle::after {
  transform: scaleX(1);
}

.site-header__language {
  position: relative;
}

.site-header__language-toggle {
  position: relative;
  gap: 0.45rem;
}

.site-header__language-toggle-icon {
  display: inline-block;
  font-size: 10px;
  transform: translateY(-1px);
}

.site-header__language-menu {
  position: absolute;
  top: calc(100% + 0.7rem);
  left: 50%;
  min-width: 10rem;
  margin: 0;
  padding: 0.65rem;
  list-style: none;
  background: var(--sticker-panel-bg);
  border: var(--sticker-border);
  border-radius: var(--sticker-radius);
  box-shadow: var(--sticker-shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-0.35rem);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.site-header__language.is-open .site-header__language-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.site-header__language-link {
  width: 100%;
  justify-content: flex-start;
  padding: 0.7rem 0.85rem;
  border-radius: var(--sticker-radius);
  text-transform: uppercase;
}

.site-header__language-link + .site-header__language-link {
  margin-top: 0.35rem;
}

.site-header__language-link.is-current {
  background: var(--sticker-control-bg);
}

.site-header__language-link:hover,
.site-header__language-link:focus-visible,
.site-header__language-link.is-current {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.2em;
}

/* FOOTER */

.site-footer {
  width: 100%;
  margin: 0;
  padding: 0;
  color: var(--footer-text);
  background: var(--footer-background);
  border-top: 0;
}

.site-footer__inner {
  width: min(100%, var(--footer-shell-width));
  min-height: 135px;
  margin-inline: auto;
  padding: 2rem clamp(1.5rem, 4vw, 3.5rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 2rem 3rem;
}

.site-footer__nav {
  grid-column: 2;
  justify-self: center;
  width: 100%;
  max-width: 52rem;
}

.site-footer__links,
.site-footer__social-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.site-footer__link,
.site-footer__social-link,
.site-footer__social-title {
  color: var(--footer-text);
  font-family: var(--font-family-base);
  text-decoration: none;
}

.site-footer__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.65rem 0.9rem;
  border: var(--sticker-border);
  border-radius: var(--sticker-radius);
  background: var(--sticker-control-bg);
  box-shadow: var(--sticker-shadow);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

.site-footer__social {
  grid-column: 3;
  justify-self: end;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1rem;
  border: var(--sticker-border);
  border-radius: var(--sticker-radius);
  background: var(--sticker-control-bg);
  box-shadow: var(--sticker-shadow);
  text-align: center;
}

.site-footer__social-title {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.site-footer__social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
}

.site-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.65rem;
  border-radius: var(--sticker-radius);
  background: transparent;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
}

.site-footer__link:hover,
.site-footer__link:focus-visible,
.site-footer__social-link:hover,
.site-footer__social-link:focus-visible {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.18em;
}

/* PAGE LECTURE */

main {
  width: min(100%, 760px);
  margin: 0 auto;
  padding: 3rem 1.25rem 5rem;
}

.reading-home {
  background: #f9f8f6;
  border: 1px solid rgba(36, 31, 27, 0.08);
  border-radius: 24px;
  padding: clamp(1.5rem, 4vw, 3rem);
  box-shadow: 0 18px 50px rgba(36, 31, 27, 0.08);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 3rem;
  font-size: 0.9rem;
  color: #75685c;
}

.breadcrumb a {
  color: #75685c;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb__separator {
  opacity: 0.5;
}

.book-page__title {
  margin: 0;
  font-size: clamp(2.2rem, 7vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.book-page__hook {
  margin: 0.8rem 0 4rem;
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  color: #6b5f55;
}

.book-page__section {
  margin-top: 4.5rem;
}

.book-page__heading {
  margin: 0 0 1.4rem;
  font-size: clamp(1.4rem, 4vw, 2rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.reading-legal {
  font-size: 0.95rem;
  color: #3d352f;
}

.reading-legal p {
  margin: 0 0 1.1rem;
}

.reading-opening {
  margin-top: 5rem;
  padding: 3rem 0;
  border-top: 1px solid rgba(36, 31, 27, 0.12);
  border-bottom: 1px solid rgba(36, 31, 27, 0.12);
}

.reading-opening p {
  margin: 0 0 1.1rem;
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
}

.reading-toc__list {
  margin: 0;
  padding-left: 1.4rem;
  columns: 1;
}

.reading-toc__list li {
  margin-bottom: 0.55rem;
  padding-left: 0.25rem;
}

.reading-toc__list a {
  text-decoration: none;
}

.reading-toc__list a:hover {
  text-decoration: underline;
}

.book-page__section--final-cta {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(36, 31, 27, 0.12);
}

.book-page__cta {
  margin: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
}

.button--primary {
  background: #241f1b;
  color: #fffaf2;
}

.button--primary:hover {
  background: #4a3f36;
}

/* RESPONSIVE */

@media (min-width: 760px) {
  .reading-toc__list {
    columns: 2;
    column-gap: 3rem;
  }
}

@media (max-width: 1200px) {
  body {
    padding-top: 0;
  }

  .site-header {
    position: static;
    height: auto;
    min-height: var(--header-height);
  }

  .site-header__inner {
    min-height: var(--header-height);
    padding-block: 1.25rem;
    padding-inline: clamp(1rem, 3vw, 2rem);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    text-align: center;
  }

  .site-header__logo {
    width: min(330px, 100%);
    height: auto;
  }

  .site-header__nav,
  .site-header__brand {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .site-header__brand-link {
    justify-content: center;
    margin-inline: auto;
  }

  .site-header__menu {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    border-radius: 1.5rem;
    width: fit-content;
    max-width: 100%;
    gap: 0.5rem;
  }

  .site-header__link,
  .site-header__language-toggle {
    min-height: 38px;
    padding: 0.6rem 0.65rem;
    font-size: 13px;
  }

  .site-footer__inner {
    min-height: 0;
    padding-block: 1.75rem;
    padding-inline: clamp(1rem, 3vw, 2rem);
    grid-template-columns: 1fr;
    justify-items: center;
    align-items: center;
    gap: 1.5rem 2rem;
  }

  .site-footer__nav {
    grid-column: 1;
    max-width: 100%;
  }

  .site-footer__social {
    grid-column: 1;
    justify-self: center;
  }
}

@media (max-width: 680px) {
  .site-header__inner {
    align-items: stretch;
    padding-inline: 1rem;
  }

  .site-header__brand {
    justify-content: center;
    text-align: center;
  }

  .site-header__nav {
    display: flex;
    justify-content: center;
  }

  .site-header__menu {
    width: auto;
    gap: 0.7rem 0.85rem;
    padding: 0;
    border-radius: 1.25rem;
  }

  .site-header__link,
  .site-header__language-toggle,
  .site-header__language-link {
    font-size: 12px;
  }

  .site-header__language-menu {
    left: auto;
    right: 0;
    transform: translateY(-0.35rem);
  }

  .site-header__language.is-open .site-header__language-menu {
    transform: translateY(0);
  }

  .site-footer__inner {
    padding: 1.5rem 1rem;
    gap: 1.25rem;
    text-align: center;
  }

  .site-footer__links {
    justify-content: center;
    gap: 0.6rem 1rem;
  }

  .site-footer__link,
  .site-footer__social-title {
    font-size: 14px;
  }

  .site-footer__social {
    align-items: center;
    margin-left: 0;
    text-align: center;
  }

  .site-footer__social-links {
    justify-content: center;
    gap: 0.35rem 0.8rem;
  }

  .site-footer__social-link {
    font-size: 14px;
  }

  main {
    padding: 1.5rem 0.75rem 4rem;
  }

  .reading-home {
    border-radius: 18px;
    padding: 1.25rem;
  }

  .breadcrumb {
    margin-bottom: 2.2rem;
    gap: 0.15rem;
    font-size: 0.78rem;
  }

  .book-page__hook {
    margin-bottom: 3rem;
  }

  .book-page__section {
    margin-top: 3.5rem;
  }
}

@media (max-width: 520px) {
  .site-header__logo {
    width: min(286px, 100%);
  }

  .site-header__menu {
    gap: 0.6rem 0.75rem;
    padding: 0.75rem 0.8rem;
  }

  .site-header__link,
  .site-header__language-toggle,
  .site-header__language-link {
    font-size: 11px;
    letter-spacing: 0.01em;
  }

  .site-footer__links {
    gap: 0.55rem 0.75rem;
  }

  .site-footer__link,
  .site-footer__social-title {
    font-size: 14px;
  }
}


html.readability-font {
  --font-family-base: "Atkinson Hyperlegible", Arial, sans-serif;
  --font-family-paper: "Atkinson Hyperlegible", Arial, sans-serif;
  --line-height-body: 1.7;
}

html.readability-calm {
  --sticker-border-size: 1px;
  --sticker-outline-size: 0px;
  --sticker-outline-color: #8c8c8c;
  --sticker-radius: 4px;
  --sticker-border: 1px solid #8c8c8c;
  --sticker-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  --sticker-panel-bg: #ffffff;
  --sticker-control-bg: #ffffff;
}

html.readability-contrast {
  --color-text: #000000;
  --color-paper-text: #000000;
  --color-background: #ffffff;
  --color-border: #555555;
  --color-link: #000000;
  --header-background: #ffffff;
  --header-accent: #000000;
  --footer-background: #ffffff;
  --footer-text: #000000;
  --banner-background: #111111;
  --banner-text: #ffffff;
  --sticker-outline-color: #555555;
  --sticker-panel-bg: #ffffff;
  --sticker-control-bg: #ffffff;
  --site-grid-line: transparent;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: var(--header-height);
  font-family: var(--font-family-base);
  font-weight: 400;
  line-height: var(--line-height-body);
  color: var(--color-text);
  background-color: var(--color-background);
  background-image:
    linear-gradient(var(--site-grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--site-grid-line) 1px, transparent 1px);
  background-size: var(--site-grid-size) var(--site-grid-size);
  background-position: 0 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

html.readability-contrast body {
  background-image: none;
}

html.readability-calm .ambient-stickers {
  display: none;
}

html.readability-calm .is-sticker-randomized {
  transform: none;
}

html.readability-calm .home-intro__banner,
html.readability-calm .game-banner-card,
html.readability-calm .comic-card,
html.readability-calm .book-card,
html.readability-calm .bonus-card,
html.readability-calm .wallpaper-card,
html.readability-calm .illustrations-card,
html.readability-calm .illustrations-product__image,
html.readability-calm .comic-episode__image {
  transform: none;
}

html.readability-contrast .site-header,
html.readability-contrast .site-footer {
  border-color: #000000;
}

html.readability-contrast .site-footer {
  background: #f2f2f2;
  border-top: 2px solid #000000;
}

html.readability-contrast a {
  color: #000000;
  text-decoration-thickness: 0.12em;
}

html.readability-contrast .breadcrumb,
html.readability-contrast .breadcrumb--banner,
html.readability-contrast .breadcrumb--book,
html.readability-contrast .breadcrumb--episode,
html.readability-contrast .breadcrumb a,
html.readability-contrast .breadcrumb [aria-current="page"] {
  color: inherit;
}

html.readability-contrast main > section:not(.page-banner):not(.project-updates),
html.readability-contrast .site-info__panel,
html.readability-contrast .page-content,
html.readability-contrast .legal-page,
html.readability-contrast .contact-page__group,
html.readability-contrast .book-page__section,
html.readability-contrast .comic-episode__text-content {
  background: #ffffff;
  color: #000000;
}

html.readability-contrast .site-info__banner {
  background: #111111;
  color: #ffffff;
}

html.readability-contrast .site-info__title {
  color: #ffffff;
}

html.readability-contrast .site-info__summary,
html.readability-contrast .site-info__content p,
html.readability-contrast .comics-page__intro-title,
html.readability-contrast .comics-page__intro-text,
html.readability-contrast .visitor-sitemap__language-summary,
html.readability-contrast .visitor-sitemap__summary,
html.readability-contrast .visitor-sitemap__page-url {
  color: #000000;
}

html.readability-contrast .visitor-sitemap__language,
html.readability-contrast .visitor-sitemap__details,
html.readability-contrast .visitor-sitemap__page,
html.readability-contrast .visitor-sitemap__intro,
html.readability-contrast .visitor-sitemap__error {
  background: #ffffff;
  color: #000000;
  border-color: #555555;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--color-link);
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.16em;
}

a:hover,
a:focus-visible {
  text-decoration-thickness: 0.12em;
}

button {
  font: inherit;
  color: inherit;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}

button:hover,
button:focus-visible {
  color: inherit;
}

.is-sticker-randomized {
  transform: rotate(var(--sticker-rotate));
  transform-origin: center;
}

.ambient-stickers {
  position: absolute;
  inset: 0 0 auto;
  z-index: 2;
  width: 100%;
  overflow: hidden;
  pointer-events: none;
}

.ambient-sticker {
  position: absolute;
  z-index: 1;
  width: clamp(56px, 5.2vw, 118px);
  height: auto;
  user-select: none;
  cursor: pointer;
  pointer-events: auto;
  transform: rotate(var(--ambient-sticker-rotate, 0deg));
  transform-origin: 50% 62%;
  transition: transform 180ms ease, filter 180ms ease;
}

.ambient-sticker:hover,
.ambient-sticker:focus-visible {
  filter: drop-shadow(0 4px 0 rgba(89, 48, 0, 0.12));
  transform: rotate(var(--ambient-sticker-rotate, 0deg)) translateY(-2px);
}

.ambient-sticker--removed {
  animation: ambient-sticker-peel 360ms ease-in forwards;
  pointer-events: none;
}

.reading-comfort {
  position: fixed;
  right: clamp(0.75rem, 2vw, 1.25rem);
  bottom: clamp(0.75rem, 2vw, 1.25rem);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
  font-family: var(--reading-control-font);
  color: #000000;
}

.reading-comfort__toggle {
  min-width: 11rem;
  min-height: 2.75rem;
  padding: 0.65rem 0.9rem;
  border: 2px solid #000000;
  border-radius: 4px;
  background: #ffffff;
  color: #000000;
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.18);
  font-family: var(--reading-control-font);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
}

.reading-comfort__toggle:hover,
.reading-comfort__toggle:focus-visible {
  background: #f1f1f1;
  outline: 3px solid #000000;
  outline-offset: 2px;
}

.reading-comfort__panel {
  width: min(20rem, calc(100vw - 1.5rem));
  padding: 1rem;
  border: 2px solid #000000;
  border-radius: 4px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.reading-comfort__panel[hidden] {
  display: none;
}

.reading-comfort__title {
  margin: 0 0 0.8rem;
  font-family: var(--reading-control-font);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.25;
  color: #000000;
}

.reading-comfort__option {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
  align-items: center;
  padding-block: 0.65rem;
  border-top: 1px solid #d0d0d0;
}

.reading-comfort__option:first-of-type {
  border-top: 0;
}

.reading-comfort__label {
  display: block;
  font-family: var(--reading-control-font);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
  color: #000000;
}

.reading-comfort__hint {
  display: block;
  margin-top: 0.2rem;
  font-family: var(--reading-control-font);
  font-size: 0.85rem;
  font-weight: 400;
  line-height: 1.35;
  color: #333333;
}

.reading-comfort__switch {
  position: relative;
  width: 3.1rem;
  height: 1.75rem;
  flex: 0 0 auto;
}

.reading-comfort__switch input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}

.reading-comfort__slider {
  position: absolute;
  inset: 0;
  border: 2px solid #000000;
  border-radius: 999px;
  background: #ffffff;
  pointer-events: none;
}

.reading-comfort__slider::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: calc(1.75rem - 10px);
  height: calc(1.75rem - 10px);
  border-radius: 50%;
  background: #000000;
  transition: transform 160ms ease;
}

.reading-comfort__switch input:checked + .reading-comfort__slider {
  background: #111111;
}

.reading-comfort__switch input:checked + .reading-comfort__slider::before {
  background: #ffffff;
  transform: translateX(1.32rem);
}

.reading-comfort__switch input:focus-visible + .reading-comfort__slider {
  outline: 3px solid #000000;
  outline-offset: 2px;
}

@keyframes ambient-sticker-peel {
  0% {
    opacity: 1;
    transform: rotate(var(--ambient-sticker-rotate, 0deg)) scale(1);
  }

  45% {
    opacity: 0.9;
    transform: rotate(calc(var(--ambient-sticker-rotate, 0deg) + 8deg)) translateY(-10px) scale(0.96);
  }

  100% {
    opacity: 0;
    transform: rotate(calc(var(--ambient-sticker-rotate, 0deg) + 18deg)) translateY(-28px) scale(0.72);
  }
}

@media (max-width: 1023px), (pointer: coarse) {
  .ambient-stickers {
    display: none;
  }
}

@media (max-width: 680px) {
  .reading-comfort {
    right: 0.75rem;
    bottom: 0.75rem;
  }

  .reading-comfort__toggle {
    min-width: 9.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ambient-sticker {
    transition: none;
  }

  .ambient-sticker--removed {
    animation-duration: 1ms;
  }

  .reading-comfort__slider::before {
    transition: none;
  }
}

.reading-chapter {
  background: #f9f8f6;
  border: 1px solid rgba(36, 31, 27, 0.08);
  border-radius: 24px;
  padding: clamp(2rem, 5vw, 4rem);
  box-shadow: 0 18px 50px rgba(36, 31, 27, 0.08);
}

.reading-chapter__content {
  color: var(--color-paper-text);
  font-family: var(--font-family-paper);
}

.recipe-page {
  margin: 3rem auto;
  text-align: center;
}

.recipe-page img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

@media (max-width: 1200px) {
  body {
    padding-top: 0 !important;
  }
}

.ambient-stickers {
  display: none !important;
}

@media (max-width: 1200px) {
  body {
    padding-top: 0 !important;
  }
}
