/* 1940s classic cartoon theme – CSS variables */
:root,
[data-theme="light"] {
    --bg-cream: #f5f0e6;
    --bg-paper: #ebe4d4;
    --outline-dark: #2c2420;
    --correct: #4a7c59;
    --correct-text: #ffffff;
    --wrong-spot: #c9a227;
    --wrong-spot-text: #ffffff;
    --absent: #5c5346;
    --absent-text: #ffffff;
    --key-default-bg: #e8e0d0;
    --key-default-text: #2c2420;
    --font-title: 'Bangers', cursive;
    --font-body: 'Nunito', 'Helvetica Neue', Arial, sans-serif;
}

[data-theme="dark"] {
    --bg-cream: #1a1915;
    --bg-paper: #252320;
    --outline-dark: #e8e0d0;
    --correct: #4a7c59;
    --correct-text: #ffffff;
    --wrong-spot: #c9a227;
    --wrong-spot-text: #ffffff;
    --absent: #3d3832;
    --absent-text: #ffffff;
    --key-default-bg: #2d2a26;
    --key-default-text: #e8e0d0;
    --font-title: 'Bangers', cursive;
    --font-body: 'Nunito', 'Helvetica Neue', Arial, sans-serif;
}

/* Palette: High contrast */
[data-palette="highcontrast"],
[data-theme="dark"][data-palette="highcontrast"] {
    --correct: #0d7d3d;
    --correct-text: #ffffff;
    --wrong-spot: #c9a227;
    --wrong-spot-text: #1a1a1a;
    --absent: #3d3d3d;
    --absent-text: #ffffff;
}

/* Palette: Retro / pixel */
[data-palette="retro"] {
    --correct: #0f380f;
    --correct-text: #9bbc0f;
    --wrong-spot: #8b6914;
    --wrong-spot-text: #f4f4f4;
    --absent: #306230;
    --absent-text: #9bbc0f;
}

[data-theme="dark"][data-palette="retro"] {
    --correct: #0f380f;
    --correct-text: #9bbc0f;
    --wrong-spot: #8b6914;
    --wrong-spot-text: #f4f4f4;
    --absent: #306230;
    --absent-text: #9bbc0f;
}

/* Palette: Neon */
[data-palette="neon"] {
    --correct: #00ff9f;
    --correct-text: #0a0a0a;
    --wrong-spot: #ff00ff;
    --wrong-spot-text: #0a0a0a;
    --absent: #444444;
    --absent-text: #ffffff;
}

[data-theme="dark"][data-palette="neon"] {
    --correct: #00ff9f;
    --correct-text: #0a0a0a;
    --wrong-spot: #ff00ff;
    --wrong-spot-text: #0a0a0a;
    --absent: #333333;
    --absent-text: #e0e0e0;
}

/* Global and loading */
body {
    margin: 0;
    background-color: var(--bg-cream);
    box-sizing: border-box;
}

.wordle-sliding-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
    box-sizing: border-box;
    background-color: var(--bg-cream);
}

.loadinBaba {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    min-height: 100vh;
    min-height: 100dvh;
    padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--bg-cream);
    box-sizing: border-box;
}

.loadinBaba img {
    max-width: min(200px, 50vw);
    max-height: min(200px, 40vh);
    object-fit: contain;
}

.wordle-loader {
    font-family: 'Bangers', cursive;
    font-size: clamp(2rem, 10vw, 3.5rem);
    letter-spacing: 0.15em;
    color: var(--outline-dark);
    display: flex;
    gap: 0.05em;
}

.wordle-loader-letter {
    animation: wordle-loader-pop 0.6s ease-in-out infinite;
}

.wordle-loader-letter:nth-child(1) { animation-delay: 0s; }
.wordle-loader-letter:nth-child(2) { animation-delay: 0.08s; }
.wordle-loader-letter:nth-child(3) { animation-delay: 0.16s; }
.wordle-loader-letter:nth-child(4) { animation-delay: 0.24s; }
.wordle-loader-letter:nth-child(5) { animation-delay: 0.32s; }
.wordle-loader-letter:nth-child(6) { animation-delay: 0.4s; }

@keyframes wordle-loader-pop {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.15); opacity: 0.9; }
}

