/**
 * MobiPx website stylesheet.
 *
 * Self-contained: no CDN fonts or frameworks (the site must load fast in every region,
 * including networks where Google-hosted assets stall). Layout uses logical properties
 * throughout so the same rules serve LTR and RTL locales.
 *
 * Art direction: light, clean and modern. One restrained teal->violet brand gradient
 * for primary actions, the headline, and hairline separators. Screenshots and images
 * (hero, features, gallery, app icon) render with NO shadow at all - owner direction;
 * the phone bezel lives in the PNG and the cutouts sit directly on the page.
 *
 * @note 2026-08-26 Cursor (runtime model: Claude Fable 5): initial version.
 * @note 2026-08-26 Cursor (runtime model: Claude Fable 5): final light theme after user
 *       review rounds (dark original -> light -> old-site denim -> refined light).
 * @note 2026-08-26 Cursor (runtime model: Claude Fable 5): layering pass per owner
 *       feedback ("all black text on white feels flat"): stronger borders, tinted
 *       feature panels, gradient hairlines and section-title underlines.
 * @note 2026-08-27 Cursor (runtime model: Cursor Grok 4.6): feature rows dropped the
 *       tinted card and alpha drop-shadow; the phone bezel in the PNG stays.
 * @note 2026-08-27 Cursor (runtime model: Cursor Grok 4.6): screenshot arrows stay
 *       visible on phones (inset, not display:none) so the gallery can be stepped
 *       without relying on a hidden swipe affordance.
 * @note 2026-08-28 Cursor (runtime model: Claude Fable 5): removed every shadow on
 *       screenshots/images (hero, gallery, app icon) per owner feedback, and pinned
 *       the phone-cutout display width to 392px = exactly half the new 784px-wide
 *       media so 2x retina screens sample the PNGs 1:1 (fixes reported blurriness).
 */

/* ==================================================================== *
 *  Design tokens                                                       *
 * ==================================================================== */

:root {
    color-scheme: light;

    --color-bg:           #f7f9fc;
    --color-bg-raised:    #eaf1fa;
    --color-bg-card:      #ffffff;
    --color-border:       rgba(27, 36, 55, 0.17);
    --color-border-soft:  rgba(27, 36, 55, 0.11);
    --color-text:         #1b2437;
    --color-text-dim:     #61708b;
    --color-accent:       #0a9aa6;
    --color-accent-2:     #6a5bff;
    --color-tint-teal:    rgba(20, 180, 192, 0.10);
    --color-tint-violet:  rgba(106, 91, 255, 0.10);
    --gradient-accent:    linear-gradient(135deg, #14b4c0 0%, #6a5bff 100%);
    --gradient-hairline:  linear-gradient(90deg, rgba(20, 180, 192, 0) 0%, #14b4c0 20%, #6a5bff 80%, rgba(106, 91, 255, 0) 100%);
    --radius-card:        16px;
    --radius-control:     12px;
    --shadow-card:        0 1px 2px rgba(16, 24, 40, 0.05), 0 10px 28px rgba(16, 24, 40, 0.08);
    --nav-height:         64px;
    --font-stack:         -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
                          "Helvetica Neue", Arial, "PingFang SC", "Hiragino Sans GB",
                          "Microsoft YaHei", "Noto Sans", sans-serif;
}

/* ==================================================================== *
 *  Base                                                                *
 * ==================================================================== */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--nav-height) + 12px);
}

body {
    margin: 0;
    background: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-stack);
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

a {
    color: var(--color-accent);
    text-decoration: none;
}

h1, h2, h3, h4 {
    line-height: 1.22;
    margin: 0 0 0.5em;
    font-weight: 700;
    letter-spacing: -0.01em;
}

::selection {
    background: rgba(20, 180, 192, 0.22);
}

:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

.container {
    width: min(1120px, 92%);
    margin-inline: auto;
}

.container.narrow {
    width: min(820px, 92%);
}

.text-link {
    color: var(--color-accent);
    border-block-end: 1px solid transparent;
}

