﻿* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    background: #760d16;
    color: white;
    font-family: Arial, sans-serif;
}

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

button,
input,
select {
    font: inherit;
}

.page {
    width: min(100%, 520px);
    margin: 0 auto;
    padding: 28px 18px 40px;
}

.brand {
    text-align: center;
    margin-bottom: 28px;
}

.brand h1 {
    margin: 0;
    font-size: 42px;
}

.brand p {
    margin: 8px 0 0;
    opacity: 0.82;
    font-size: 17px;
}

.card {
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 18px;
    padding: 20px;
    margin-bottom: 16px;
    background: rgba(255, 255, 255, 0.06);
}

.card h2 {
    margin: 0 0 8px;
    font-size: 23px;
}

.card p {
    margin: 0 0 18px;
    line-height: 1.45;
    opacity: 0.88;
}

.button {
    display: block;
    width: 100%;
    border: none;
    border-radius: 12px;
    padding: 15px 16px;
    font-size: 17px;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
}

.button-primary {
    background: white;
    color: #760d16;
}

.button-secondary {
    border: 2px solid rgba(255, 255, 255, 0.75);
    background: transparent;
    color: white;
}

.button-disabled {
    background: rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.65);
    cursor: default;
}

.soon {
    display: inline-block;
    margin-left: 8px;
    padding: 3px 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    font-size: 12px;
    vertical-align: middle;
}

.footer {
    text-align: center;
    margin-top: 26px;
    font-size: 13px;
    opacity: 0.65;
}

.step-title {
    margin: 0 0 8px;
    font-size: 30px;
}

.step-subtitle {
    margin: 0 0 24px;
    opacity: 0.8;
    line-height: 1.4;
}

.choice-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.choice {
    display: block;
    border: 2px solid rgba(255, 255, 255, 0.75);
    border-radius: 18px;
    padding: 26px 18px;
    text-align: center;
    background: rgba(255, 255, 255, 0.06);
    font-size: 28px;
    font-weight: bold;
}

.choice span {
    display: block;
    margin-top: 8px;
    font-size: 14px;
    font-weight: normal;
    opacity: 0.75;
}

.actions {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.rules-card {
    display: block;
    color: white;
    transition:
        transform 0.12s ease,
        background 0.12s ease;
}

.rules-card:active {
    transform: scale(0.985);
    background: rgba(255, 255, 255, 0.12);
}

.rules-card h2 {
    margin-bottom: 8px;
}

.rules-card p {
    margin-bottom: 16px;
}

.select-label {
    font-weight: bold;
    font-size: 15px;
    text-align: right;
}

.field-label {
    display: block;
    margin-bottom: 8px;
    font-size: 20px;
    font-weight: bold;
}

.field-help {
    margin: 0 0 14px !important;
    font-size: 14px;
    opacity: 0.75 !important;
}

.field-input {
    width: 100%;
    border: 2px solid rgba(255, 255, 255, 0.75);
    border-radius: 12px;
    padding: 14px 15px;
    background: rgba(0, 0, 0, 0.15);
    color: white;
    font-size: 20px;
    outline: none;
}

.field-input:focus {
    border-color: white;
    background: rgba(0, 0, 0, 0.24);
}

.quick-values {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 7px;
    margin-top: 12px;
}

.quick-value {
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 9px;
    padding: 10px 3px;
    background: rgba(255, 255, 255, 0.08);
    color: white;
    cursor: pointer;
}

.quick-value:active {
    background: rgba(255, 255, 255, 0.22);
}

.toggle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    cursor: pointer;
}

.toggle-row span {
    flex: 1;
}

.toggle-row strong {
    display: block;
    margin-bottom: 6px;
    font-size: 18px;
}

.toggle-row small {
    display: block;
    line-height: 1.4;
    opacity: 0.72;
}

.toggle-row input[type="checkbox"] {
    width: 25px;
    height: 25px;
    flex: 0 0 auto;
    accent-color: white;
}

.top-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.top-link {
    display: inline-block;
    opacity: 0.82;
}

.top-link-continue {
    padding: 8px 11px;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 10px;
    font-weight: bold;
    opacity: 1;
}

.home-top-actions {
    margin-bottom: 8px;
}

.player-card {
    position: relative;
}

.player-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

.player-number {
    font-size: 21px;
    font-weight: bold;
}