/* Wordle app layout */
.wordle-app {
    z-index: 1;
    --tile-size: 3.5rem;
    --gap: 0.25rem;
    --main-gap: 1.25rem;
    --key-height: 3.25rem;
    --key-min-width: 2rem;
    --keyrow-gap: 0.375rem;
    --key-spacer-width: 1.25rem;
    --key-wide-min-width: 2.75rem;
    --tile-font-size: 1.65rem;
    --key-font-size: 0.8125rem;
    position: fixed;
    inset: 0;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--bg-cream);
    font-family: var(--font-body);
    padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
    box-sizing: border-box;
}

.wordle-header {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: min(500px, 100%);
    padding: 0.5rem 1rem;
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
    border-bottom: 2.5px solid var(--outline-dark);
    position: relative;
    flex-shrink: 0;
    min-height: 2.75rem;
}

.wordle-header.wordle-header-with-countdown {
    padding-bottom: 1.5rem;
}

.wordle-header-with-countdown .wordle-next-word-in {
    bottom: 0.35rem;
}

.wordle-title {
    font-family: var(--font-title);
    font-size: clamp(1.5rem, 5vw, 2rem);
    font-weight: 400;
    letter-spacing: 0.08em;
    color: var(--outline-dark);
    margin: 0;
}

.wordle-icon-btn {
    position: absolute;
    right: max(1rem, env(safe-area-inset-right));
    width: 2.5rem;
    height: 2.5rem;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--outline-dark);
    background: none;
    border: 2px solid transparent;
    border-radius: 6px;
    cursor: pointer;
}

.wordle-icon-btn:hover {
    background-color: var(--key-default-bg);
    border-color: var(--outline-dark);
}

.wordle-icon-btn:focus-visible {
    outline: 2.5px solid var(--correct);
    outline-offset: 2px;
}

.wordle-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    min-height: 0;
    padding: 1rem 0;
    gap: var(--main-gap);
    width: 100%;
    max-width: min(500px, 100%);
    box-sizing: border-box;
}

.wordle-grid {
    display: flex;
    flex-direction: column;
    gap: var(--gap);
    flex-shrink: 0;
}

.wordle-row {
    display: flex;
    justify-content: center;
    gap: var(--gap);
}

.wordle-tile {
    width: var(--tile-size);
    height: var(--tile-size);
    min-width: var(--tile-size);
    min-height: var(--tile-size);
    border: 2.5px solid var(--outline-dark);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--tile-font-size);
    font-weight: 700;
    text-transform: uppercase;
    box-sizing: border-box;
}

.wordle-tile-letter {
    line-height: 1;
}

.wordle-tile-state-correct {
    background-color: var(--correct) !important;
    color: var(--correct-text) !important;
}

.wordle-tile-state-correct .wordle-tile-letter {
    color: var(--correct-text) !important;
}

.wordle-tile-state-present {
    background-color: var(--wrong-spot) !important;
    color: var(--wrong-spot-text) !important;
}

.wordle-tile-state-present .wordle-tile-letter {
    color: var(--wrong-spot-text) !important;
}

.wordle-tile-state-absent {
    background-color: var(--absent) !important;
    color: var(--absent-text) !important;
}

.wordle-tile-state-absent .wordle-tile-letter {
    color: var(--absent-text) !important;
}

.wordle-key-correct {
    background-color: var(--correct) !important;
    color: var(--correct-text) !important;
}

.wordle-key-present {
    background-color: var(--wrong-spot) !important;
    color: var(--wrong-spot-text) !important;
}

.wordle-key-absent {
    background-color: var(--absent) !important;
    color: var(--absent-text) !important;
}