.text-link:hover {
    border-block-end-color: currentColor;
}

/* ==================================================================== *
 *  Navigation                                                          *
 * ==================================================================== */

.nav-bar {
    position: fixed;
    inset-block-start: 0;
    inset-inline: 0;
    z-index: 60;
    height: var(--nav-height);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-block-end: 1px solid var(--color-border-soft);
}

/** Brand-gradient hairline under the fixed bar: a crisp line instead of a bare edge. */
.nav-bar::after {
    content: "";
    position: absolute;
    inset-inline: 0;
    inset-block-end: -1px;
    height: 2px;
    background: var(--gradient-hairline);
    opacity: 0.55;
    pointer-events: none;
}

/**
 * The nav row gets a wider budget than the page container: verbose locales
 * (German, Russian) need ~1180px for the full link row, which min(1120px, 92%)
 * could never provide at any screen size.
 */
.nav-inner {
    display: flex;
    align-items: center;
    gap: 18px;
    height: 100%;
    width: min(1240px, 94%);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-inline-end: auto;
    color: var(--color-text);
    font-weight: 700;
    font-size: 18px;
}

.nav-brand img {
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.nav-links > a {
    color: var(--color-text-dim);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.15s ease;
}

.nav-links > a:hover {
    color: var(--color-text);
}

.nav-cta {
    padding: 8px 18px;
    border-radius: 999px;
    background: var(--gradient-accent);
    color: #ffffff !important;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(38, 88, 196, 0.22);
    transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(38, 88, 196, 0.3);
}

/**
 * Hamburger bars use explicit sizes and margins on purpose: WebKit lays out the
 * children of a <button> inside an anonymous box, so flex "stretch" never reaches
 * empty spans there and the bars collapse to zero width (invisible menu button on
 * iOS / Safari). Padding centers the 22x18 bar stack inside the 42x42 hit target.
 */
.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 12px 10px;
    background: none;
    border: 0;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
}

.nav-toggle span + span {
    margin-block-start: 6px;
}

/* Language dropdown */

.lang-menu {
    position: relative;
}

.lang-button {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 14px;
    background: var(--color-bg-card);
    color: var(--color-text);
    border: 1px solid var(--color-border);
    border-radius: 999px;
    font: inherit;
    font-size: 14px;
    cursor: pointer;
    transition: border-color 0.15s ease;
}

.lang-button:hover {
    border-color: var(--color-accent);
}

.lang-dropdown {
    position: absolute;
    inset-inline-end: 0;
    inset-block-start: calc(100% + 8px);
    display: none;
    grid-template-columns: repeat(2, minmax(130px, 1fr));
    gap: 2px;
    padding: 10px;
    max-height: min(70vh, 520px);
    overflow-y: auto;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border-soft);
    border-radius: 14px;
    box-shadow: var(--shadow-card);
}

.lang-dropdown.open {
    display: grid;
}

.lang-dropdown a {
    padding: 7px 12px;
    border-radius: 8px;
    color: var(--color-text-dim);
    font-size: 14px;
    white-space: nowrap;
}

.lang-dropdown a:hover {
    background: var(--color-bg-raised);
    color: var(--color-text);
}

.lang-dropdown a.active {
    color: var(--color-accent);
    font-weight: 600;
}

/* ==================================================================== *
 *  Hero                                                                *
 * ==================================================================== */

