/* =========================================================================
   Apero Drop — Website
   Gestaltung folgt dem Retro-Poster-Look der App. Alle Farben stammen
   1:1 aus AperoDrop/Theme.swift, damit Website und App identisch wirken.
   Aufbau: Tokens → Grundlagen → Bausteine → Sections → Responsive.
   ========================================================================= */

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

/* ---------------------------------------------------------------- Tokens */

:root {
    /* Markenfarben — Theme.swift */
    --vermillion: #c2450a;
    --vermillion-deep: #8f3305;
    --teal: #2e8c73;
    --teal-deep: #1c705c;
    --teal-light: #8fb8a8;
    --gold: #e8a31c;
    --cream: #f5e8c7;
    --ink: #263829;
    --spotify: #1cba54;

    /* Abgeleitete Töne. --teal-dark ist eine dunklere Stufe desselben Tons:
       Cream auf mittlerem Teal erreicht nur 3,4:1 und damit zu wenig für
       Fließtext — die farbigen Flächen laufen deshalb ins Dunkle aus. */
    --teal-dark: #145446;
    --cream-deep: #ecd9a8;
    --ink-soft: rgba(38, 56, 41, 0.82);
    --cream-soft: rgba(245, 232, 199, 0.76);

    --display: "Pacifico", "Snell Roundhand", cursive;
    --body: -apple-system, BlinkMacSystemFont, "Avenir Next", "Segoe UI",
        system-ui, sans-serif;

    /* Typo-Skala */
    --t-eyebrow: 0.78rem;
    --t-small: 0.9375rem;
    --t-body: 1.0625rem;
    --t-lead: 1.25rem;
    --t-headline: clamp(2rem, 6vw, 3.25rem);
    --t-hero: clamp(2.75rem, 8.5vw, 5rem);

    --gap: clamp(1.25rem, 4vw, 2.5rem);
    --panel-pad: clamp(1.75rem, 5vw, 4.5rem);
    --radius: 14px;
    --measure: 34rem;

    /* Papierkorn: feines Rauschen, damit Flächen wie bedrucktes Papier wirken */
    --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.4'/%3E%3C/svg%3E");
}

/* ------------------------------------------------------------ Grundlagen */

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--cream);
    color: var(--ink);
    font-family: var(--body);
    font-size: var(--t-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

a {
    color: var(--vermillion);
    text-underline-offset: 0.2em;
}

:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
    border-radius: 4px;
}

.skip {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--ink);
    color: var(--cream);
    padding: 0.75rem 1.25rem;
    z-index: 99;
    border-radius: 0 0 var(--radius) 0;
}

.skip:focus {
    left: 0;
}

.wrap {
    width: min(100% - 2rem, 74rem);
    margin-inline: auto;
}

/* Nur für Screenreader */
.sr {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

/* -------------------------------------------------------------- Bausteine */

/* Gesperrte Versalzeile — die Plakat-Sprache der Seite. Trägt immer eine
   echte Angabe (Kapitel, Ort, Herkunft), nie bloße Dekoration. */
/* Kleiner Text nimmt durchgehend die dunkle Rotstufe: Vermillion auf Papier
   käme nur auf 4,2:1, der tiefe Ton auf 6,5:1. Auf Teal reicht selbst Gold
   nicht (2,8:1), dort steht die Zeile in Cream. */
.eyebrow {
    font-size: var(--t-eyebrow);
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin: 0 0 1.25rem;
    color: var(--vermillion-deep);
}

.panel--teal .eyebrow {
    color: var(--cream);
}

h1,
h2,
h3 {
    font-family: var(--display);
    font-weight: 400;
    line-height: 1.06;
    /* Pacifico hat lange Unterlängen — sonst schneidet der Kasten sie ab. */
    padding-bottom: 0.08em;
    margin: 0 0 0.6rem;
}

h2 {
    font-size: var(--t-headline);
    color: var(--vermillion);
}

.panel--teal h2 {
    color: var(--cream);
}

h3 {
    font-size: 1.5rem;
    color: var(--vermillion);
}

.lead {
    font-size: var(--t-lead);
    max-width: var(--measure);
    margin: 0 0 1.5rem;
}

/* Für Abschnitte, deren Inhalt selbst mittig steht (Karte, FAQ). */
.centered {
    text-align: center;
}

.centered .lead,
.centered p {
    margin-inline: auto;
}

p {
    max-width: var(--measure);
}

/* Buttons — Form und Rand wie die Menü-Buttons in der App. */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--vermillion);
    color: var(--cream);
    border: 3px solid var(--cream);
    border-radius: var(--radius);
    padding: 0.85rem 1.6rem;
    font-family: var(--body);
    /* 19 px fett zählt als großer Text — damit genügt Cream auf Vermillion
       (4,2:1) den Kontrastanforderungen. */
    font-size: 1.1875rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 6px 0 var(--vermillion-deep);
    transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(2px);
    box-shadow: 0 4px 0 var(--vermillion-deep);
}

