:root {
    --bg: #08090f;
    --bg-soft: #11131d;
    --panel: #171a26;
    --panel-strong: #202434;
    --text: #f7f3e8;
    --muted: #b8b3a7;
    --line: rgba(255, 255, 255, 0.14);
    --gold: #f4c95d;
    --coral: #ff5c6c;
    --teal: #39d5c4;
    --opal: #eef7ff;
    --green: #69e08b;
    --blue: #5fa8ff;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
    --radius: 8px;
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    background: var(--bg);
}

body {
    margin: 0;
    min-height: 100%;
    color: var(--text);
    background:
        linear-gradient(145deg, rgba(8, 9, 15, 1), rgba(18, 12, 18, 1) 42%, rgba(8, 18, 18, 1)),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.018) 0, rgba(255, 255, 255, 0.018) 1px, transparent 1px, transparent 96px);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.55;
}

body.no-scroll {
    overflow: hidden;
}

[hidden] {
    display: none !important;
}

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

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

button,
input {
    font: inherit;
}

.skip-link,
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link:focus {
    z-index: 999;
    width: auto;
    height: auto;
    margin: 0;
    padding: 0.75rem 1rem;
    clip: auto;
    color: #06070b;
    background: var(--gold);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid var(--line);
    background: rgba(8, 9, 15, 0.86);
    backdrop-filter: blur(18px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 0.82rem 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    min-width: 0;
}

.brand-mark {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border: 1px solid rgba(244, 201, 93, 0.6);
    border-radius: 50%;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(0, 0, 0, 0.1)),
        url("/assets/images/favicon-32.png") center / cover no-repeat;
    box-shadow: 0 0 26px rgba(57, 213, 196, 0.35), inset 0 0 16px rgba(244, 201, 93, 0.26);
}

.brand strong {
    display: block;
    font-size: 1.18rem;
    line-height: 1.1;
}

.brand small {
    display: block;
    color: var(--muted);
    font-size: 0.78rem;
}

.brand--footer {
    display: inline-flex;
    margin-bottom: 1rem;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.site-nav a {
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 0.62rem 0.85rem;
    color: #e9e3d6;
    font-size: 0.94rem;
    transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
    border-color: rgba(244, 201, 93, 0.45);
    color: #fff;
    background: rgba(244, 201, 93, 0.1);
    outline: none;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--text);
    background: rgba(255, 255, 255, 0.06);
    cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
    display: block;
    width: 18px;
    height: 2px;
    margin: 3px auto;
    background: currentColor;
}

.notice-bar {
    display: flex;
    justify-content: center;
    gap: 0.7rem;
    padding: 0.48rem 1rem;
    overflow-x: auto;
    color: #09090f;
    background: linear-gradient(90deg, var(--gold), var(--teal), var(--coral));
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
}

.notice-bar span {
    flex: 0 0 auto;
}

.hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 74vh;
    isolation: isolate;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(8, 9, 15, 0.92), rgba(8, 9, 15, 0.58) 48%, rgba(8, 9, 15, 0.3)),
        linear-gradient(0deg, rgba(8, 9, 15, 0.92), rgba(8, 9, 15, 0) 36%),
        var(--hero-image) center / cover no-repeat;
}

.hero--compact {
    min-height: 45vh;
}

.hero__content {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
    padding: 5.5rem 0 5rem;
}

.kicker {
    margin: 0 0 0.9rem;
    color: var(--gold);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
    max-width: 760px;
    margin: 0;
    font-size: 4.8rem;
    line-height: 0.95;
}

.hero__lead {
    max-width: 640px;
    margin: 1.35rem 0 0;
    color: #f4ead8;
    font-size: 1.25rem;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.8rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    padding: 0.78rem 1.15rem;
    color: var(--text);
    background: rgba(255, 255, 255, 0.08);
    font-weight: 850;
    cursor: pointer;
    transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, 0.35);
    outline: none;
}

.btn:disabled {
    cursor: not-allowed;
    opacity: 0.55;
    transform: none;
}

.btn--primary {
    border-color: rgba(244, 201, 93, 0.74);
    color: #171008;
    background: linear-gradient(135deg, #ffe08a, #f4b63d 55%, #ff6b79);
    box-shadow: 0 16px 38px rgba(244, 201, 93, 0.24);
}

.btn--ghost {
    background: rgba(8, 9, 15, 0.42);
}

.btn--small {
    min-height: 38px;
    padding: 0.52rem 0.86rem;
    font-size: 0.9rem;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--gold);
    font-weight: 850;
}