.wordle-keyboard {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.wordle-keyrow {
    display: flex;
    justify-content: center;
    gap: var(--keyrow-gap);
}

.wordle-key {
    min-width: var(--key-min-width);
    height: var(--key-height);
    min-height: 44px;
    padding: 0 0.5rem;
    font-size: var(--key-font-size);
    font-weight: 600;
    text-transform: uppercase;
    background-color: var(--key-default-bg);
    color: var(--key-default-text);
    border: 2.5px solid var(--outline-dark);
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    transform-origin: center center;
}

.wordle-key:focus-visible {
    outline: 2.5px solid var(--correct);
    outline-offset: 2px;
}

.wordle-key:active {
    transform: scale(0.97);
    transition: transform 0.05s ease-out;
}

.wordle-key-wide {
    min-width: var(--key-wide-min-width);
    font-size: 0.75rem;
}

.wordle-key-spacer {
    width: var(--key-spacer-width);
    flex-shrink: 0;
}

.wordle-btn-primary {
    background-color: var(--correct);
    color: var(--correct-text);
    font-weight: 600;
    border: 2.5px solid var(--outline-dark);
    cursor: pointer;
    border-radius: 6px;
}

.wordle-btn-primary:hover {
    filter: brightness(1.05);
}

.wordle-btn-primary:focus-visible {
    outline: 2.5px solid var(--outline-dark);
    outline-offset: 2px;
}

/* === Mobile (default): up to 767px */
.wordle-header,
.wordle-main {
    max-width: 100%;
}

@media (max-width: 380px) {
    .wordle-app {
        --tile-size: 2.5rem;
        --gap: 0.2rem;
        --main-gap: 0.75rem;
        --key-height: 44px;
        --key-min-width: 1.5rem;
        --keyrow-gap: 0.25rem;
        --key-spacer-width: 0.75rem;
        --key-wide-min-width: 2rem;
        --tile-font-size: 1.35rem;
        --key-font-size: 0.7rem;
    }
}

@media (min-width: 381px) and (max-width: 767px) {
    .wordle-app {
        --tile-size: 3.25rem;
        --gap: 0.25rem;
        --main-gap: 1rem;
        --key-height: 3rem;
        --key-min-width: 1.75rem;
        --key-spacer-width: 1rem;
        --key-wide-min-width: 2.5rem;
        --tile-font-size: 1.5rem;
        --key-font-size: 0.75rem;
    }
}

/* === Tablet: 768px – 1023px */
@media (min-width: 768px) {
    .wordle-app {
        --tile-size: 4.25rem;
        --gap: 0.35rem;
        --main-gap: 1.75rem;
        --key-height: 3.5rem;
        --key-min-width: 2.25rem;
        --keyrow-gap: 0.5rem;
        --key-spacer-width: 1.75rem;
        --key-wide-min-width: 3.5rem;
        --tile-font-size: 2rem;
        --key-font-size: 0.875rem;
    }
    .wordle-header,
    .wordle-main {
        max-width: min(680px, 100%);
    }
    .wordle-title {
        font-size: clamp(1.75rem, 4vw, 2.25rem);
    }
}

/* === Desktop: 1024px and up */
@media (min-width: 1024px) {
    .wordle-app {
        --tile-size: 4.75rem;
        --gap: 0.4rem;
        --main-gap: 2rem;
        --key-height: 4rem;
        --key-min-width: 2.5rem;
        --keyrow-gap: 0.5rem;
        --key-spacer-width: 2rem;
        --key-wide-min-width: 4rem;
        --tile-font-size: 2.25rem;
        --key-font-size: 0.9375rem;
    }
    .wordle-header,
    .wordle-main {
        max-width: min(780px, 100%);
    }
    .wordle-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 1280px) {
    .wordle-app {
        --tile-size: 5.25rem;
        --gap: 0.5rem;
        --main-gap: 2.25rem;
        --key-height: 4.25rem;
        --key-min-width: 2.75rem;
        --keyrow-gap: 0.5rem;
        --key-spacer-width: 2.25rem;
        --key-wide-min-width: 4.5rem;
        --tile-font-size: 2.5rem;
        --key-font-size: 1rem;
    }
    .wordle-header,
    .wordle-main {
        max-width: min(880px, 100%);
    }
    .wordle-title {
        font-size: 2.5rem;
    }
}

/* Modal – 1940s title card style (responsive) + enter transition */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    padding-left: max(0.5rem, env(safe-area-inset-left));
    padding-right: max(0.5rem, env(safe-area-inset-right));
    box-sizing: border-box;
    animation: modal-overlay-enter 0.2s ease-out;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    animation: modal-backdrop-enter 0.2s ease-out;
}