.btn:active {
    transform: translateY(6px);
    box-shadow: 0 0 0 var(--vermillion-deep);
}

.btn--ghost {
    background: transparent;
    color: var(--vermillion);
    border-color: var(--vermillion);
    box-shadow: none;
}

.panel--teal .btn--ghost,
.hero .btn--ghost {
    color: var(--cream);
    border-color: var(--cream);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
    transform: none;
    background: rgba(194, 69, 10, 0.1);
    box-shadow: none;
}

.panel--teal .btn--ghost:hover,
.panel--teal .btn--ghost:focus-visible,
.hero .btn--ghost:hover,
.hero .btn--ghost:focus-visible {
    background: rgba(245, 232, 199, 0.14);
}

.btn--spotify {
    background: var(--spotify);
    color: #06331a;
    box-shadow: 0 6px 0 #14833b;
}

.btn--spotify:hover,
.btn--spotify:focus-visible {
    box-shadow: 0 4px 0 #14833b;
}

/* Zustand vor dem Store-Release: sichtbar, aber nicht klickbar. */
.btn--soon {
    background: var(--ink);
    box-shadow: 0 6px 0 #16241a;
    cursor: default;
}

.btn--soon:hover {
    transform: none;
    box-shadow: 0 6px 0 #16241a;
}

/* Store-Button: Label oben, Geräteangabe darunter — wie ein Store-Badge. */
.btn--stack {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.1rem;
    padding-block: 0.7rem;
}

/* Volle Deckkraft: Der Zusatz steht auf dem dunklen Wartezustand und muss
   auch dort klar lesbar sein. Beim Live-Schalten entfernt main.js ihn — auf
   der roten Fläche käme er nicht auf die nötigen 4,5:1. */
.btn small {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* Gold-Pille für Zahlen — wie die Score- und Streak-Anzeige im Spiel. */
.pill {
    display: inline-block;
    background: var(--gold);
    color: #4a2c00;
    font-weight: 800;
    font-size: var(--t-small);
    letter-spacing: 0.04em;
    padding: 0.2rem 0.75rem;
    border-radius: 999px;
    white-space: nowrap;
}

/* ------------------------------------------------------ Poster-Panels */

/* Jede Section ist ein Plakat: Papierkorn, Doppelrahmen, eigener Grundton. */
.panel {
    position: relative;
    padding: clamp(3rem, 8vw, 6rem) 0;
    isolation: isolate;
}

.panel::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--grain);
    opacity: 0.05;
    pointer-events: none;
    z-index: -1;
}

.panel--teal {
    background: linear-gradient(180deg, var(--teal-deep) 0%, var(--teal-dark) 100%);
    color: var(--cream);
}

.panel--teal p {
    color: var(--cream);
}

.panel--cream {
    background: var(--cream);
}

.panel--cream p {
    color: var(--ink-soft);
}

.panel--paper {
    background: var(--cream-deep);
}

.panel--paper p {
    color: var(--ink-soft);
}

/* -------------------------------------------------------------- Kopfzeile */

.topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    background: var(--ink);
    color: var(--cream);
}

.topbar .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.6rem 0;
}

.topbar__brand {
    font-size: var(--t-eyebrow);
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cream);
    text-decoration: none;
}

.topbar__brand span {
    color: var(--gold);
}

.langswitch {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--t-eyebrow);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
}

.langswitch a {
    color: var(--cream-soft);
    text-decoration: none;
    padding: 0.2rem 0.45rem;
    border-radius: 4px;
}