.text-link::after {
    content: "";
    width: 0.55rem;
    height: 0.55rem;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
}

.promise-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.045);
}

.promise-strip div {
    min-height: 122px;
    padding: 1.35rem;
    border-right: 1px solid var(--line);
}

.promise-strip div:last-child {
    border-right: 0;
}

.promise-strip strong {
    display: block;
    color: #fff;
    font-size: 1.1rem;
}

.promise-strip span {
    display: block;
    margin-top: 0.4rem;
    color: var(--muted);
}

.section,
.game-section,
.legal-layout {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.section {
    padding: 5.5rem 0;
}

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

.section-heading h2,
.split-feature h2,
.text-section h2,
.legal-copy h2 {
    margin: 0;
    font-size: 2.35rem;
    line-height: 1.05;
}

.section-heading p,
.split-feature p,
.text-section p,
.legal-copy p {
    color: var(--muted);
}

.game-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.game-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035));
    box-shadow: var(--shadow);
}

.game-card__image {
    display: block;
    aspect-ratio: 1.45;
    overflow: hidden;
    background: #0e1018;
}

.game-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03);
    transition: transform 420ms ease;
}

.game-card:hover .game-card__image img {
    transform: scale(1.08);
}

.game-card__body {
    padding: 1.25rem;
}

.game-card h3 {
    margin: 0 0 0.55rem;
    font-size: 1.45rem;
}

.game-card p {
    min-height: 5rem;
    margin: 0 0 1rem;
    color: var(--muted);
}

.split-feature {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 2.5rem;
    align-items: start;
    border-top: 1px solid var(--line);
}

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

.feature-list div {
    padding: 1.2rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.045);
}

.feature-list strong {
    color: #fff;
}

.page-hero {
    width: min(980px, calc(100% - 32px));
    margin: 0 auto;
    padding: 5rem 0 2rem;
}

.page-hero p {
    max-width: 720px;
    color: var(--muted);
}

.legal-layout {
    padding: 1rem 0 5rem;
}

.legal-copy {
    max-width: 880px;
}

.legal-copy h2 {
    margin-top: 2.4rem;
    font-size: 1.45rem;
}

.legal-copy h2:first-child {
    margin-top: 0;
}

.legal-copy p {
    margin: 0.75rem 0 0;
}

.text-section {
    max-width: 880px;
    border-top: 1px solid var(--line);
}

.game-section {
    padding: 3rem 0 2rem;
}

.game-root {
    --game-accent: var(--teal);
}

.game-page--outback .game-root {
    --game-accent: var(--gold);
}

.game-page--harbour .game-root {
    --game-accent: var(--blue);
}

.game-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 1rem;
    align-items: start;
}

.game-main,
.game-side {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(17, 19, 29, 0.9);
    box-shadow: var(--shadow);
}

.game-main {
    overflow: hidden;
}

.game-titlebar {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid var(--line);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
}

.game-titlebar h2 {
    margin: 0;
    font-size: 1.5rem;
}

.game-titlebar p {
    margin: 0.15rem 0 0;
    color: var(--muted);
    font-size: 0.94rem;
}

.score-pill {
    min-width: 132px;
    align-self: start;
    border: 1px solid rgba(244, 201, 93, 0.42);
    border-radius: 999px;
    padding: 0.56rem 0.85rem;
    color: #170f07;
    background: linear-gradient(135deg, #ffe08a, #f5b93e);
    text-align: center;
    font-weight: 900;
}

.score-pill span {
    display: block;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
}

.slot-stage,
.hold-stage {
    position: relative;
    padding: 1rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(0, 0, 0, 0.12)),
        linear-gradient(90deg, rgba(57, 213, 196, 0.08), rgba(244, 201, 93, 0.08), rgba(255, 92, 108, 0.08));
}

.reels-stage {
    display: grid;
    grid-template-columns: repeat(var(--cols), minmax(0, 1fr));
    gap: 0.7rem;
}

.reel-column {
    display: grid;
    grid-template-rows: repeat(var(--rows), minmax(0, 1fr));
    gap: 0.7rem;
    min-width: 0;
}

.slot-cell,
.hold-cell {
    position: relative;
    display: grid;
    place-items: center;
    aspect-ratio: 1;
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: var(--radius);
    background: linear-gradient(145deg, #10131c, #242737);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.32), inset 0 0 30px rgba(255, 255, 255, 0.04);
}

.slot-cell::before,
.hold-cell::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(130deg, rgba(255, 255, 255, 0.18), transparent 36%, transparent 68%, rgba(255, 255, 255, 0.08));
    opacity: 0.55;
    pointer-events: none;
}