.player-role {
    margin-top: 4px;
    font-size: 13px;
    opacity: 0.68;
}

.field-label-small {
    font-size: 16px;
}

.field-label-spaced {
    margin-top: 18px;
}

.player-help {
    margin-top: 10px !important;
    margin-bottom: 0 !important;
}

.players-summary {
    display: grid;
    gap: 10px;
}

.summary-player {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.summary-player:last-child {
    border-bottom: none;
}

.summary-player span {
    display: flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 50%;
    font-size: 13px;
}

.start-mode-card {
    color: white;
    cursor: pointer;
}

.start-mode-card:active {
    transform: scale(0.985);
    background: rgba(255, 255, 255, 0.12);
}

.notice-card {
    margin-top: 22px;
    opacity: 0.82;
}

.notice-card h2 {
    font-size: 18px;
}

.start-mode-button {
    width: 100%;
    text-align: left;
    font: inherit;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.import-player-card {
    margin-bottom: 20px;
}

.import-main-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.whists-heading {
    margin-top: 22px;
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: bold;
}

.import-whists {
    display: grid;
    gap: 10px;
}

.whist-input-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 105px;
    align-items: center;
    gap: 12px;
}

.whist-input-row label {
    line-height: 1.3;
}

.whist-input {
    text-align: center;
}

@media (max-width: 360px) {
    .import-main-values {
        grid-template-columns: 1fr;
    }

    .whist-input-row {
        grid-template-columns: minmax(0, 1fr) 90px;
    }
}

.quick-values-four {
    grid-template-columns: repeat(4, 1fr);
}

.game-status-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 18px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 16px;
}

.game-status-card > div {
    display: grid;
    gap: 4px;
}

.game-status-label {
    font-size: 13px;
    opacity: 0.72;
}

.pula-board {
    display: grid;
    gap: 16px;
    margin-bottom: 20px;
}

.pula-player {
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.82);
    border-radius: 18px;
}

.pula-player-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.pula-player-header h2 {
    margin: 0;
}

.pula-seat {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    flex: 0 0 38px;
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 50%;
    font-weight: bold;
}

.player-tag {
    display: inline-block;
    margin-top: 4px;
    font-size: 12px;
    opacity: 0.75;
}

.pula-main-scores {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.pula-score-box {
    display: grid;
    gap: 5px;
    padding: 18px 16px;
    text-align: center;
}

.pula-score-box:first-child {
    border-right: 1px solid rgba(255, 255, 255, 0.5);
}

.pula-score-box span {
    font-size: 14px;
    opacity: 0.75;
}

.pula-score-box strong {
    font-size: 28px;
}

.pula-whists {
    padding: 14px 16px 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
}

.pula-whists-title {
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: bold;
    opacity: 0.75;
}

.pula-whist-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 7px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
}

.pula-whist-row:last-child {
    border-bottom: 0;
}

