:root {
    --bg-color: #0f172a;
    --table-bg: radial-gradient(circle at center, #1a4d2e 0%, #0f2e1a 100%);
    --card-white: #ffffff;
    --card-radius: 8px;
    --accent-color: #38bdf8;
    --accent-vibrant: #0ea5e9;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
    --card-width: 135px;
    --card-height: 196px;
}

* {
    margin: 0;
    -webkit-user-select: none;
    user-select: none;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-container {
    width: 100%;
    max-width: 1200px;
    height: 95vh;
    background: var(--table-bg);
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    padding: 20px;
    position: relative;
    border: 1px solid var(--glass-border);
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--glass-border);
    margin-bottom: 20px;
}

.logo {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 2px;
}

.logo span {
    color: var(--accent-color);
    margin-left: 8px;
    font-weight: 300;
}

.controls {
    display: flex;
    gap: 12px;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

.stat-group.compact {
    display: flex;
    gap: 8px;
    align-items: center;
    background: var(--glass-bg);
    padding: 5px 10px;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}

.stat-box {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-color);
    background: var(--glass-bg);
    padding: 5px 15px;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    min-width: 80px;
    text-align: center;
}

.stat-box.small {
    font-size: 11px;
    padding: 3px 8px;
    min-width: auto;
    background: transparent;
    border: none;
}

.actions-group {
    display: flex;
    gap: 8px;
    align-items: center;
    background: var(--glass-bg);
    padding: 5px 10px;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}

#random-game-btn.in-game {
    color: #ef4444;
    border-color: #ef4444;
}

.game-number-input {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--glass-bg);
    padding: 5px 15px;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}

.game-number-input input {
    background: transparent;
    border: none;
    color: var(--text-main);
    font-family: inherit;
    font-size: 16px;
    width: 80px;
    outline: none;
}

.btn {
    padding: 8px 16px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-weight: 600;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn.primary {
    background-color: var(--accent-color);
    color: var(--bg-color);
}

.btn.primary:hover {
    background-color: var(--accent-vibrant);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(56, 189, 248, 0.4);
}

.btn.secondary {
    background-color: var(--glass-bg);
    color: var(--text-main);
    border: 1px solid var(--glass-border);
}

.btn.secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0);
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
}

.top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.center-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    flex-shrink: 0;
}

.hint-center {
    padding: 8px 20px;
    border-radius: 10px;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    color: var(--accent-color);
    cursor: pointer;
    font-family: inherit;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    flex-shrink: 0;
}

.hint-center:hover {
    background: rgba(56, 189, 248, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(56, 189, 248, 0.3);
}

@media (max-width: 900px) {
    .top-row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .center-buttons {
        order: -1;
        width: 100%;
        flex-direction: row;
        justify-content: center;
    }
}

.free-cells,
.home-cells {
    display: grid;
    grid-template-columns: repeat(4, 100px);
    gap: 15px;
    min-width: calc(100px * 4 + 45px);
}

.cell {
    /* プレースホルダー枠は元の100×145固定(v1.2.13でカード本体のみ拡大したためcascades/victory用と分離) */
    width: 100px;
    height: 145px;
    border-radius: var(--card-radius);
    position: relative;
    flex-shrink: 0;
}

.cell.placeholder {
    border: 2px dashed rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.1);
    width: 100px;
    height: 145px;
}

/* フリーセル/ホームセル内に入ったカードはプレースホルダーと同サイズ(100×145)に縮小 */
.free-cells .card,
.home-cells .card {
    width: 100px !important;
    height: 145px !important;
}

.cell.home::after {
    content: attr(data-suit-symbol);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    opacity: 0.05;
    color: white;
}

.cascades {
    display: flex;
    justify-content: center;
    flex: 1;
    gap: 20px;
}

.cascade {
    width: var(--card-width);
    height: 100%;
    position: relative;
}

/* Card Styling */
.card {
    width: var(--card-width);
    height: var(--card-height);
    background: var(--card-white);
    border-radius: var(--card-radius);
    position: absolute;
    box-shadow: var(--card-shadow);
    color: #1e293b;
    display: flex;
    flex-direction: column;
    padding: 4px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, top 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 10;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.4);
    z-index: 50 !important;
}

.card.dragging {
    opacity: 0.5;
    transform: scale(1.05);
    z-index: 1000 !important;
}

.card.selected {
    box-shadow: 0 0 0 4px var(--accent-color), 0 10px 15px -3px rgba(0, 0, 0, 0.4);
    z-index: 100 !important;
}

.card.in-selected-stack {
    box-shadow: 0 0 0 2px var(--accent-color);
}