.langswitch a:hover {
    color: var(--cream);
}

.langswitch a[aria-current="true"] {
    background: var(--vermillion-deep);
    color: var(--cream);
}

.langswitch span {
    opacity: 0.35;
}

/* ------------------------------------------------------------------ Hero */

.hero {
    position: relative;
    /* Oben hell wie der Spielhimmel, unter dem Logo schnell dunkler — dort
       steht der Fließtext und braucht Kontrast. */
    background: linear-gradient(
        180deg,
        var(--teal-light) 0%,
        var(--teal) 26%,
        var(--teal-deep) 58%,
        var(--teal-dark) 100%
    );
    color: var(--cream);
    padding: clamp(2.5rem, 7vw, 5rem) 0 clamp(3rem, 8vw, 5.5rem);
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--grain);
    opacity: 0.06;
    pointer-events: none;
}

/* Nachmittagslicht von oben rechts. Bewusst nur ein Schimmer: Die Sonne
   als Scheibe steckt schon im Screenshot und wäre hier doppelt. */
.hero::before {
    content: "";
    position: absolute;
    top: -18%;
    right: -8%;
    width: min(70vw, 40rem);
    aspect-ratio: 1;
    background: radial-gradient(
        circle,
        rgba(232, 163, 28, 0.28) 0 45%,
        rgba(232, 163, 28, 0) 72%
    );
    pointer-events: none;
}

.hero .wrap {
    position: relative;
    z-index: 2;
    display: grid;
    gap: var(--gap);
    align-items: center;
}

.hero__logo {
    width: min(70%, 20rem);
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: var(--t-hero);
    color: var(--cream);
    text-shadow: 0 4px 0 rgba(28, 112, 92, 0.45);
    margin-bottom: 1rem;
}

.hero__sub {
    font-size: var(--t-lead);
    color: var(--cream);
    max-width: 28rem;
    margin: 0 0 2rem;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-bottom: 1.75rem;
}

/* Verkaufsargumente ohne Marketing-Ton: drei Fakten, gesperrt gesetzt. */
.facts {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 1.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: var(--t-eyebrow);
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--cream);
}

.facts li::before {
    content: "◆";
    color: var(--gold);
    margin-right: 0.5rem;
    font-size: 0.7em;
    vertical-align: 0.15em;
}