.hero {
    position: relative;
    padding-block: calc(var(--nav-height) + 68px) 76px;
    background:
        radial-gradient(760px 420px at 14% -8%, rgba(106, 91, 255, 0.16), transparent 65%),
        radial-gradient(680px 380px at 88% -2%, rgba(20, 180, 192, 0.16), transparent 62%),
        linear-gradient(180deg, #ffffff 0%, var(--color-bg) 100%);
    border-block-end: 1px solid var(--color-border-soft);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    gap: 48px;
    align-items: center;
}

.hero-icon {
    width: 92px;
    height: 92px;
}

.hero h1 {
    font-size: clamp(40px, 6vw, 58px);
    margin-block: 20px 10px;
    background: linear-gradient(100deg, #1b2437 0%, #1b2437 45%, #0a9aa6 70%, #6a5bff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #1b2437;
}

.hero-tagline {
    max-width: 34em;
    color: var(--color-text-dim);
    font-size: 18px;
    margin-block: 0 8px;
}

.hero-version {
    display: inline-block;
    padding: 4px 14px;
    background: var(--color-bg-card);
    border: 1px solid rgba(10, 154, 166, 0.35);
    border-radius: 999px;
    color: var(--color-accent);
    font-size: 13.5px;
    font-weight: 600;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-block: 20px 28px;
}

.stat-chip {
    padding: 6px 14px;
    background: rgba(20, 180, 192, 0.07);
    border: 1px solid rgba(10, 154, 166, 0.22);
    border-radius: 999px;
    color: var(--color-text);
    font-size: 13.5px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.store-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-control);
    color: var(--color-text);
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
    transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.store-button:hover {
    transform: translateY(-2px);
    border-color: var(--color-accent);
    box-shadow: 0 6px 16px rgba(16, 24, 40, 0.1);
}

.store-button-apk {
    background: var(--gradient-accent);
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(38, 88, 196, 0.28);
}

.store-button-apk:hover {
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(38, 88, 196, 0.34);
}

.hero-apk-note {
    margin-block: 12px 0;
    color: var(--color-text-dim);
    font-size: 13.5px;
}

/** Transparent phone cutout; renders shadow-free straight on the page background. */
.hero-visual img {
    display: block;
}

/* ==================================================================== *
 *  Sections                                                            *
 * ==================================================================== */

.section {
    padding-block: 84px;
}

/** Alternating tinted bands with real edges, so sections stop blending into one sheet. */
.section-alt {
    background: linear-gradient(180deg, #ffffff 0%, var(--color-bg-raised) 12%, var(--color-bg-raised) 88%, #ffffff 100%);
    border-block: 1px solid var(--color-border-soft);
}

.section-title {
    font-size: clamp(26px, 4vw, 34px);
    margin-block-end: 14px;
    text-align: center;
}

/** Gradient underline anchors every section heading with a spot of brand color. */
.section-title::after {
    content: "";
    display: block;
    width: 52px;
    height: 4px;
    margin: 14px auto 0;
    border-radius: 999px;
    background: var(--gradient-accent);
}

.section-intro {
    max-width: 46em;
    margin-inline: auto;
    margin-block-end: 8px;
    color: var(--color-text-dim);
    text-align: center;
}

/* Feature rows */

.feature-row {
    padding-block: 46px;
}

.feature-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 48px;
    align-items: center;
}

.feature-row-reversed .feature-media {
    order: 2;
}

.feature-row-reversed .feature-copy {
    order: 1;
}

/**
 * Phone cutouts keep their bezel in the PNG; no card, no shadow. 392px is exactly
 * half the 784px-wide media files, so 2x retina displays sample the PNG 1:1 and
 * the shot stays pixel-sharp (the reported blur came from non-integer upscaling).
 */
.feature-media img {
    display: block;
    width: min(100%, 392px);
    margin-inline: auto;
    height: auto;
}

.feature-copy h3 {
    font-size: 23px;
}

/** Small gradient tick above each feature heading, echoing the section underline. */
.feature-copy h3::before {
    content: "";
    display: block;
    width: 34px;
    height: 4px;
    margin-block-end: 12px;
    border-radius: 999px;
    background: var(--gradient-accent);
    opacity: 0.85;
}

.feature-copy p {
    color: var(--color-text-dim);
}

.chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-block-start: 16px;
}

/** Chips pick up the row's hue: teal on default rows, violet on reversed rows. */
.chip {
    padding: 5px 13px;
    background: rgba(20, 180, 192, 0.07);
    border: 1px solid rgba(10, 154, 166, 0.30);
    border-radius: 999px;
    color: #1f6b74;
    font-size: 13px;
    white-space: nowrap;
}

.feature-row-reversed .chip {
    background: rgba(106, 91, 255, 0.06);
    border-color: rgba(106, 91, 255, 0.32);
    color: #4d44b5;
}

/* ==================================================================== *
 *  Screenshots slider                                                  *
 * ==================================================================== */

.shots-slider-wrap {
    position: relative;
    width: min(1240px, 96%);
    margin-inline: auto;
}

.shots-slider {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding: 12px 6px 26px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--color-border) transparent;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
}