.slot-symbol {
    position: relative;
    z-index: 1;
    width: 86%;
    height: 86%;
    background-repeat: no-repeat;
    background-size: 300% 200%;
    filter: drop-shadow(0 12px 16px rgba(0, 0, 0, 0.38));
    transform: translateZ(0);
}

.slot-cell.spinning .slot-symbol {
    animation: reelBlur 90ms linear infinite;
}

.slot-cell.win-cell,
.hold-cell.locked {
    border-color: color-mix(in srgb, var(--game-accent) 76%, white);
    box-shadow: 0 0 22px color-mix(in srgb, var(--game-accent) 38%, transparent), inset 0 0 18px rgba(255, 255, 255, 0.08);
}

.slot-cell.win-cell .slot-symbol,
.hold-cell.locked .slot-symbol {
    animation: symbolWin 850ms ease both;
}

.hold-grid {
    display: grid;
    grid-template-columns: repeat(var(--cols), minmax(0, 1fr));
    gap: 0.7rem;
}

.hold-cell.empty .slot-symbol {
    opacity: 0;
    transform: scale(0.72);
}

.hold-cell.revealed {
    animation: holdReveal 520ms ease both;
}

.hold-value {
    position: absolute;
    z-index: 2;
    right: 0.38rem;
    bottom: 0.34rem;
    min-width: 2.4rem;
    border: 1px solid rgba(244, 201, 93, 0.55);
    border-radius: 999px;
    padding: 0.16rem 0.34rem;
    color: #170f07;
    background: #f4c95d;
    font-size: 0.78rem;
    font-weight: 900;
    text-align: center;
}

.game-controls {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 0.9rem;
    align-items: end;
    padding: 1rem;
    border-top: 1px solid var(--line);
}

.stake-control label {
    display: flex;
    justify-content: space-between;
    gap: 0.8rem;
    margin-bottom: 0.42rem;
    color: var(--muted);
    font-size: 0.9rem;
}

.stake-control output {
    color: var(--gold);
    font-weight: 900;
}

.stake-control input[type="range"] {
    width: 100%;
    accent-color: var(--gold);
}

.status-line {
    min-height: 2.75rem;
    padding: 0 1rem 1rem;
    color: #eadfcb;
}

.status-line strong {
    color: var(--gold);
}

.game-side {
    padding: 1rem;
}

.side-section + .side-section {
    margin-top: 1.2rem;
    padding-top: 1.2rem;
    border-top: 1px solid var(--line);
}

.side-section h3 {
    margin: 0 0 0.65rem;
    font-size: 1rem;
    text-transform: uppercase;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
}

.stat {
    padding: 0.75rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.045);
}

.stat span {
    display: block;
    color: var(--muted);
    font-size: 0.78rem;
    text-transform: uppercase;
}

.stat strong {
    display: block;
    margin-top: 0.2rem;
    font-size: 1.2rem;
}

.meter-track {
    height: 12px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
}

.meter-fill {
    width: var(--meter, 0%);
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--teal), var(--gold), var(--coral));
    transition: width 320ms ease;
}

.meter-fill.pulse {
    animation: meterPulse 620ms ease;
}

.paytable-list {
    display: grid;
    gap: 0.5rem;
}

.pay-row {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 0.62rem;
    align-items: center;
    min-width: 0;
    padding: 0.48rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.035);
}

.pay-row .slot-symbol {
    width: 42px;
    height: 42px;
}

.pay-row strong,
.pay-row span {
    display: block;
    min-width: 0;
}

.pay-row span {
    color: var(--muted);
    font-size: 0.82rem;
}

.bonus-panel {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.5rem;
    margin-top: 0.8rem;
}