@media (min-width: 700px) {
    .pula-board {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.game-screen {
    min-height: 100vh;
    padding: 12px;
    background: #7f1020;
    color: #fff;
}

.game-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.game-toolbar-info {
    font-size: 13px;
    text-align: right;
    opacity: 0.85;
}

.pref-board {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    max-height: calc(100vh - 150px);
    margin: 0 auto;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    background:
        linear-gradient(
            rgba(255, 255, 255, 0.025),
            rgba(255, 255, 255, 0.025)
        ),
        #8c1024;
}

.pref-board-center {
    position: absolute;
    left: 50%;
    top: 46%;
    z-index: 5;
    transform: translate(-50%, -50%);
}

.pref-center-circle {
    display: grid;
    width: 72px;
    height: 72px;
    place-items: center;
    border: 2px solid #fff;
    border-radius: 50%;
    background: #8c1024;
    font-size: 24px;
    font-weight: bold;
}

.pref-player {
    position: absolute;
    z-index: 4;
    display: grid;
    gap: 8px;
}

.pref-player-name {
    font-size: 18px;
    font-weight: bold;
}

.pref-score {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 8px;
}

.pref-score span {
    font-size: 12px;
    opacity: 0.75;
}

.pref-score strong {
    font-size: 22px;
}

.pref-whist-list {
    display: grid;
    gap: 4px;
}

.pref-whist-list > div {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    font-size: 13px;
}

.pref-player-left {
    left: 5%;
    top: 25%;
    width: 27%;
}

.pref-player-right {
    right: 5%;
    top: 25%;
    width: 27%;
    text-align: right;
}

.pref-player-bottom {
    left: 50%;
    bottom: 4%;
    width: 44%;
    transform: translateX(-50%);
    text-align: center;
}

.pref-player-top {
    left: 50%;
    top: 4%;
    width: 44%;
    transform: translateX(-50%);
    text-align: center;
}

.pref-line {
    position: absolute;
    z-index: 1;
    background: rgba(255, 255, 255, 0.92);
    transform-origin: center;
}

.pref-line-vertical {
    left: 50%;
    top: 0;
    width: 2px;
    height: 100%;
}

.pref-line-horizontal {
    left: 0;
    top: 46%;
    width: 100%;
    height: 2px;
}

.pref-line-diagonal-left {
    left: 21%;
    top: 46%;
    width: 43%;
    height: 2px;
    transform: rotate(48deg);
    transform-origin: left center;
}

.pref-line-diagonal-right {
    right: 21%;
    top: 46%;
    width: 43%;
    height: 2px;
    transform: rotate(-48deg);
    transform-origin: right center;
}

.pref-line-top-left,
.pref-line-top-right {
    display: none;
}

.pref-board-4 .pref-line-top-left {
    display: block;
    left: 21%;
    top: 46%;
    width: 43%;
    height: 2px;
    transform: rotate(-48deg);
    transform-origin: left center;
}

.pref-board-4 .pref-line-top-right {
    display: block;
    right: 21%;
    top: 46%;
    width: 43%;
    height: 2px;
    transform: rotate(48deg);
    transform-origin: right center;
}

.game-actions {
    margin-top: 12px;
}

.game-actions .button {
    width: 100%;
}

@media (min-width: 700px) {
    .pref-board {
        width: min(620px, 100%);
    }
}

.score-screen {
    min-height: 100vh;
    padding: 12px;
    background: #7f1020;
    color: #fff;
}

.score-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.score-toolbar-meta {
    font-size: 13px;
    text-align: right;
    opacity: 0.85;
}

.paper-pula {
    position: relative;
    width: min(100%, 760px);
    aspect-ratio: 3 / 4;
    margin: 0 auto;
    overflow: hidden;
    border: 2px solid #fff;
    border-radius: 18px;
    background: #8b1d28;
}

.paper-sector {
    position: absolute;
    z-index: 3;
    box-sizing: border-box;
    padding: 18px;
}

.paper-sector-left {
    left: 0;
    top: 0;
    width: 50%;
    height: 50%;
    padding-right: 22%;
    padding-top: 22%;
}

.paper-sector-right {
    right: 0;
    top: 0;
    width: 50%;
    height: 50%;
    padding-left: 22%;
    padding-top: 22%;
    text-align: right;
}

.paper-sector-bottom {
    left: 25%;
    bottom: 0;
    width: 50%;
    height: 50%;
    padding-top: 22%;
    text-align: center;
}

.paper-sector-top {
    left: 25%;
    top: 0;
    width: 50%;
    height: 50%;
    padding-bottom: 22%;
    text-align: center;
}

.paper-player-name {
    margin-bottom: 14px;
    font-size: 18px;
    font-weight: 700;
}

.paper-main-values {
    display: grid;
    gap: 8px;
    margin-bottom: 12px;
}

.paper-main-values > div,
.paper-whists > div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
}

.paper-sector-bottom .paper-main-values > div,
.paper-sector-bottom .paper-whists > div,
.paper-sector-top .paper-main-values > div,
.paper-sector-top .paper-whists > div {
    justify-content: center;
}

.paper-main-values span,
.paper-whists span {
    font-size: 13px;
    opacity: 0.8;
}

.paper-main-values strong {
    font-size: 24px;
}

.paper-whists {
    display: grid;
    gap: 6px;
}

.paper-whists strong {
    font-size: 16px;
}

.paper-center {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 5;
    display: grid;
    width: 76px;
    height: 76px;
    place-items: center;
    transform: translate(-50%, -50%);
    border: 2px solid #fff;
    border-radius: 50%;
    background: #8b1d28;
    font-size: 26px;
    font-weight: 700;
}

.paper-line {
    position: absolute;
    z-index: 1;
    background: #fff;
    transform-origin: center;
}

.line-v-top {
    left: 50%;
    top: 0;
    width: 2px;
    height: 50%;
    transform: translateX(-50%);
}

.line-v-bottom {
    left: 50%;
    bottom: 0;
    width: 2px;
    height: 50%;
    transform: translateX(-50%);
}

.line-h {
    left: 0;
    top: 50%;
    width: 100%;
    height: 2px;
    transform: translateY(-50%);
}

.line-bottom-left {
    left: 20%;
    top: 50%;
    width: 42%;
    height: 2px;
    transform: rotate(49deg);
    transform-origin: left center;
}

.line-bottom-right {
    right: 20%;
    top: 50%;
    width: 42%;
    height: 2px;
    transform: rotate(-49deg);
    transform-origin: right center;
}

.line-top-left,
.line-top-right {
    display: none;
}

.paper-pula-4 .line-top-left {
    display: block;
    left: 20%;
    top: 50%;
    width: 42%;
    height: 2px;
    transform: rotate(-49deg);
    transform-origin: left center;
}

.paper-pula-4 .line-top-right {
    display: block;
    right: 20%;
    top: 50%;
    width: 42%;
    height: 2px;
    transform: rotate(49deg);
    transform-origin: right center;
}

.next-hand-button {
    display: block;
    width: min(100%, 760px);
    margin: 12px auto 0;
}

@media (max-width: 480px) {
    .paper-sector {
        padding: 12px;
    }

    .paper-sector-left {
        padding-right: 18%;
        padding-top: 18%;
    }

    .paper-sector-right {
        padding-left: 18%;
        padding-top: 18%;
    }

    .paper-sector-bottom {
        padding-top: 18%;
    }

    .paper-player-name {
        margin-bottom: 8px;
        font-size: 15px;
    }

    .paper-main-values strong {
        font-size: 20px;
    }

    .paper-main-values span,
    .paper-whists span {
        font-size: 11px;
    }

    .paper-whists strong {
        font-size: 14px;
    }

    .paper-center {
        width: 62px;
        height: 62px;
        font-size: 22px;
    }
}

.settlement-preview {
    display: grid;
    gap: 12px;
    width: min(100%, 760px);
    margin: 14px auto 0;
}

.settlement-player {
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 14px;
}

.settlement-player header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.settlement-total {
    font-weight: bold;
}

.settlement-pair {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 6px 0;
    border-top: 1px dashed rgba(255, 255, 255, 0.3);
    font-size: 14px;
}

.settlement-check {
    text-align: center;
    font-size: 13px;
    opacity: 0.75;
}

.svg-game-screen {
    min-height: 100vh;
    padding: 10px;
    background: #7f1020;
    color: #fff;
}

.svg-game-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.svg-game-meta {
    font-size: 13px;
    text-align: right;
    opacity: 0.85;
}

.svg-pula-wrapper {
    width: min(100%, 700px);
    margin: 0 auto;
}

.svg-pula {
    display: block;
    width: 100%;
    height: auto;
    background: #8b1d28;
    border-radius: 18px;
}

.pula-stroke {
    fill: none;
    stroke: #fff;
    stroke-width: 5;
}

.pula-line {
    stroke: #fff;
    stroke-width: 5;
}

.pula-thin-line {
    stroke: rgba(255, 255, 255, 0.85);
    stroke-width: 3;
}

.pula-center {
    fill: #8b1d28;
    stroke: #fff;
    stroke-width: 5;
}

.pula-center-target {
    fill: #fff;
    font-size: 38px;
    font-weight: 700;
    text-anchor: middle;
}

.pula-player-name {
    fill: #fff;
    font-size: 34px;
    font-weight: 700;
    text-anchor: middle;
}

.pula-player-total {
    fill: #fff;
    font-size: 25px;
    font-weight: 700;
    text-anchor: middle;
}

.pula-big-value {
    fill: #fff;
    font-size: 48px;
    font-weight: 700;
    text-anchor: middle;
}

.pula-cell-main {
    fill: #fff;
    font-size: 34px;
    font-weight: 700;
    text-anchor: middle;
}

.pula-result-box {
    fill: rgba(255, 255, 255, 0.06);
    stroke: rgba(255, 255, 255, 0.85);
    stroke-width: 3;
}

.pula-cell-result {
    fill: #fff;
    font-size: 23px;
    font-weight: 700;
    text-anchor: middle;
}

.svg-next-hand {
    display: block;
    width: min(100%, 700px);
    margin: 10px auto 0;
}

.classic-pula-wrap {
    width: min(100%, 720px);
    margin: 0 auto;
}

.classic-pula {
    display: block;
    width: 100%;
    height: auto;
    background: #8b1d28;
    border-radius: 18px;
}

.cp-frame {
    fill: none;
    stroke: #fff;
    stroke-width: 5;
}

.cp-line {
    stroke: #fff;
    stroke-width: 5;
}

.cp-thin {
    stroke: rgba(255, 255, 255, 0.82);
    stroke-width: 3;
}

.cp-center {
    fill: #8b1d28;
    stroke: #fff;
    stroke-width: 5;
}

.cp-center-value,
.cp-main-value,
.cp-whist-value,
.cp-result-value,
.cp-player-name,
.cp-player-total {
    fill: #fff;
    text-anchor: middle;
    dominant-baseline: middle;
}

.cp-center-value {
    font-size: 36px;
    font-weight: 700;
}

.cp-main-value {
    font-size: 44px;
    font-weight: 700;
}

.cp-whist-value {
    font-size: 31px;
    font-weight: 700;
}

.cp-player-name {
    font-size: 29px;
    font-weight: 700;
}

.cp-player-total {
    font-size: 23px;
    font-weight: 700;
}

.cp-result-box {
    fill: rgba(255, 255, 255, 0.05);
    stroke: rgba(255, 255, 255, 0.9);
    stroke-width: 3;
}

.cp-result-value {
    font-size: 21px;
    font-weight: 700;
}

.coordinate-pula-wrap {
    width: min(100%, 760px);
    margin: 0 auto;
}

.coordinate-pula {
    display: block;
    width: 100%;
    height: auto;
    background: #8b1d28;
    border-radius: 18px;
}

.coord-frame {
    fill: none;
    stroke: #fff;
    stroke-width: 4;
}

.coord-line {
    stroke: #fff;
    stroke-width: 4;
}

.coord-line-thin {
    stroke: rgba(255, 255, 255, 0.82);
    stroke-width: 2.5;
}

.coord-center {
    fill: #8b1d28;
    stroke: #fff;
    stroke-width: 4;
}

.coord-target,
.coord-main,
.coord-whist,
.coord-result,
.coord-player-name,
.coord-player-total {
    fill: #fff;
    text-anchor: middle;
    dominant-baseline: middle;
}

.coord-target {
    font-size: 34px;
    font-weight: 700;
}

.coord-main {
    font-size: 40px;
    font-weight: 700;
}

.coord-whist {
    font-size: 28px;
    font-weight: 700;
}

.coord-player-name {
    font-size: 24px;
    font-weight: 700;
}

.coord-player-total {
    font-size: 19px;
    font-weight: 700;
}

.coord-result-box {
    fill: rgba(255, 255, 255, 0.05);
    stroke: rgba(255, 255, 255, 0.9);
    stroke-width: 2.5;
}

.coord-result {
    font-size: 17px;
    font-weight: 700;
}

.polygon-game-screen {
    min-height: 100vh;
    padding: 10px;
    background: #7f1020;
    color: #fff;
}

.polygon-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.polygon-meta {
    font-size: 13px;
    text-align: right;
    opacity: 0.85;
}

.polygon-board-wrap {
    width: min(100%, 720px);
    margin: 0 auto;
}

.polygon-board {
    display: block;
    width: 100%;
    height: auto;
}

.board-background {
    fill: #8b1d28;
    stroke: #fff;
    stroke-width: 5;
}

.board-cell {
    fill: transparent;
    stroke: #fff;
    stroke-width: 4;
    stroke-linejoin: round;
}

.board-cell-whist {
    fill: rgba(255, 255, 255, 0.025);
}

.board-cell-empty {
    stroke-width: 3;
}

.board-center-circle {
    fill: #8b1d28;
    stroke: #fff;
    stroke-width: 5;
}

.board-center-value,
.board-debug-label {
    fill: #fff;
    text-anchor: middle;
    dominant-baseline: middle;
}

.board-center-value {
    font-size: 36px;
    font-weight: 700;
}

.board-debug-label {
    font-size: 20px;
    font-weight: 600;
    opacity: 0.55;
}

.polygon-next-hand {
    display: block;
    width: min(100%, 720px);
    margin: 10px auto 0;
}