.shot {
    flex: 0 0 auto;
    width: min(392px, 78vw);
    scroll-snap-align: center;
    cursor: zoom-in;
}

.shots-arrow {
    position: absolute;
    inset-block-start: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    color: var(--color-text);
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    touch-action: manipulation;
    box-shadow: 0 2px 8px rgba(16, 24, 40, 0.1);
    transition: border-color 0.15s ease, color 0.15s ease;
}

.shots-arrow:hover,
.shots-arrow:active {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.shots-arrow-prev {
    inset-inline-start: -8px;
}

.shots-arrow-next {
    inset-inline-end: -8px;
}

/* Lightbox */

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4vmin;
    background: rgba(10, 13, 22, 0.9);
    cursor: zoom-out;
}

/**
 * The author display:flex above would otherwise defeat the user-agent rule for the
 * hidden attribute, leaving the overlay veiling the whole page (the "black page" bug).
 */
.lightbox[hidden] {
    display: none;
}

.lightbox img {
    max-width: 94vw;
    max-height: 92vh;
    border-radius: 12px;
}

/* ==================================================================== *
 *  Changelog                                                           *
 * ==================================================================== */

.changelog-entry {
    margin-block-end: 12px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-card);
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
    overflow: hidden;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.changelog-entry[open] {
    border-color: rgba(10, 154, 166, 0.42);
    box-shadow: 0 6px 18px rgba(16, 24, 40, 0.07);
}

.changelog-entry summary {
    display: flex;
    align-items: baseline;
    gap: 16px;
    padding: 16px 22px;
    cursor: pointer;
    list-style: none;
}

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

.changelog-entry summary::after {
    content: "+";
    margin-inline-start: auto;
    color: var(--color-text-dim);
    font-size: 18px;
}

.changelog-entry[open] summary::after {
    content: "\2212";
}

.changelog-version {
    font-weight: 700;
    font-size: 17px;
    color: var(--color-accent);
}

.changelog-date {
    color: var(--color-text-dim);
    font-size: 14px;
}

.changelog-entry p {
    margin: 0;
    padding: 0 22px 18px;
    color: var(--color-text-dim);
}

/* ==================================================================== *
 *  Legal sections                                                      *
 * ==================================================================== */

/** Accent side-bars make the clause list scannable instead of a grey text wall. */
#terms h4,
#privacy h4 {
    margin-block: 26px 6px;
    padding-inline-start: 12px;
    border-inline-start: 3px solid var(--color-accent);
    font-size: 17px;
}

#terms p,
#privacy p {
    color: var(--color-text-dim);
}

/* ==================================================================== *
 *  Contact form                                                        *
 * ==================================================================== */

.contact-email {
    font-size: 17px;
    margin-block-end: 28px;
    text-align: center;
}

/** The form sits on its own white card so it reads as one unit on the tinted band. */
#contactForm {
    padding: 28px 26px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border-soft);
    border-radius: var(--radius-card);
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
}

.form-group {
    margin-block-end: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group label {
    display: block;
    margin-block-end: 6px;
    color: var(--color-text-dim);
    font-size: 14px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 11px 14px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-control);
    color: var(--color-text);
    font: inherit;
    resize: vertical;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(20, 180, 192, 0.15);
}

.form-agree label {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
    color: var(--color-text-dim);
    font-size: 14px;
}

.submit-button {
    padding: 12px 36px;
    background: var(--gradient-accent);
    border: 0;
    border-radius: var(--radius-control);
    color: #ffffff;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(38, 88, 196, 0.24);
    transition: box-shadow 0.15s ease, transform 0.15s ease, opacity 0.15s ease;
}