.modal-panel {
    position: relative;
    background: var(--bg-cream);
    border: 3px solid var(--outline-dark);
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(44, 36, 32, 0.25);
    padding: 1rem;
    max-width: 100%;
    width: 100%;
    max-height: 92vh;
    max-height: 92dvh;
    overflow-x: hidden;
    overflow-y: auto;
    box-sizing: border-box;
    animation: modal-panel-enter 0.25s ease-out;
    -webkit-overflow-scrolling: touch;
}

@keyframes modal-overlay-enter {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes modal-backdrop-enter {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes modal-panel-enter {
    from { opacity: 0; transform: scale(0.96); }
    to { opacity: 1; transform: scale(1); }
}

.modal-panel h2 {
    font-family: var(--font-title);
    color: var(--outline-dark);
}

@media (min-width: 768px) {
    .modal-overlay {
        padding: 1rem;
    }
    .modal-panel {
        max-width: 32rem;
        width: 100%;
        padding: 1.25rem;
        max-height: 90vh;
        max-height: 90dvh;
    }
}

@media (min-width: 1024px) {
    .modal-panel {
        padding: 1.5rem;
    }
}

/* How to play example tiles */
.wordle-example-tile {
    width: 2.75rem;
    height: 2.75rem;
    border: 2.5px solid var(--outline-dark);
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.35rem;
    font-weight: 700;
    box-sizing: border-box;
}

@media (min-width: 381px) and (max-width: 480px) {
    .wordle-example-tile {
        width: 3rem;
        height: 3rem;
        font-size: 1.5rem;
    }
}

@media (min-width: 481px) {
    .wordle-example-tile {
        width: 3.75rem;
        height: 3.75rem;
        font-size: 1.75rem;
    }
}

/* Lost screen */
.lost-tiles {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.2rem;
}

.lost-tile {
    width: 2.5rem;
    height: 2.5rem;
    border: 2.5px solid var(--outline-dark);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    font-weight: 700;
    text-transform: uppercase;
    box-sizing: border-box;
}

.lost-btn {
    background-color: var(--correct);
    color: var(--correct-text);
    border: 2.5px solid var(--outline-dark);
    border-radius: 6px;
    cursor: pointer;
}

.lost-btn:hover {
    filter: brightness(1.05);
}

.lost-btn:focus-visible {
    outline: 2.5px solid var(--outline-dark);
    outline-offset: 2px;
}

@media (min-width: 381px) and (max-width: 480px) {
    .lost-tiles {
        gap: 0.25rem;
    }
    .lost-tile {
        width: 3.25rem;
        height: 3.25rem;
        font-size: 1.5rem;
    }
}

@media (min-width: 481px) {
    .lost-tiles {
        gap: 0.25rem;
    }
    .lost-tile {
        width: 3.75rem;
        height: 3.75rem;
        font-size: 1.75rem;
    }
}

/* Tile flip animation (1940s cartoon style) */
.wordle-tile-flip {
    animation: wordle-flip 0.5s ease-in-out forwards;
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

@keyframes wordle-flip {
    0% { transform: rotateX(0deg); }
    50% { transform: rotateX(-90deg); }
    100% { transform: rotateX(0deg); }
}

.wordle-row .wordle-tile-flip:nth-child(1) { animation-delay: 0.05s; }
.wordle-row .wordle-tile-flip:nth-child(2) { animation-delay: 0.1s; }
.wordle-row .wordle-tile-flip:nth-child(3) { animation-delay: 0.15s; }
.wordle-row .wordle-tile-flip:nth-child(4) { animation-delay: 0.2s; }
.wordle-row .wordle-tile-flip:nth-child(5) { animation-delay: 0.25s; }

/* Invalid word shake */
.wordle-row-shake {
    animation: wordle-shake 0.4s ease-in-out;
}

@keyframes wordle-shake {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-6px); }
    40% { transform: translateX(6px); }
    60% { transform: translateX(-4px); }
    80% { transform: translateX(4px); }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .wordle-tile-flip,
    .wordle-row-shake {
        animation-duration: 0.01ms !important;
        animation: none;
    }
}

[data-reduce-motion="true"] .wordle-tile-flip,
[data-reduce-motion="true"] .wordle-row-shake {
    animation-duration: 0.01ms !important;
    animation: none;
}

[data-reduce-motion="true"] .modal-overlay,
[data-reduce-motion="true"] .modal-panel,
[data-reduce-motion="true"] .wordle-loader-letter {
    animation: none !important;
}

@media (prefers-reduced-motion: reduce) {
    .modal-overlay,
    .modal-panel,
    .wordle-loader-letter {
        animation: none !important;
    }
}

/* Key press pop */
.wordle-key-press {
    transform: scale(0.95);
    transition: transform 0.05s ease;
}

/* Stats modal */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.stats-box {
    text-align: center;
    padding: 0.75rem;
    background: var(--key-default-bg);
    border: 2.5px solid var(--outline-dark);
    border-radius: 6px;
}

.stats-box-value {
    font-family: var(--font-title);
    font-size: 1.75rem;
    color: var(--outline-dark);
    line-height: 1.2;
}

.stats-box-label {
    font-size: 0.75rem;
    color: var(--outline-dark);
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stats-distribution {
    margin-top: 1rem;
}

.stats-dist-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.35rem;
}

.stats-dist-num {
    width: 1.25rem;
    font-weight: 700;
    color: var(--outline-dark);
}

.stats-dist-bar-wrap {
    flex: 1;
    height: 1.25rem;
    background: var(--key-default-bg);
    border: 2px solid var(--outline-dark);
    border-radius: 4px;
    overflow: hidden;
}

.stats-dist-bar {
    height: 100%;
    background: var(--correct);
    border-radius: 2px;
    transition: width 0.4s ease;
    min-width: 0;
}

.wordle-header-actions {
    position: absolute;
    right: max(0.5rem, env(safe-area-inset-right));
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.2rem;
    max-width: 100%;
}

@media (min-width: 768px) {
    .wordle-header-actions {
        gap: 0.25rem;
        right: max(1rem, env(safe-area-inset-right));
    }
}

.wordle-header-actions .wordle-icon-btn {
    position: relative;
    right: auto;
}

.wordle-daily-toggle {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--outline-dark);
    cursor: pointer;
}