/* Signature: die Spielobjekte fallen durch den Hero. */
.drops {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

/* Position und Timing kommen als Inline-Variablen aus dem HTML, damit jedes
   Objekt eine eigene Bahn hat. --rest ist die Ruhelage ohne Animation. */
.drops img {
    position: absolute;
    top: -14%;
    left: var(--x);
    width: clamp(2.25rem, 5vw, 3.5rem);
    opacity: 0.9;
    animation: fall var(--dur, 14s) linear var(--delay, 0s) infinite;
    filter: drop-shadow(0 6px 10px rgba(15, 60, 48, 0.28));
}

@keyframes fall {
    from {
        transform: translateY(0) rotate(var(--spin-from, 0deg));
    }
    to {
        transform: translateY(125vh) rotate(var(--spin-to, 220deg));
    }
}

/* --------------------------------------------------------- Geräterahmen */

.device {
    position: relative;
    width: min(100%, 17.5rem);
    margin-inline: auto;
    border: 5px solid var(--ink);
    border-radius: 2.25rem;
    overflow: hidden;
    background: var(--ink);
    box-shadow: 0 22px 45px rgba(15, 45, 35, 0.4);
}

.device img {
    border-radius: 1.9rem;
}

.device--tilt {
    transform: rotate(-2.5deg);
}

.device--tilt-r {
    transform: rotate(2deg);
}

/* -------------------------------------------------------- Zwei-Spalten */

.split {
    display: grid;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.split__text > *:last-child {
    margin-bottom: 0;
}

/* ------------------------------------------------------------ Spielzüge */

.moves {
    display: grid;
    gap: 1.25rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.move {
    display: grid;
    grid-template-columns: 3.5rem 1fr;
    gap: 1rem;
    align-items: start;
    background: rgba(245, 232, 199, 0.1);
    border: 2px solid rgba(245, 232, 199, 0.22);
    border-radius: var(--radius);
    padding: 1.1rem 1.25rem;
}

.panel--cream .move,
.panel--paper .move {
    background: rgba(38, 56, 41, 0.04);
    border-color: rgba(38, 56, 41, 0.14);
}

.move img {
    width: 3.5rem;
}

.move h3 {
    font-family: var(--body);
    font-size: var(--t-body);
    font-weight: 800;
    letter-spacing: 0.02em;
    color: var(--vermillion-deep);
    margin: 0 0 0.2rem;
    padding: 0;
}

.panel--teal .move h3 {
    color: var(--cream);
}

.move p {
    margin: 0;
    font-size: var(--t-small);
}

/* ------------------------------------------------------------ Preisliste */

/* Die Punktwerte als Karte einer Bar gesetzt: ein Blatt Papier, das mittig
   auf dem Plakat liegt. Deshalb behält es seine eigenen Farben, auch auf Teal. */
.tariff {
    list-style: none;
    text-align: left;
    margin: 0 auto;
    padding: clamp(1.25rem, 4vw, 2.25rem) clamp(1.25rem, 4vw, 2.5rem);
    max-width: 34rem;
    background: var(--cream);
    color: var(--ink);
    border-radius: var(--radius);
    box-shadow: 0 18px 40px rgba(15, 45, 35, 0.28);
}

.tariff li {
    display: grid;
    grid-template-columns: 3rem 1fr auto;
    align-items: center;
    gap: 0.9rem;
    padding: 0.7rem 0;
    border-bottom: 2px dotted rgba(38, 56, 41, 0.28);
}

.tariff li:last-child {
    border-bottom: 0;
}

.tariff img {
    width: 3rem;
}

.tariff__name {
    font-weight: 700;
}

.tariff__note {
    display: block;
    font-size: var(--t-small);
    font-weight: 400;
    color: var(--ink-soft);
}

.tariff__value {
    font-weight: 800;
    font-size: 1.35rem;
    color: var(--vermillion);
    white-space: nowrap;
}

.tariff__value--danger {
    font-size: var(--t-small);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* --------------------------------------------------------------- Kacheln */

.cards {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
    list-style: none;
    padding: 0;
    margin: 2rem 0 0;
}

.card {
    background: var(--cream);
    border: 2px solid rgba(38, 56, 41, 0.16);
    border-radius: var(--radius);
    padding: 1.5rem;
}

.panel--teal .card {
    background: rgba(245, 232, 199, 0.1);
    border-color: rgba(245, 232, 199, 0.24);
}

.card h3 {
    font-family: var(--body);
    font-size: 1.0625rem;
    font-weight: 800;
    margin: 0 0 0.4rem;
    padding: 0;
    color: var(--vermillion-deep);
}

.panel--teal .card h3 {
    color: var(--cream);
}

.card p {
    margin: 0;
    font-size: var(--t-small);
}

/* ------------------------------------------------------------------ Band */

.band {
    display: grid;
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: center;
}

/* Das Bandzeichen, kein Foto — daher schlicht gesetzt statt gerahmt. */
.band__mark {
    border-radius: var(--radius);
    max-width: 15rem;
    width: 100%;
    box-shadow: 0 14px 32px rgba(15, 45, 35, 0.3);
}

.band__links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

/* ------------------------------------------------------------------- FAQ */

.faq {
    max-width: 46rem;
    margin-inline: auto;
    text-align: left;
}

.faq details {
    border-bottom: 2px dotted rgba(38, 56, 41, 0.25);
    padding: 0.35rem 0;
}

.faq summary {
    cursor: pointer;
    font-weight: 700;
    padding: 0.85rem 0;
    list-style: none;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
}

.faq summary::-webkit-details-marker {
    display: none;
}

.faq summary::after {
    content: "+";
    font-size: 1.5rem;
    color: var(--vermillion);
    line-height: 1;
}

.faq details[open] summary::after {
    content: "–";
}

.faq details p {
    margin: 0 0 1rem;
    font-size: var(--t-small);
}

/* ---------------------------------------------------------------- Footer */

.footer {
    background: var(--ink);
    color: var(--cream-soft);
    padding: 3rem 0 2rem;
    font-size: var(--t-small);
}

.footer a {
    color: var(--cream);
}

.footer__grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
    margin-bottom: 2.5rem;
}

.footer h2 {
    font-family: var(--body);
    font-size: var(--t-eyebrow);
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0 0 0.85rem;
    padding: 0;
}

.footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer li {
    margin-bottom: 0.5rem;
}

.footer p {
    max-width: 22rem;
}

.footer__base {
    border-top: 1px solid rgba(245, 232, 199, 0.18);
    padding-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
    justify-content: space-between;
    font-size: var(--t-eyebrow);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* -------------------------------------------------------- Sprachhinweis */

.langhint {
    background: var(--gold);
    color: #402700;
    font-size: var(--t-small);
    font-weight: 600;
}

.langhint .wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 0.65rem 0;
    flex-wrap: wrap;
}

.langhint a {
    color: #402700;
}

.langhint button {
    background: none;
    border: 0;
    font: inherit;
    color: inherit;
    cursor: pointer;
    opacity: 0.7;
    padding: 0.2rem 0.5rem;
}

.langhint[hidden] {
    display: none;
}

/* ------------------------------------------------------- Textseiten */

.doc {
    padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(3rem, 7vw, 5rem);
}

.doc .wrap {
    width: min(100% - 2rem, 46rem);
}

.doc h1 {
    font-size: clamp(2.25rem, 6vw, 3.25rem);
    color: var(--vermillion);
}

.doc h2 {
    font-family: var(--body);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: 0.01em;
    margin: 2.5rem 0 0.75rem;
    padding: 0;
}

.doc p,
.doc li {
    max-width: none;
    color: var(--ink-soft);
}

.doc ul {
    padding-left: 1.25rem;
}

.doc li {
    margin-bottom: 0.5rem;
}

.doc__meta {
    font-size: var(--t-small);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-bottom: 2rem;
}

/* Offener Platzhalter im Rechtstext — vor dem Release zu füllen. */
mark.todo {
    background: #ffe9a8;
    color: #6b4a00;
    border-bottom: 2px dotted #b8860b;
    padding: 0.05em 0.1em;
    font-weight: 600;
}

.notice {
    background: rgba(232, 163, 28, 0.16);
    border-left: 4px solid var(--gold);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 1rem 1.25rem;
    margin: 1.5rem 0 2rem;
    font-size: var(--t-small);
}

.notice p {
    margin: 0;
    color: var(--ink);
}

.contactbox {
    background: var(--cream-deep);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin: 2rem 0;
}

.contactbox p {
    margin: 0 0 0.5rem;
}

.contactbox p:last-child {
    margin-bottom: 0;
}

/* ------------------------------------------------------------ Responsive */

@media (min-width: 56rem) {
    .hero .wrap {
        grid-template-columns: 1.15fr 0.85fr;
        gap: clamp(2rem, 5vw, 4rem);
    }

    .hero__logo {
        width: min(100%, 22rem);
    }

    .split {
        grid-template-columns: 1fr 1fr;
    }

    .split--reverse .split__media {
        order: -1;
    }

    .moves {
        grid-template-columns: 1fr 1fr;
    }

    .band {
        grid-template-columns: auto 1fr;
    }

    /* In einer halben Spalte bleiben die Kacheln untereinander lesbar. */
    .split .cards {
        grid-template-columns: 1fr;
    }

    .device {
        width: min(100%, 19rem);
    }
}

@media (max-width: 55.999rem) {
    .hero__logo {
        margin-inline: auto;
    }

    .hero__text {
        text-align: center;
    }

    .hero__sub,
    .hero p {
        margin-inline: auto;
    }

    .hero__actions,
    .facts {
        justify-content: center;
    }

    /* Auf schmalen Geräten sind gleich breite Schaltflächen ruhiger. */
    .hero__actions .btn {
        width: 100%;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .band__photo {
        margin-inline: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    /* Die fallenden Objekte bleiben als arrangierte Sticker stehen. */
    .drops img {
        animation: none;
        top: var(--rest, 25%);
        transform: rotate(var(--spin-from, 0deg));
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
    }
}

@media print {
    .topbar,
    .drops,
    .langhint {
        display: none;
    }

    body {
        background: #fff;
        color: #000;
    }
}