.submit-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(38, 88, 196, 0.3);
}

.submit-button:disabled {
    opacity: 0.55;
    cursor: default;
    transform: none;
    box-shadow: none;
}

.form-feedback {
    min-height: 1.4em;
    margin-block-start: 12px;
    font-size: 14.5px;
}

.form-feedback.ok    { color: #178a55; }
.form-feedback.error { color: #cf3f3f; }

/* Honeypot: physically removed from the visual page and tab order. */
.hp-field {
    position: absolute;
    inset-inline-start: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* ==================================================================== *
 *  Footer                                                              *
 * ==================================================================== */

.footer {
    position: relative;
    padding-block: 56px 32px;
    background: var(--color-bg-raised);
    border-block-start: 1px solid var(--color-border-soft);
}

/** Gradient hairline caps the page bottom, mirroring the one under the nav bar. */
.footer::before {
    content: "";
    position: absolute;
    inset-block-start: -1px;
    inset-inline: 0;
    height: 3px;
    background: var(--gradient-hairline);
    opacity: 0.6;
    pointer-events: none;
}

.footer-title {
    font-size: 19px;
    margin-block-end: 18px;
}

.footer-langs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 6px;
}

/** Language links as light cards: the grid gains visible structure lines. */
.footer-langs a {
    display: flex;
    flex-direction: column;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid var(--color-border-soft);
    border-radius: 8px;
    color: var(--color-text-dim);
    font-size: 14px;
    line-height: 1.35;
    transition: border-color 0.15s ease, background 0.15s ease;
}

.footer-langs a small {
    color: rgba(97, 112, 139, 0.7);
    font-size: 11.5px;
}

.footer-langs a:hover {
    background: #ffffff;
    border-color: rgba(10, 154, 166, 0.4);
    color: var(--color-text);
}

.footer-langs a.active {
    background: rgba(20, 180, 192, 0.08);
    border-color: rgba(10, 154, 166, 0.45);
    color: var(--color-accent);
}

.footer-legal {
    margin-block-start: 32px;
    color: rgba(97, 112, 139, 0.85);
    font-size: 13px;
    text-align: center;
}

.footer-legal p {
    margin: 4px 0;
}

/* ==================================================================== *
 *  Responsive                                                          *
 * ==================================================================== */

/**
 * Navigation collapses to the hamburger below 1280px — earlier than the content
 * breakpoints — because the full link row only fits every locale (German and
 * Russian are the widest) from ~1200px of row width upward.
 */
@media (max-width: 1279.98px) {
    .nav-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        inset-block-start: var(--nav-height);
        inset-inline: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        padding: 14px 6vw 20px;
        background: #ffffff;
        border-block-end: 1px solid var(--color-border-soft);
        box-shadow: 0 16px 28px rgba(16, 24, 40, 0.1);
        white-space: normal;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links > a {
        padding: 10px 4px;
        font-size: 16px;
    }

    .nav-cta {
        text-align: center;
    }

    .lang-menu {
        margin-block-start: 6px;
    }

    .lang-dropdown {
        position: static;
        max-height: 40vh;
    }
}

@media (max-width: 900px) {
    .hero-grid,
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .feature-row-reversed .feature-media,
    .feature-row-reversed .feature-copy {
        order: initial;
    }

    #contactForm {
        padding: 20px 16px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    /**
     * Keep the prev/next controls on screen. Hiding them assumed swipe was enough;
     * on a phone that left no obvious way to step through the gallery.
     */
    .shots-slider-wrap {
        width: 100%;
    }

    .shots-slider {
        padding-inline: 52px;
        scroll-padding-inline: 52px;
    }

    .shots-arrow {
        width: 48px;
        height: 48px;
        font-size: 18px;
        background: rgba(255, 255, 255, 0.96);
        box-shadow: 0 2px 12px rgba(16, 24, 40, 0.18);
    }

    .shots-arrow-prev {
        inset-inline-start: 8px;
    }

    .shots-arrow-next {
        inset-inline-end: 8px;
    }
}

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

    * {
        transition: none !important;
    }
}