.wordle-daily-toggle input {
    width: 1rem;
    height: 1rem;
    accent-color: var(--correct);
    cursor: pointer;
}

.wordle-hard-badge {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.15rem 0.35rem;
    border: 1.5px solid var(--outline-dark);
    border-radius: 4px;
    color: var(--outline-dark);
    background: var(--key-default-bg);
}

.wordle-next-word-in {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -1.25rem;
    margin: 0;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--outline-dark);
    opacity: 0.9;
    white-space: nowrap;
}

@media (max-width: 767px) {
    .wordle-next-word-in {
        font-size: 0.65rem;
    }
    .wordle-header-with-countdown .wordle-next-word-in {
        bottom: 0.25rem;
    }
}

.win-modal-content .win-guess-line {
    font-size: 1.1rem;
    margin: 0;
}

.win-modal-content .flex {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.win-modal-content .flex button {
    min-width: 0;
    flex: 1 1 8rem;
}

/* Settings modal */
.settings-content {
    font-size: 0.9375rem;
}

.settings-group {
    margin-bottom: 1rem;
}

.settings-label {
    font-weight: 700;
    margin: 0 0 0.35rem 0;
    color: var(--outline-dark);
}

.settings-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.settings-row-wrap {
    flex-wrap: wrap;
}

.settings-option,
.settings-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    cursor: pointer;
    font-weight: 600;
}

.settings-option input,
.settings-toggle input {
    accent-color: var(--correct);
    cursor: pointer;
}

/* Screen reader only */
.wordle-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
    left: -9999px;
    top: auto;
}

/* Blazor error UI – responsive, no horizontal scroll */
#blazor-error-ui {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 0.75rem 1rem;
    padding-bottom: max(0.75rem, env(safe-area-inset-bottom));
    background: var(--outline-dark);
    color: var(--bg-cream);
    font-family: var(--font-body);
    font-size: 0.875rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    box-sizing: border-box;
}

#blazor-error-ui .reload,
#blazor-error-ui .dismiss {
    color: var(--correct);
    text-decoration: underline;
    cursor: pointer;
}

@media (max-width: 767px) {
    #blazor-error-ui {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
}