.bonus-tile {
    display: grid;
    place-items: center;
    min-height: 64px;
    border: 1px solid rgba(244, 201, 93, 0.4);
    border-radius: var(--radius);
    color: #170f07;
    background: linear-gradient(145deg, #ffe08a, #f0a936);
    font-weight: 900;
    transform: rotateY(0deg);
}

.bonus-tile.flipped {
    animation: bonusFlip 560ms ease both;
}

.mini-note {
    color: var(--muted);
    font-size: 0.9rem;
}

.confetti {
    position: absolute;
    top: 12%;
    left: var(--x);
    z-index: 5;
    width: 8px;
    height: 14px;
    border-radius: 2px;
    background: var(--c);
    pointer-events: none;
    animation: confettiFall 1050ms ease-in forwards;
}

.site-footer {
    border-top: 1px solid var(--line);
    background: #08090f;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.8fr 0.8fr 1fr;
    gap: 1.5rem;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 3rem 0;
}

.site-footer h2 {
    margin: 0 0 0.8rem;
    font-size: 1rem;
    text-transform: uppercase;
}

.site-footer p,
.site-footer a,
.footer-bottom {
    color: var(--muted);
}

.site-footer a {
    display: block;
    margin: 0.42rem 0;
}

.site-footer a.brand {
    display: inline-flex;
    margin: 0 0 1rem;
}

.site-footer a:hover {
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 1.1rem 0;
    border-top: 1px solid var(--line);
    font-size: 0.88rem;
}

.age-gate {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: grid;
    place-items: center;
    padding: 1rem;
    background: rgba(5, 6, 10, 0.86);
    backdrop-filter: blur(14px);
}

.age-gate__panel {
    width: min(520px, 100%);
    border: 1px solid rgba(244, 201, 93, 0.38);
    border-radius: var(--radius);
    padding: 1.6rem;
    background: linear-gradient(145deg, #171a26, #0c0e15);
    box-shadow: var(--shadow);
}

.age-gate__panel h2 {
    margin: 0;
    font-size: 1.75rem;
}

.age-gate__panel p:not(.kicker) {
    color: var(--muted);
}

.age-gate__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.1rem;
}

.cookie-banner {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 80;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    width: min(560px, calc(100% - 32px));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 0.9rem;
    background: rgba(17, 19, 29, 0.96);
    box-shadow: var(--shadow);
}

.cookie-banner p {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

@keyframes reelBlur {
    0% { transform: translateY(-4px) scale(0.98); filter: blur(1px) drop-shadow(0 12px 16px rgba(0, 0, 0, 0.38)); }
    100% { transform: translateY(4px) scale(1.02); filter: blur(2px) drop-shadow(0 12px 16px rgba(0, 0, 0, 0.38)); }
}

@keyframes symbolWin {
    0% { transform: scale(0.92); }
    48% { transform: scale(1.12); }
    100% { transform: scale(1); }
}

@keyframes holdReveal {
    0% { transform: rotateY(80deg) scale(0.82); }
    100% { transform: rotateY(0) scale(1); }
}

@keyframes meterPulse {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.8); }
}

@keyframes bonusFlip {
    0% { transform: rotateY(0deg) scale(0.96); }
    50% { transform: rotateY(90deg) scale(1.08); }
    100% { transform: rotateY(0deg) scale(1); }
}

@keyframes confettiFall {
    0% { transform: translateY(0) rotate(0deg); opacity: 1; }
    100% { transform: translateY(380px) rotate(260deg); opacity: 0; }
}

@media (max-width: 1020px) {
    .game-card-grid,
    .footer-grid,
    .game-shell {
        grid-template-columns: 1fr;
    }

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

    .footer-bottom {
        flex-direction: column;
    }
}

@media (max-width: 820px) {
    .nav-toggle {
        display: block;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 1px);
        right: 1rem;
        left: 1rem;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 0.8rem;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        background: rgba(12, 14, 21, 0.98);
        box-shadow: var(--shadow);
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a {
        border-radius: var(--radius);
    }

    .hero h1,
    .page-hero h1 {
        font-size: 3.3rem;
    }

    .hero__lead {
        font-size: 1.08rem;
    }

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

    .feature-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .header-inner,
    .section,
    .game-section,
    .legal-layout,
    .page-hero,
    .footer-grid,
    .footer-bottom {
        width: min(100% - 24px, 1180px);
    }

    .brand small {
        display: none;
    }

    .notice-bar {
        justify-content: flex-start;
    }

    .hero,
    .hero--compact {
        min-height: 58vh;
    }

    .hero__content {
        padding: 3.6rem 0;
    }

    .hero h1,
    .page-hero h1 {
        font-size: 2.65rem;
    }

    .promise-strip {
        grid-template-columns: 1fr;
    }

    .promise-strip div {
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .game-titlebar,
    .game-controls {
        grid-template-columns: 1fr;
    }

    .game-titlebar {
        display: grid;
    }

    .score-pill {
        width: 100%;
    }

    .reels-stage,
    .reel-column,
    .hold-grid {
        gap: 0.42rem;
    }

    .slot-stage,
    .hold-stage {
        padding: 0.6rem;
    }

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

    .cookie-banner {
        right: 0.75rem;
        bottom: 0.75rem;
        flex-direction: column;
        align-items: stretch;
    }
}