.card.is-target {
    box-shadow: 0 0 0 4px #fde047, 0 10px 15px -3px rgba(0, 0, 0, 0.4);
    z-index: 60 !important;
}

.card .card-art {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    opacity: 0.85;
    z-index: 0;
    pointer-events: none;
}

.card .rank,
.card .suit-icon {
    position: relative;
    z-index: 1;
    text-shadow: 0 0 4px white, 0 0 8px white;
}

.card .rank {
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
}

.card .suit-icon {
    font-size: 16px;
    line-height: 1;
}

.card .center-suit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 42px;
    opacity: 0.1;
    z-index: 0;
}

.cascade.is-target::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: var(--card-width);
    height: var(--card-height);
    box-shadow: 0 0 0 4px #fde047;
    border-radius: var(--card-radius);
    pointer-events: none;
    z-index: 5;
    background: rgba(253, 224, 71, 0.1);
}

.cell.placeholder.is-target,
.cell.placeholder.drag-over {
    box-shadow: 0 0 0 4px #fde047;
    border-color: #fde047;
    background: rgba(253, 224, 71, 0.2);
}

.card[data-color="red"] {
    color: #e11d48;
}

.card[data-color="black"] {
    color: #1e293b;
}

/* Victory Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.9);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: opacity 0.5s ease;
}

.overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.victory-content {
    text-align: center;
    animation: scaleUp 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.victory-content h1 {
    font-size: 72px;
    background: linear-gradient(to bottom, #fde047, #ca8a04);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.final-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: 600;
    color: var(--accent-color);
}

.final-stats div {
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@keyframes scaleUp {
    from {
        transform: scale(0.5);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* New Status Bar Styles */
.top-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--text-muted);
}

.top-status-bar .left-group,
.top-status-bar .center-group,
.top-status-bar .right-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-item {
    background: var(--glass-bg);
    padding: 2px 8px;
    border-radius: 4px;
    border: 1px solid var(--glass-border);
}

.stat-item span {
    color: var(--accent-vibrant);
    font-weight: 600;
}

.icon-btn {
    background: none;
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    cursor: pointer;
    font-size: 16px;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: all 0.2s;
}

.icon-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn.mini {
    padding: 4px 10px;
    font-size: 12px;
}

/* Modal Content Styles */
.modal-content {
    background: var(--bg-color);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    width: 96%;
    max-width: 1000px;
    max-height: 88vh;
    display: flex;
    flex-direction: column;
    animation: scaleUp 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-content.records {
    max-width: 1100px;
    max-height: 90vh;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.modal-header h2 {
    font-size: 24px;
    color: var(--accent-color);
}

.close-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 30px;
    cursor: pointer;
}

.close-btn:hover {
    color: var(--text-main);
}

/* Records Table Styles */
.records-table-container {
    flex: 1;
    overflow-y: auto;
    max-height: 60vh;
    padding-right: 10px;
}

#records-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

#records-table th,
#records-table td {
    padding: 12px;
    text-align: center;
    border-bottom: 1px solid var(--glass-border);
}

#records-table th {
    color: var(--accent-color);
    font-weight: 600;
    position: sticky;
    top: 0;
    background: var(--bg-color);
}

#records-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

.records-table-container::-webkit-scrollbar {
    width: 6px;
}

.records-table-container::-webkit-scrollbar-thumb {
    background: var(--glass-border);
    border-radius: 3px;
}

/* Settings Options */
.settings-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.option-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: var(--glass-bg);
    border-radius: 10px;
}

.modal-content.dialog {
    max-width: 450px;
    text-align: center;
}

.modal-content.dialog h2 {
    color: var(--text-main);
    font-size: 20px;
    margin-bottom: 24px;
}

.dialog-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn.danger {
    background: #ef4444;
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s;
}

.btn.danger:hover {
    background: #dc2626;
    transform: translateY(-2px);
}

#game-score {
    color: #fbbf24;
}

#login-btn.logged-in {
    background: rgba(56, 189, 248, 0.2);
    border-color: var(--accent-color);
    color: var(--accent-color);
}

/* Clearable indicator */
#cleared-indicator {
    color: #fde047;
    margin-left: 10px;
    display: inline-block;
    filter: drop-shadow(0 0 5px #fde047);
}

.hidden {
    display: none !important;
}

@keyframes hintPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(253, 224, 71, 0.8);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(253, 224, 71, 0);
        transform: scale(1.05);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(253, 224, 71, 0);
        transform: scale(1);
    }
}

.hint-pulse {
    animation: hintPulse 0.5s ease-in-out 3;
    z-index: 1000 !important;
}

