:root {
    --bg: #081611;
    --bg-strong: #10221b;
    --surface: rgba(18, 41, 33, 0.84);
    --surface-strong: rgba(24, 53, 43, 0.92);
    --ink: #edf3ea;
    --muted: #bfd0c4;
    --line: rgba(221, 231, 224, 0.12);
    --green-deep: #17352b;
    --green-soft: #2d5a46;
    --green-bright: #5c8f76;
    --gold: #d2a34d;
    --shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
    --radius-lg: 30px;
    --radius-md: 20px;
    --radius-sm: 14px;
    --board-light: #eee0c9;
    --board-dark: #779556;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    margin: 0;
    min-width: 320px;
    min-height: 100svh;
    font-family: "Trebuchet MS", "Segoe UI", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(210, 163, 77, 0.18), transparent 20%),
        radial-gradient(circle at top right, rgba(45, 90, 70, 0.28), transparent 24%),
        linear-gradient(180deg, #06110d 0%, #0c1c16 48%, #132720 100%);
    overflow-x: hidden;
    overscroll-behavior-x: none;
}

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

a {
    color: inherit;
    text-decoration: none;
}

.page-shell {
    position: relative;
    z-index: 1;
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
    padding: 20px 0 48px;
    isolation: isolate;
}

.site-ambient {
    position: fixed;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.ambient-grid {
    position: absolute;
    inset: -15%;
    background:
        linear-gradient(90deg, transparent 0 48%, rgba(115, 149, 86, 0.12) 49%, transparent 50% 100%),
        linear-gradient(0deg, transparent 0 48%, rgba(115, 149, 86, 0.12) 49%, transparent 50% 100%);
    background-size: 88px 88px;
    opacity: 0.32;
    transform: rotate(-8deg) scale(1.08);
    animation: drift-grid 38s linear infinite;
}

.ambient-orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(18px);
    animation: orb-float-site 18s ease-in-out infinite alternate;
}

.ambient-orb-one {
    top: 6%;
    left: -3%;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(126, 184, 139, 0.16) 0%, transparent 72%);
}

.ambient-orb-two {
    top: 18%;
    right: -4%;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(210, 163, 77, 0.14) 0%, transparent 72%);
    animation-duration: 24s;
}

.ambient-orb-three {
    left: 34%;
    bottom: -6%;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(56, 103, 85, 0.18) 0%, transparent 74%);
    animation-duration: 21s;
}

.ambient-piece {
    position: absolute;
    opacity: 0.14;
    filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.32));
    animation: float-piece 20s ease-in-out infinite alternate;
    will-change: transform;
}

.ambient-piece img {
    width: 100%;
    height: auto;
    image-rendering: auto;
}

.ambient-piece-one {
    top: 14%;
    left: 4%;
    width: 72px;
}

.ambient-piece-two {
    top: 22%;
    right: 7%;
    width: 82px;
    animation-duration: 26s;
}

.ambient-piece-three {
    bottom: 16%;
    left: 8%;
    width: 68px;
    animation-duration: 23s;
}

.ambient-piece-four {
    right: 10%;
    bottom: 10%;
    width: 74px;
    animation-duration: 28s;
}