.no-hint-toast {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.85);
    color: #fde047;
    padding: 12px 28px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    z-index: 2000;
    pointer-events: none;
    border: 1px solid rgba(253, 224, 71, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.3s ease;
}

.no-hint-icon {
    font-size: 24px;
}

.no-hint-toast.fade-out {
    opacity: 0;
}

@keyframes searchPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.8);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(56, 189, 248, 0);
        transform: scale(1.05);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(56, 189, 248, 0);
        transform: scale(1);
    }
}

.search-pulse {
    animation: searchPulse 0.6s ease-in-out 4;
    z-index: 1000 !important;
}

/* ===== スマホ対応 (max-width: 768px) ===== */
@media (max-width: 768px) {
    /* カード幅を画面幅から動的算出: (100vw - L/Rパディング12px - gap5px*7=35px) / 8列 */
    :root {
        --card-width: calc((100vw - 47px) / 8);
        --card-height: calc(var(--card-width) * 1.45);
        --card-radius: 5px;
    }

    html, body {
        height: auto;
        min-height: 100vh;
        overflow-y: auto;
        overflow-x: hidden;
    }
    body {
        align-items: flex-start;
        padding: 56px 0 8px;             /* 左上Lv10メニューアイコンのための余白(上のみ) */
        box-sizing: border-box;
        display: block;
    }

    .app-container {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: calc(100vh - 64px);
        border-radius: 10px;
        padding: 6px;
        box-sizing: border-box;
    }

    /* ===== トップステータスバー: 「絵柄変更」と「⚙ 設定」のみ表示 ===== */
    .top-status-bar {
        padding: 3px 6px;
        margin-bottom: 4px;
        font-size: 13px; /* v1.2.17: 11px→13px (120%化・小さすぎ対策) */
        justify-content: flex-end;
    }
    .top-status-bar .left-group,
    .top-status-bar .right-group,
    .top-status-bar .center-group .stat-item,
    .top-status-bar .center-group #records-list-btn {
        display: none !important;
    }
    .top-status-bar .center-group {
        gap: 6px;
    }
    .top-status-bar #change-design-btn {
        font-size: 13px !important;
        padding: 5px 12px !important;
    }
    #mobile-settings-btn {
        display: inline-flex !important;
        font-size: 13px !important;
        padding: 5px 12px !important;
    }

    /* トップバー内に移動してきた #番号入力+ランダム のスタイル */
    .top-status-bar .game-number-input {
        padding: 2px 6px;
        gap: 4px;
        background: var(--glass-bg);
        border: 1px solid var(--glass-border);
        border-radius: 8px;
    }
    .top-status-bar .game-number-input label {
        font-size: 13px;
        color: var(--text-muted);
    }
    .top-status-bar .game-number-input input {
        width: 68px;
        font-size: 14px;
    }
    .top-status-bar .game-number-input #random-game-btn {
        font-size: 12px;
        padding: 3px 10px;
        order: -1;   /* スマホ時は [ランダム → # → 入力] の順に flex 並び替え (さがす誤爆防止) */
    }

    /* ===== header (コントロール群) ===== */
    header {
        padding-bottom: 6px;
        margin-bottom: 6px;
    }
    .controls {
        flex-wrap: wrap;
        gap: 6px;
        justify-content: center;
    }
    /* SCORE/MOVESは非表示 (設定内で表示) */
    .stat-group.compact {
        display: none;
    }
    /* リスタートだけ設定内へ移動 (整列はトップバー、戻すはTIMEの右) */
    #new-game-btn {
        display: none !important;
    }
    /* 常時整列トグルはスマホでは非表示 */
    #auto-sort-item {
        display: none !important;
    }
    /* トップバーに移動した整列ボタンのスタイル */
    .top-status-bar #sort-btn {
        font-size: 13px !important;
        padding: 5px 12px !important;
    }

    .game-number-input {
        padding: 3px 8px;
        gap: 4px;
    }
    .game-number-input label {
        font-size: 13px;
    }
    .game-number-input input {
        font-size: 14px;
        width: 68px;
    }
    .game-number-input #random-game-btn {
        font-size: 11px;
        padding: 4px 10px;
    }

    .actions-group {
        padding: 3px 8px;
        gap: 6px;
    }
    .actions-group .stat-box {
        font-size: 15px;  /* v1.2.17: 13→15px (120%化) */
        padding: 5px 12px;
        min-width: auto;
    }

    /* さがす・ヒントはJSでactions-group内(TIME右)へDOM移動するので空要素を消す */
    .center-buttons {
        display: none;
    }
    /* TIME右に移動後のさがす/ヒントボタン */
    .actions-group .hint-center {
        font-size: 14px;  /* v1.2.17: 12→14px (120%化) */
        padding: 6px 14px;
    }
    .actions-group #undo-btn {
        font-size: 14px;  /* v1.2.17: 12→14px (120%化) */
        padding: 6px 14px;
    }

    /* ===== メインエリア ===== */
    main {
        gap: 10px;
    }
    .top-row {
        flex-wrap: nowrap;
        gap: 5px;
        justify-content: center;
        align-items: flex-start;
    }
    /* v1.2.17: フリーセル/ホームセルをスマホ画面幅に追従(従来100×145固定で画面圧迫・致命バグ修正) */
    .free-cells, .home-cells {
        grid-template-columns: repeat(4, var(--card-width));
        gap: 5px;
        min-width: auto;
    }
    .cell {
        width: var(--card-width) !important;
        height: var(--card-height) !important;
    }
    .cell.placeholder {
        width: var(--card-width) !important;
        height: var(--card-height) !important;
        border-width: 1px;
    }
    /* セル内に入ったカードもスマホ座標系に合わせる(PC版の100×145固定を上書き) */
    .free-cells .card,
    .home-cells .card {
        width: var(--card-width) !important;
        height: var(--card-height) !important;
    }
    /* ♣♦♥♠の透かし大きさも縮小(PC版font-size:48pxでスマホ版カード小を食う) */
    .cell.home::after {
        font-size: calc(var(--card-width) * 0.5);
    }
    .cascades {
        gap: 5px;
        justify-content: center;
    }

    /* ===== カード内部テキスト: カード幅に対して拡大 ===== */
    .card {
        padding: 2px;
        border-radius: var(--card-radius);
    }
    .card .rank {
        font-size: 13px;
        text-shadow: 0 0 2px white, 0 0 4px white;
    }
    .card .suit-icon {
        font-size: 11px;
        text-shadow: 0 0 2px white, 0 0 4px white;
    }
    .card .center-suit {
        font-size: 26px;
    }
    body.design-simple .card .rank { font-size: 20px !important; }
    body.design-simple .card .suit-icon { font-size: 15px !important; }
    body.design-simple .card .center-suit { font-size: 38px !important; }

    /* hoverのtranslateY解除 (タップで浮き上がり残りを防止) */
    .card:hover {
        transform: none;
    }

    /* ===== ズームコントロール: スマホでもコンパクトに表示(MP3再生バーを避けて下から60px上げ) ===== */
    #zoom-controls {
        bottom: 60px !important;
        right: 4px !important;
        padding: 2px 4px !important;
        gap: 2px !important;
    }
    #zoom-controls > span {
        font-size: 9px !important;
        margin-right: 1px !important;
    }
    #zoom-controls .zoom-btn {
        padding: 2px 4px !important;
        font-size: 9px !important;
    }

    /* ===== 設定モーダル内モバイル専用セクション表示 ===== */
    .mobile-only {
        display: block !important;
    }
    .modal-content.settings {
        padding: 18px;
        max-width: 94%;
    }
    .modal-content {
        padding: 16px;
    }

    /* ===== 戦績リスト: スマホでも見やすく ===== */
    .records-table-container {
        max-height: 60vh;
        overflow-x: auto;
    }
    #records-table {
        font-size: 12px;
    }
    #records-table th, #records-table td {
        padding: 6px 4px;
    }

    /* ===== クリア画面: タイトル縮小 ===== */
    .victory-content h1 {
        font-size: 48px;
    }
    .final-stats {
        font-size: 18px;
        gap: 16px;
    }

    /* ===== モバイル設定モーダル内の操作ボタン群スタイル (モバイル限定) ===== */
    .mobile-action-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-bottom: 14px;
    }
    .mobile-action-grid .btn {
        width: 100%;
        justify-content: center;
        padding: 12px 8px;
        font-size: 14px;
    }
    .mobile-stats-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        padding: 10px;
        background: var(--glass-bg);
        border: 1px solid var(--glass-border);
        border-radius: 10px;
        margin-bottom: 14px;
        font-size: 13px;
    }
    .mobile-stats-list > div {
        display: flex;
        justify-content: space-between;
        padding: 4px 2px;
        border-bottom: 1px dashed rgba(255,255,255,0.05);
    }
    .mobile-stats-list span.label {
        color: var(--text-muted);
    }
    .mobile-stats-list span.val {
        color: var(--accent-vibrant);
        font-weight: 600;
    }
    .mobile-section-title {
        font-size: 12px;
        color: var(--text-muted);
        margin: 8px 0 6px;
        letter-spacing: 1px;
    }
}