.site-header {
    position: sticky;
    top: 10px;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 18px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    background: rgba(12, 28, 22, 0.82);
    backdrop-filter: blur(14px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
    transform: translateZ(0);
    backface-visibility: hidden;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.brand img {
    width: 42px;
    height: 42px;
    border-radius: 12px;
}

.site-menu {
    display: none;
}

.menu-toggle {
    display: none;
    list-style: none;
}

.menu-toggle::-webkit-details-marker {
    display: none;
}

.site-nav {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    color: var(--muted);
    font-size: 0.95rem;
}

.site-nav a {
    padding: 8px 12px;
    border-radius: 999px;
    transition: color 160ms ease, background-color 160ms ease;
    touch-action: manipulation;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-footer a:hover,
.site-footer a:focus-visible {
    color: #fff4dc;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    background: rgba(210, 163, 77, 0.14);
}

.hero {
    display: grid;
    grid-template-columns: minmax(340px, 0.82fr) minmax(520px, 1.18fr);
    gap: 34px;
    align-items: stretch;
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: clamp(28px, 4vw, 42px);
    background:
        linear-gradient(135deg, rgba(16, 34, 27, 0.96), rgba(24, 53, 43, 0.9)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
    box-shadow: var(--shadow);
    overflow: hidden;
}

.hero-copy {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--green-bright);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.hero-logo {
    width: min(300px, 64%);
    margin-bottom: 14px;
}

.hero h1,
.section-heading h2,
.feature-strip h2,
.pricing-card h3 {
    margin: 0;
    font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
}

.hero h1 {
    max-width: 16ch;
    font-size: clamp(1.9rem, 3.1vw, 3.15rem);
    line-height: 1.03;
}

.hero-text,
.section-heading p,
.feature-card p,
.feature-strip p,
.pricing-card p,
.site-footer p,
.gallery-card figcaption {
    color: var(--muted);
    line-height: 1.65;
}

.hero-text {
    max-width: 46ch;
    margin: 14px 0 0;
    font-size: 0.98rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 14px;
    margin-top: 20px;
    width: 100%;
}

.hero-action-stack {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    width: min(100%, 680px);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button-primary {
    background: linear-gradient(135deg, var(--gold), #bd8733);
    color: #172018;
    box-shadow: 0 18px 30px rgba(210, 163, 77, 0.22);
}

.button-secondary {
    border-color: rgba(210, 163, 77, 0.28);
    background: rgba(255, 255, 255, 0.05);
    color: #f6e7c6;
}

.hero-action-note {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(246, 231, 198, 0.82);
    font-size: 0.8rem;
    line-height: 1;
}

.itch-widget {
    width: min(100%, 680px);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.22);
}

.itch-widget iframe {
    display: block;
    width: 100%;
    max-width: 680px;
    min-height: 190px;
    border: 0;
    background: transparent;
}

.hero-info-trigger {
    position: relative;
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid rgba(210, 163, 77, 0.34);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffe8bf;
    font-size: 0.78rem;
    font-weight: 700;
    cursor: help;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.hero-tooltip {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 12px);
    width: min(270px, calc(100vw - 48px));
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    background: rgba(9, 21, 17, 0.96);
    color: var(--ink);
    font-size: 0.82rem;
    line-height: 1.5;
    text-align: left;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.28);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 8px);
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
    pointer-events: none;
    z-index: 5;
}

.hero-tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    width: 10px;
    height: 10px;
    background: rgba(9, 21, 17, 0.96);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transform: translateX(-50%) rotate(45deg);
}

.hero-info-trigger:hover .hero-tooltip,
.hero-info-trigger:focus-visible .hero-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.hero-highlights span {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.5;
}

.hero-highlights span::before {
    content: "•";
    margin-right: 8px;
    color: var(--gold);
}

.hero-visual {
    position: relative;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.hero-card {
    position: relative;
    padding: clamp(12px, 1.8vw, 18px);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(12, 23, 19, 0.95), rgba(26, 54, 43, 0.9));
    box-shadow: 0 30px 48px rgba(0, 0, 0, 0.34);
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.hero-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0, rgba(255, 255, 255, 0.05) 1px, transparent 1px, transparent 12.5%),
        linear-gradient(rgba(255, 255, 255, 0.05) 0, rgba(255, 255, 255, 0.05) 1px, transparent 1px, transparent 12.5%);
    background-size: 12.5% 12.5%;
    border-radius: 28px;
    pointer-events: none;
}

.hero-card > img {
    position: relative;
    z-index: 1;
    border-radius: 18px;
    width: 100%;
    height: 100%;
    min-height: 460px;
    max-height: 640px;
    object-fit: contain;
    object-position: center;
}

.hero-board-frame {
    position: relative;
    z-index: 1;
    width: min(100%, 620px);
    aspect-ratio: 1;
    margin: 0 auto;
    padding: clamp(10px, 1.4vw, 16px);
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(24, 53, 43, 0.98), rgba(15, 34, 27, 0.94));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.28);
    flex: 0 0 auto;
    overflow: hidden;
    transform: translateZ(0);
    backface-visibility: hidden;
    touch-action: pan-y;
    user-select: none;
    -webkit-user-select: none;
}

.hero-board {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(8, 1fr);
    aspect-ratio: 1;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.18);
    background: #16241d;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
    transform: translateZ(0);
    backface-visibility: hidden;
    touch-action: pan-y;
}

.hero-square {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 0;
    aspect-ratio: 1;
}

.hero-square.light {
    background: var(--board-light);
}

.hero-square.dark {
    background: var(--board-dark);
}

.hero-square img {
    width: 78%;
    height: 78%;
    object-fit: contain;
    image-rendering: pixelated;
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
    filter: drop-shadow(0 2px 1px rgba(0, 0, 0, 0.22));
}

.hero-note {
    position: relative;
    margin-top: 16px;
    width: min(100%, 420px);
    align-self: flex-end;
    padding: 18px 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    background: rgba(13, 28, 22, 0.94);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
}

.hero-note span {
    display: block;
    margin-bottom: 6px;
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero-note strong {
    font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
    font-size: 1.1rem;
    line-height: 1.35;
}

.feature-strip,
.section,
.pricing,
.site-footer {
    margin-top: 24px;
}

.feature-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.feature-strip article,
.feature-card,
.gallery-card,
.pricing-card,
.site-footer {
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: var(--surface);
    backdrop-filter: blur(10px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
}

.feature-strip article,
.feature-card,
.pricing-card,
.site-footer {
    border-radius: var(--radius-lg);
}

.feature-strip article {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 24px;
    min-height: 100%;
}

.feature-kicker,
.price-label {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.feature-strip h2 {
    font-size: 1.12rem;
    line-height: 1.5;
    font-family: "Trebuchet MS", "Segoe UI", sans-serif;
    font-weight: 400;
    color: var(--muted);
}

.section {
    padding: 28px;
    border-radius: 36px;
    background: rgba(9, 21, 17, 0.44);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 22px;
}

.section-heading h2 {
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1;
}

.section-heading p {
    margin: 12px 0 0;
}

.feature-grid,
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.feature-card,
.pricing-card {
    padding: 24px;
}

.feature-card h3 {
    margin: 0 0 10px;
    font-size: 1.2rem;
}

.feature-card p,
.pricing-card p,
.feature-strip p,
.site-footer p {
    margin: 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 18px;
}

.gallery-card {
    grid-column: span 4;
    margin: 0;
    overflow: hidden;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.gallery-grid > .gallery-card:nth-child(-n + 2) {
    grid-column: span 6;
}

.gallery-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.gallery-card figcaption {
    flex: 1;
    padding: 14px 16px 18px;
    background: rgba(13, 28, 22, 0.94);
    font-size: 0.95rem;
}

.pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pricing-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 100%;
}

.pricing-card h3 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1;
}

.pricing-card-lite {
    background:
        linear-gradient(180deg, rgba(23, 53, 43, 0.96), rgba(30, 68, 54, 0.94));
}

.pricing-card-full {
    background:
        linear-gradient(180deg, rgba(12, 23, 19, 0.98), rgba(18, 41, 33, 0.96));
    color: #fff8ef;
}

.pricing-card-full .itch-widget {
    width: 100%;
}

.pricing-card-full .itch-widget iframe {
    max-width: none;
}

.pricing-card-lite p,
.pricing-card-lite .price-label,
.pricing-card-full p,
.pricing-card-full .price-label {
    color: rgba(255, 248, 239, 0.82);
}

.pricing-card-full .button-secondary {
    background: rgba(210, 163, 77, 0.14);
    border-color: rgba(210, 163, 77, 0.3);
    color: #ffe8bf;
}

.site-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 22px 24px;
}

.footer-copy p + p {
    margin-top: 6px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: flex-end;
}

.hero-highlights span::before {
    content: "•";
    margin-right: 8px;
    color: var(--gold);
}

@keyframes drift-grid {
    from {
        transform: rotate(-8deg) scale(1.08) translate3d(0, 0, 0);
    }
    to {
        transform: rotate(-8deg) scale(1.08) translate3d(-50px, 40px, 0);
    }
}

@keyframes orb-float-site {
    from {
        transform: translate3d(0, 0, 0) scale(1);
    }
    to {
        transform: translate3d(24px, -20px, 0) scale(1.06);
    }
}

@keyframes float-piece {
    from {
        transform: translate3d(0, 0, 0) rotate(-8deg);
    }
    to {
        transform: translate3d(16px, -22px, 0) rotate(8deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    .ambient-grid,
    .ambient-orb,
    .ambient-piece {
        animation: none;
    }
}

@media (max-width: 1024px) {
    .hero,
    .feature-strip,
    .feature-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .gallery-card,
    .gallery-grid > .gallery-card:nth-child(-n + 2) {
        grid-column: span 12;
    }

    .hero h1 {
        max-width: none;
    }

    .hero-card img {
        min-height: 360px;
        max-height: 420px;
    }

    .hero-board-frame {
        width: min(100%, 520px);
    }

    .hero-note {
        margin-top: 14px;
        width: 100%;
        max-width: none;
        align-self: stretch;
    }
}

@media (max-width: 720px) {
    html {
        scroll-behavior: auto;
    }

    .page-shell {
        width: min(100% - 18px, 1200px);
        padding-top: 10px;
    }

    .site-ambient {
        position: absolute;
        inset: 0 0 auto;
        min-height: 100%;
    }

    .site-footer {
        border-radius: 24px;
    }

    .site-footer,
    .hero-actions,
    .footer-links {
        flex-direction: column;
        align-items: stretch;
    }

    .site-header {
        position: relative;
        top: 0;
        gap: 12px;
        padding: 10px 12px;
        margin-bottom: 18px;
        border-radius: 22px;
        align-items: center;
        backdrop-filter: none;
    }

    .brand {
        min-width: 0;
        font-size: 1.05rem;
    }

    .brand img {
        width: 38px;
        height: 38px;
    }

    .site-menu {
        position: relative;
        display: block;
    }

    .site-nav-desktop {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        min-height: 46px;
        padding: 0 16px;
        border: 1px solid rgba(210, 163, 77, 0.2);
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.05);
        color: #fff4dc;
        font-size: 0.92rem;
        font-weight: 700;
        letter-spacing: 0.04em;
        cursor: pointer;
        user-select: none;
        transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
    }

    .menu-toggle-icon {
        position: relative;
        width: 18px;
        height: 12px;
        border-top: 2px solid currentColor;
        border-bottom: 2px solid currentColor;
    }

    .menu-toggle-icon::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        border-top: 2px solid currentColor;
        transform: translateY(-50%);
    }

    .site-menu[open] .menu-toggle {
        background: rgba(210, 163, 77, 0.16);
        border-color: rgba(210, 163, 77, 0.34);
    }

    .site-menu[open] .menu-toggle-icon {
        border-color: transparent;
    }

    .site-menu[open] .menu-toggle-icon::before,
    .site-menu[open] .menu-toggle-icon::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 18px;
        border-top: 2px solid currentColor;
        transform-origin: center;
    }

    .site-menu[open] .menu-toggle-icon::before {
        transform: translate(-50%, -50%) rotate(45deg);
    }

    .site-menu[open] .menu-toggle-icon::after {
        transform: translate(-50%, -50%) rotate(-45deg);
    }

    .site-nav-mobile {
        position: absolute;
        top: calc(100% + 10px);
        right: 0;
        min-width: min(280px, calc(100vw - 36px));
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding: 10px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 20px;
        background: rgba(10, 24, 19, 0.96);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.34);
    }

    .site-menu[open] .site-nav-mobile {
        display: flex;
    }

    .site-nav-mobile a {
        min-height: 48px;
        display: flex;
        align-items: center;
        padding: 12px 14px;
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.03);
    }

    .site-nav-mobile a:hover,
    .site-nav-mobile a:focus-visible {
        background: rgba(210, 163, 77, 0.16);
    }

    .hero,
    .section,
    .feature-strip article,
    .feature-card,
    .pricing-card {
        padding: 20px;
    }

    .hero-logo {
        width: min(280px, 80%);
    }

    .hero h1 {
        font-size: clamp(1.9rem, 9vw, 2.8rem);
    }

    .hero-action-stack {
        align-items: stretch;
    }

    .hero-action-note {
        justify-content: center;
    }

    .itch-widget {
        width: 100%;
    }

    .itch-widget iframe {
        min-height: 190px;
    }

    .hero-card img {
        min-height: 280px;
        max-height: 320px;
    }

    .hero-board-frame {
        width: 100%;
        padding: 10px;
        max-width: 100%;
    }

    .ambient-piece {
        opacity: 0.1;
    }
}
