/* Game Center & Pikachu Classic mini game */

.gamecenter-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 4px 0 8px;
}

.gamecenter-card {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    padding: 16px 18px;
    border-radius: 16px;
    border: 1.5px solid rgba(139, 92, 246, 0.35);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.16), rgba(99, 102, 241, 0.08));
    cursor: pointer;
    text-align: left;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    box-sizing: border-box;
}

.gamecenter-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.25);
}

.gamecenter-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(139, 92, 246, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.gamecenter-card-icon img {
    width: 70%;
    height: 70%;
    object-fit: contain;
}

.gamecenter-card-icon-overlay {
    position: absolute;
    width: 45% !important;
    height: 45% !important;
    right: 4px;
    bottom: 4px;
    opacity: 0.9;
}

.gamecenter-card-body {
    flex: 1;
    min-width: 0;
}

.gamecenter-card-title {
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.gamecenter-card-desc {
    font-size: 0.72rem;
    color: var(--text-secondary);
    margin-top: 3px;
    line-height: 1.35;
}

.gamecenter-card-badge {
    display: inline-block;
    margin-top: 6px;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 0.62rem;
    font-weight: 700;
    color: #c4b5fd;
    background: rgba(139, 92, 246, 0.25);
    border: 1px solid rgba(167, 139, 250, 0.35);
}

.gamecenter-card--number-merge {
    border-color: rgba(245, 158, 11, .48);
    background: linear-gradient(135deg, rgba(153, 27, 27, .22), rgba(245, 158, 11, .1));
}

.gamecenter-card--number-merge:hover {
    box-shadow: 0 10px 28px rgba(245, 158, 11, .23);
}

.gamecenter-card-icon--number-merge {
    background: linear-gradient(145deg, rgba(127, 29, 29, .74), rgba(245, 158, 11, .24));
    box-shadow: inset 0 0 0 1px rgba(253, 230, 138, .28);
}

.gamecenter-card-icon--number-merge img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gamecenter-card-badge--number-merge {
    color: #fde68a;
    background: rgba(180, 83, 9, .25);
    border-color: rgba(251, 191, 36, .38);
}

.gamecenter-coming-soon {
    text-align: center;
    padding: 12px;
    font-size: 0.72rem;
    color: var(--text-secondary);
    opacity: 0.7;
}

/* KFarm / play overlays — prevent header buttons clipping */
#kfarm-hub-overlay.modal-overlay,
#pikachu-game-overlay.modal-overlay {
    padding: calc(10px + var(--klife-pad-top)) calc(10px + var(--klife-pad-right)) calc(10px + var(--klife-pad-bottom)) calc(10px + var(--klife-pad-left));
    box-sizing: border-box;
}

#kfarm-hub-overlay.modal-overlay.show,
#pikachu-game-overlay.modal-overlay.show {
    overflow: hidden;
    align-items: center;
    justify-content: center;
}

/* Pikachu game overlay */
#pikachu-game-overlay .pikachu-game-panel {
    max-width: 520px;
    width: 96%;
    max-height: 92vh;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow: hidden;
    padding: 14px 14px 12px;
    box-sizing: border-box;
    max-height: min(94vh, calc(100dvh - 20px));
    /* Design system: playful panel frame */
    border-radius: 20px;
}

.pikachu-difficulty-bar {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 0 2px;
}

.pikachu-difficulty-bar > span {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--text-secondary);
}

.pikachu-difficulty-btns {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.pikachu-diff-btn {
    flex: 1;
    min-width: 0;
    padding: 6px 8px;
    border-radius: 8px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    background: rgba(139, 92, 246, 0.08);
    color: var(--text-secondary);
    font-size: 0.62rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.15s ease;
}

.pikachu-diff-btn.active {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.35), rgba(139, 92, 246, 0.4));
    border-color: rgba(236, 72, 153, 0.55);
    color: #fce7f3;
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.2), 0 0 12px rgba(236, 72, 153, 0.2);
}

.pikachu-diff-btn:hover:not(.active) {
    background: rgba(139, 92, 246, 0.18);
}

/* Play HUD — timer + hint/shuffle only */
.pikachu-hud--compact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(30, 27, 75, 0.72), rgba(15, 23, 42, 0.55));
    border: 2px solid rgba(139, 92, 246, 0.28);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 3px 0 rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
    min-height: 50px;
    box-sizing: border-box;
}

.pikachu-hud-timer {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.pikachu-hud-ico {
    width: 30px;
    height: 30px;
    object-fit: contain;
    flex-shrink: 0;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.4));
}

.pikachu-hud-time-val {
    font-size: 1.25rem;
    font-weight: 800;
    color: #93c5fd;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.02em;
    line-height: 1;
}

.pikachu-hud-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.pikachu-action-btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 76px;
    padding: 6px 10px;
    border-radius: 10px;
    border: 1px solid rgba(245, 158, 11, 0.45);
    background: rgba(245, 158, 11, 0.12);
    cursor: pointer;
    transition: background 0.15s ease;
}

.pikachu-action-btn:hover:not(:disabled):not(.pikachu-action-btn--disabled) {
    background: rgba(245, 158, 11, 0.25);
}

.pikachu-action-btn:disabled,
.pikachu-action-btn--disabled {
    opacity: 0.4;
    cursor: not-allowed;
    filter: grayscale(0.4);
}

.pikachu-action-ico {
    width: 26px;
    height: 26px;
    object-fit: contain;
    pointer-events: none;
    flex-shrink: 0;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35));
}

.pikachu-action-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1px;
    min-width: 0;
}

.pikachu-action-label {
    font-size: 0.68rem;
    font-weight: 700;
    color: #fde68a;
    line-height: 1.1;
    white-space: nowrap;
    pointer-events: none;
}

.pikachu-action-cost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    font-size: 0.62rem;
    font-weight: 800;
    color: #fbbf24;
    line-height: 1;
    pointer-events: none;
}

.pikachu-action-cost img {
    width: 11px !important;
    height: 11px !important;
    margin: 0 !important;
}

/* KFarm hub — icon stats row (50/50, single line) */
.kfarm-hub-stats--icons {
    display: flex;
    align-items: stretch;
    gap: 8px;
    padding: 0 4px;
}

.kfarm-stat-chip {
    display: flex;
    align-items: center;
    flex: 1 1 0;
    min-width: 0;
    min-height: 40px;
    padding: 7px 8px;
    border-radius: 12px;
    background: rgba(139, 92, 246, 0.12);
    border: 1px solid rgba(139, 92, 246, 0.25);
    box-sizing: border-box;
}

.kfarm-stat-chip--stars {
    justify-content: center;
    gap: 6px;
}

.kfarm-stat-chip--lives {
    justify-content: center;
    gap: 4px;
    padding-right: 6px;
}

.kfarm-stat-chip-main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 0;
    flex: 1;
}

.kfarm-stat-val {
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.kfarm-stat-chip--stars .kfarm-stat-val {
    color: #fcd34d;
}

.kfarm-stat-chip--lives .kfarm-stat-val {
    color: #fca5a5;
}

.kfarm-stat-line {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 0;
    overflow: hidden;
}

.kfarm-lives-cd {
    font-size: 0.7rem;
    font-weight: 700;
    color: rgba(251, 191, 36, 0.95);
    font-variant-numeric: tabular-nums;
    line-height: 1;
    white-space: nowrap;
    flex-shrink: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.kfarm-lives-cd:empty {
    display: none;
}

.kfarm-lives-cd--compact {
    font-size: 0.56rem;
    letter-spacing: -0.02em;
}

@media (max-width: 400px) {
    .kfarm-stat-chip {
        padding: 6px 5px;
        min-height: 38px;
    }

    .kfarm-stat-chip-main {
        gap: 5px;
    }

    .kfarm-stat-val {
        font-size: 0.95rem;
    }

    .kfarm-stat-ico {
        width: 20px;
        height: 20px;
    }

    .kfarm-lives-cd {
        font-size: 0.62rem;
    }

    .kfarm-lives-cd--compact {
        font-size: 0.52rem;
    }

    .kfarm-add-life-btn {
        width: 22px;
        height: 22px;
        font-size: 0.95rem;
    }
}

.kfarm-stat-ico {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35));
}

.kfarm-lives-hearts {
    display: flex;
    align-items: center;
    gap: 3px;
}

.kfarm-life-heart {
    width: 22px;
    height: 22px;
    object-fit: contain;
    flex-shrink: 0;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

.kfarm-add-life-btn {
    width: 24px;
    height: 24px;
    border-radius: 8px;
    border: 1px solid rgba(248, 113, 113, 0.55);
    background: linear-gradient(135deg, rgba(248, 113, 113, 0.35), rgba(239, 68, 68, 0.2));
    color: #fecaca;
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    flex-shrink: 0;
    padding: 0;
}

.kfarm-add-life-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, rgba(248, 113, 113, 0.5), rgba(239, 68, 68, 0.35));
}

.kfarm-add-life-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

#kfarm-buy-life-overlay .kfarm-lives-hearts .kfarm-life-heart {
    width: 22px;
    height: 22px;
}

#kfarm-buy-life-cost img {
    width: 14px !important;
    height: 14px !important;
    margin: 0 !important;
}

#pikachu-board {
    position: relative;
    flex: 1;
    min-height: 0;
    max-width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 16px;
    /* Soft meadow board — less "empty purple panel" */
    background:
        radial-gradient(ellipse 80% 60% at 50% 40%, rgba(74, 222, 128, 0.12), transparent 60%),
        linear-gradient(165deg, rgba(22, 40, 32, 0.92) 0%, rgba(15, 28, 24, 0.95) 45%, rgba(18, 24, 40, 0.9) 100%);
    border: 2px solid rgba(74, 222, 128, 0.22);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        inset 0 -8px 24px rgba(0, 0, 0, 0.25),
        0 8px 28px rgba(0, 0, 0, 0.35);
}

.pikachu-game-panel {
    position: relative;
}

.pikachu-level-loading {
    position: absolute;
    inset: 100px 14px 14px;
    z-index: 28;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 14px;
    border-radius: 16px;
    background: rgba(4, 20, 20, 0.34);
    backdrop-filter: blur(2px);
    pointer-events: auto;
}

.pikachu-level-loading.show {
    display: flex;
}

.pikachu-level-loading-card {
    display: flex;
    align-items: center;
    gap: 11px;
    width: min(300px, calc(100% - 12px));
    padding: 11px 14px 11px 11px;
    border: 1px solid rgba(141, 230, 202, 0.28);
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(16, 52, 53, 0.97), rgba(8, 31, 35, 0.97));
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.42), inset 0 1px rgba(255, 255, 255, 0.06);
    animation: kfarm-loader-card-in 0.24s cubic-bezier(0.22, 1, 0.36, 1);
}

.pikachu-level-loading-mark {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: linear-gradient(145deg, #276956, #123d3d);
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.14), 0 5px 12px rgba(0, 0, 0, 0.25);
}

.pikachu-level-loading-mark img {
    width: 29px;
    height: 29px;
    object-fit: contain;
    animation: kfarm-loader-mark-float 1.5s ease-in-out infinite;
}

.pikachu-level-loading-copy {
    min-width: 0;
    flex: 1;
    display: grid;
    gap: 2px;
}

.pikachu-level-loading-copy strong {
    color: #ffe292;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.01em;
}

.pikachu-level-loading-copy span {
    overflow: hidden;
    color: #c8f4e5;
    font-size: 0.7rem;
    font-weight: 700;
    line-height: 1.3;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.kfarm-loading-dots {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    flex: 0 0 auto;
}

.kfarm-loading-dots i {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #ffe292;
    opacity: 0.35;
    animation: kfarm-loader-dot 1.05s ease-in-out infinite;
}

.kfarm-loading-dots i:nth-child(2) { animation-delay: 0.14s; }
.kfarm-loading-dots i:nth-child(3) { animation-delay: 0.28s; }

@keyframes kfarm-loader-card-in {
    from { opacity: 0; transform: translateY(5px) scale(0.96); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes kfarm-loader-mark-float {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-2px) rotate(2deg); }
}

@keyframes kfarm-loader-dot {
    0%, 70%, 100% { opacity: 0.3; transform: translateY(0); }
    35% { opacity: 1; transform: translateY(-2px); }
}

@media (max-height: 640px) {
    .pikachu-level-loading { inset: 88px 10px 10px; padding: 10px; }
    .pikachu-level-loading-card { padding-block: 9px; }
}

@media (prefers-reduced-motion: reduce) {
    .pikachu-level-loading-card,
    .pikachu-level-loading-mark img,
    .kfarm-loading-dots i { animation: none !important; }
    .kfarm-loading-dots i { opacity: 0.72; }
}

#pikachu-board::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    opacity: 0.35;
    background-image:
        radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.07) 0 1.5px, transparent 2px),
        radial-gradient(circle at 78% 30%, rgba(255, 255, 255, 0.05) 0 1px, transparent 2px),
        radial-gradient(circle at 40% 72%, rgba(251, 191, 36, 0.08) 0 1.5px, transparent 2px),
        radial-gradient(circle at 88% 78%, rgba(255, 255, 255, 0.05) 0 1px, transparent 2px);
    background-size: 100% 100%;
    z-index: 0;
}

.pikachu-board-inner {
    position: relative;
    flex-shrink: 0;
    z-index: 1;
}

.pikachu-board-inner--shuffle {
    animation: pikachu-shuffle-flash 0.45s ease;
}

@keyframes pikachu-shuffle-flash {
    0%, 100% { opacity: 1; transform: scale(1); }
    40% { opacity: 0.25; transform: scale(0.96); }
    70% { opacity: 1; transform: scale(1.02); }
}

.pikachu-line-svg {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 5;
    overflow: visible;
}

.pikachu-path-line {
    fill: none;
    stroke: #fbbf24;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 4px rgba(251, 191, 36, 0.8));
}

.pikachu-grid {
    display: grid;
    gap: 5px;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
}

.pikachu-tile {
    position: relative;
    box-sizing: border-box;
    border-radius: 10px;
    padding: 3px;
    /* Clay tile frame — readable crop icons on dark board */
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.05) 42%, rgba(0, 0, 0, 0.18) 100%),
        linear-gradient(145deg, #3d4a63 0%, #2a3348 55%, #1e2638 100%);
    border: 2px solid rgba(255, 255, 255, 0.14);
    box-shadow:
        0 2px 0 rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        inset 0 -2px 6px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.12s ease, box-shadow 0.12s ease, border-color 0.12s ease, filter 0.12s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pikachu-tile img {
    width: 94%;
    height: 94%;
    object-fit: contain;
    pointer-events: none;
    user-select: none;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35));
}

.pikachu-tile:hover:not(.pikachu-tile--empty):not(.pikachu-tile--removed) {
    transform: translateY(-1px) scale(1.04);
    border-color: rgba(167, 139, 250, 0.55);
    box-shadow:
        0 3px 0 rgba(0, 0, 0, 0.3),
        0 0 10px rgba(139, 92, 246, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.pikachu-tile--selected {
    border-color: #fbbf24 !important;
    background:
        linear-gradient(160deg, rgba(251, 191, 36, 0.28) 0%, rgba(245, 158, 11, 0.1) 50%, rgba(30, 27, 55, 0.5) 100%),
        linear-gradient(145deg, #4a3f28 0%, #2f2a1c 100%);
    box-shadow:
        0 0 0 2px rgba(251, 191, 36, 0.35),
        0 0 16px rgba(251, 191, 36, 0.55),
        0 2px 0 rgba(0, 0, 0, 0.3) !important;
    transform: scale(1.06);
}

.pikachu-tile--match-pop {
    animation: pikachu-match-pop 0.28s cubic-bezier(0.34, 1.4, 0.64, 1) forwards;
    z-index: 2;
}

@keyframes pikachu-match-pop {
    0% { transform: scale(1); filter: brightness(1); }
    40% { transform: scale(1.18); filter: brightness(1.35); box-shadow: 0 0 20px rgba(251, 191, 36, 0.8); }
    100% { transform: scale(0.5); opacity: 0; }
}

.pikachu-match-spark {
    position: fixed;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99993;
    box-shadow: 0 0 8px currentColor;
    animation: pikachu-spark-fly 0.65s ease-out forwards;
}

@keyframes pikachu-spark-fly {
    0% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    100% { opacity: 0; transform: translate(calc(-50% + var(--sx)), calc(-50% + var(--sy))) scale(0.2); }
}

.kfarm-win-confetti {
    position: fixed;
    font-size: clamp(14px, 3vw, 20px);
    pointer-events: none;
    z-index: 99994;
    animation: kfarm-confetti-fall 1.6s ease-out forwards;
}

@keyframes kfarm-confetti-fall {
    0% { opacity: 1; transform: translate(0, 0) rotate(0deg) scale(0.6); }
    100% { opacity: 0; transform: translate(var(--cx), var(--cy)) rotate(360deg) scale(1.1); }
}

.pikachu-result-box--celebrate {
    animation: pikachu-result-celebrate 0.55s cubic-bezier(0.34, 1.4, 0.64, 1);
}

@keyframes pikachu-result-celebrate {
    0% { transform: scale(0.85); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

#pikachu-game-overlay.pikachu-game-overlay--enter .pikachu-game-panel {
    animation: pikachu-panel-enter 0.45s cubic-bezier(0.34, 1.4, 0.64, 1);
}

@keyframes pikachu-panel-enter {
    0% { opacity: 0; transform: scale(0.92) translateY(16px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}

.kfarm-level-node--launch .kfarm-node-shell {
    animation: kfarm-node-launch 0.5s cubic-bezier(0.34, 1.4, 0.64, 1);
}

@keyframes kfarm-node-launch {
    0% { transform: scale(1); }
    35% { transform: scale(1.22); filter: brightness(1.2); }
    100% { transform: scale(1); }
}

.pikachu-tile--hint {
    animation: pikachu-hint-pulse 0.6s ease-in-out 2;
}

@keyframes pikachu-hint-pulse {
    0%, 100% { box-shadow: 0 0 0 rgba(52, 211, 153, 0); border-color: rgba(52, 211, 153, 0.3); }
    50% { box-shadow: 0 0 14px rgba(52, 211, 153, 0.7); border-color: #34d399; }
}

.pikachu-tile--empty,
.pikachu-tile--removed {
    background: transparent !important;
    border-color: transparent !important;
    box-shadow: none !important;
    cursor: default;
    pointer-events: none;
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.15s ease, transform 0.15s ease;
}

.pikachu-tile--removed img,
.pikachu-tile--empty img {
    display: none !important;
}

.pikachu-result-overlay {
    position: absolute;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.65);
    border-radius: 14px;
    z-index: 20;
}

.pikachu-result-overlay.show {
    display: flex;
}

.pikachu-result-box {
    text-align: center;
    padding: 24px 28px;
    border-radius: 16px;
    background: rgba(30, 27, 75, 0.95);
    border: 1.5px solid rgba(139, 92, 246, 0.4);
    max-width: 280px;
}

.pikachu-result-box h3 {
    margin: 0 0 8px;
    font-size: 1.1rem;
    color: #fbbf24;
}

.pikachu-result-box p {
    margin: 0 0 12px;
    font-size: 0.78rem;
    color: var(--text-secondary);
}

#pikachu-result-rewards {
    display: none;
    margin-bottom: 14px;
}

.kfarm-result-rewards-lbl {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.kfarm-result-rewards-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
}

.kfarm-reward-chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(0, 0, 0, 0.25);
}

.kfarm-reward-chip img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.kfarm-reward-chip--gold { color: #fbbf24; border-color: rgba(251, 191, 36, 0.4); }
.kfarm-reward-chip--bronze { color: #d97706; }
.kfarm-reward-chip--silver { color: #94a3b8; }
.kfarm-reward-chip--gold-egg { color: #fcd34d; }

.pikachu-result-actions {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.pikachu-result-actions button {
    padding: 8px 16px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.75rem;
    cursor: pointer;
    border: none;
}

.pikachu-btn-primary {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
}

.pikachu-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
}

@media (max-width: 400px) {
    .pikachu-grid { gap: 3px; }
    .pikachu-tile { border-radius: 6px; }
}

/* ── KFarm Hub (level map) ── */
.kfarm-hub-panel {
    max-width: 440px;
    width: 96%;
    max-height: min(92vh, calc(100dvh - 20px));
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow: visible;
    padding: 16px 20px 14px;
    box-sizing: border-box;
}

.kfarm-hub-panel .shop-header,
.pikachu-game-panel .shop-header {
    flex-shrink: 0;
    margin-bottom: 8px;
    padding: 4px 8px 12px;
    box-sizing: border-box;
    overflow: visible;
    grid-template-columns: 42px 1fr 42px;
}

.kfarm-hub-panel .modal-header-btn,
.pikachu-game-panel .modal-header-btn {
    position: relative;
    z-index: 3;
    flex-shrink: 0;
}

.kfarm-hub-stats {
    display: flex;
    gap: 8px;
    padding: 0 4px;
}

.kfarm-stat {
    flex: 1;
    text-align: center;
    padding: 8px 6px;
    border-radius: 10px;
    background: rgba(139, 92, 246, 0.12);
    border: 1px solid rgba(139, 92, 246, 0.25);
}

.kfarm-stat span {
    display: block;
    font-size: 0.62rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.kfarm-stat strong {
    font-size: 1.1rem;
    color: #c4b5fd;
}

.kfarm-hub-tabs {
    display: flex;
    gap: 6px;
    padding: 0 4px;
}

.kfarm-tab {
    flex: 1;
    padding: 8px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
    color: var(--text-secondary);
    font-size: 0.72rem;
    font-weight: 700;
    cursor: pointer;
}

.kfarm-tab.active {
    background: rgba(139, 92, 246, 0.35);
    color: #e9d5ff;
    border-color: rgba(167, 139, 250, 0.5);
}

.kfarm-hub-map-wrap {
    position: relative;
    flex: 1;
    min-height: min(46vh, 360px);
    max-height: min(52vh, 420px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 14px;
    background: rgba(8, 12, 24, 0.45);
}

.kfarm-hub-body {
    position: relative;
    flex: 1;
    min-height: 0;
    overflow: hidden;
    border-radius: 14px;
}

.kfarm-panel-map,
.kfarm-panel-howto {
    display: none;
    position: absolute;
    inset: 0;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
    box-sizing: border-box;
}

.kfarm-panel-map.kfarm-panel--visible,
.kfarm-panel-howto.kfarm-panel--visible {
    display: block;
}

.kfarm-panel-map {
    padding: 4px;
    padding-bottom: 104px;
}

.kfarm-panel-howto {
    padding: 4px 4px 12px;
}

.kfarm-panel-lb {
    display: none;
    position: absolute;
    inset: 0;
    box-sizing: border-box;
    padding: 8px 6px 0;
    flex-direction: column;
    overflow: hidden;
}

.kfarm-panel-lb.kfarm-panel--visible {
    display: flex;
}

.kfarm-lb-scroll {
    flex: 1;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
    padding: 0 0 6px;
}

.kfarm-lb-dock {
    flex-shrink: 0;
    margin: 2px -20px -14px;
    padding: 10px 14px 12px;
    background: linear-gradient(180deg, rgba(6, 10, 22, 0.55) 0%, rgba(6, 14, 28, 0.98) 35%);
    border-top: 1px solid rgba(16, 185, 129, 0.4);
    box-shadow: 0 -10px 28px rgba(0, 0, 0, 0.5);
    border-radius: 0 0 16px 16px;
}

.kfarm-lb-dock .kfarm-lb-row--dock {
    margin: 0;
    cursor: default;
}

.kfarm-lb-dock .kfarm-lb-row--dock:hover {
    background: rgba(0, 0, 0, 0.2);
}

.kfarm-lb-sort-row {
    display: flex;
    gap: 6px;
    margin-bottom: 8px;
}

.kfarm-lb-sort-btn {
    flex: 1;
    padding: 7px 8px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.25);
    color: var(--text-secondary);
    font-size: 0.68rem;
    font-weight: 700;
    cursor: pointer;
}

.kfarm-lb-sort-btn.active {
    background: rgba(139, 92, 246, 0.35);
    color: #e9d5ff;
    border-color: rgba(167, 139, 250, 0.45);
}

.kfarm-lb-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 28px 12px;
    color: var(--text-secondary);
    font-size: 0.75rem;
}

.kfarm-lb-spinner {
    width: 24px;
    height: 24px;
    border: 3px solid rgba(255, 255, 255, 0.08);
    border-top-color: #a78bfa;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.kfarm-lb-row--top1 {
    background: linear-gradient(90deg, rgba(251, 191, 36, 0.14), rgba(139, 92, 246, 0.08));
    border: 1px solid rgba(251, 191, 36, 0.35);
}

.kfarm-lb-row--top2 {
    background: linear-gradient(90deg, rgba(203, 213, 225, 0.12), rgba(139, 92, 246, 0.06));
    border: 1px solid rgba(148, 163, 184, 0.3);
}

.kfarm-lb-row--top3 {
    background: linear-gradient(90deg, rgba(217, 119, 6, 0.12), rgba(139, 92, 246, 0.06));
    border: 1px solid rgba(217, 119, 6, 0.28);
}

.kfarm-lb-rank-ico {
    width: 36px;
    height: 36px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.4));
    flex-shrink: 0;
    /* prevent ribbon clip inside flex row */
    max-width: none;
    overflow: visible;
}

.kfarm-lb-row--top1 .kfarm-lb-rank-ico,
.kfarm-lb-row--top2 .kfarm-lb-rank-ico,
.kfarm-lb-row--top3 .kfarm-lb-rank-ico {
    width: 40px;
    height: 40px;
}

.kfarm-lb-rank-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    font-weight: 800;
    font-size: 0.78rem;
    color: #a78bfa;
}

.kfarm-lb-rank-num--out {
    font-size: 0.62rem;
    color: var(--text-secondary);
}

.kfarm-lb-you-tag {
    font-size: 0.58rem;
    font-weight: 700;
    color: #6ee7b7;
    padding: 1px 5px;
    border-radius: 4px;
    background: rgba(16, 185, 129, 0.15);
    vertical-align: middle;
}

.kfarm-lb-stat {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 3px;
    flex-shrink: 0;
}

.kfarm-lb-chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.68rem;
    font-weight: 700;
    color: #e9d5ff;
    white-space: nowrap;
}

.kfarm-lb-chip--cleared .kfarm-lb-chip-val {
    font-size: 0.6rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.kfarm-lb-chip-ico {
    width: 16px;
    height: 16px;
    object-fit: contain;
    flex-shrink: 0;
}

.kfarm-lb-chip-val {
    line-height: 1;
}

.kfarm-lb-row {
    cursor: pointer;
    transition: background 0.15s;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 10px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.04);
    overflow: visible;
}

.kfarm-lb-row:hover {
    background: rgba(139, 92, 246, 0.12);
}

.kfarm-lb-rank {
    flex-shrink: 0;
    width: 44px;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.kfarm-lb-name {
    font-weight: 600;
    font-size: 0.74rem;
}



.kfarm-panel-map .kfarm-level-map {
    width: 100%;
}

.kfarm-level-map {
    padding: 0;
    margin: 0;
    overflow: hidden;
    border-radius: 16px;
    opacity: 1;
    transform: none;
}

.kfarm-level-map.kfarm-map-viewport--animating {
    will-change: transform, opacity;
    transition:
        opacity 0.32s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.36s cubic-bezier(0.4, 0, 0.2, 1);
}

.kfarm-map-viewport--exit-left {
    opacity: 0;
    transform: translateX(-44px) scale(0.98);
    pointer-events: none;
}

.kfarm-map-viewport--exit-right {
    opacity: 0;
    transform: translateX(44px) scale(0.98);
    pointer-events: none;
}

.kfarm-map-viewport--enter-from-right {
    opacity: 0;
    transform: translateX(48px) scale(0.98);
}

.kfarm-map-viewport--enter-from-left {
    opacity: 0;
    transform: translateX(-48px) scale(0.98);
}

/* Hide map during DOM swap — prevents exit-class removal from flashing old page levels */
.kfarm-map-viewport--hidden {
    opacity: 0 !important;
    transform: none !important;
    transition: none !important;
    pointer-events: none;
}

.kfarm-map-pager {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 6;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 10px 10px 10px;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 0.94) 28%, rgba(15, 23, 42, 0.99) 100%);
    border-radius: 0 0 14px 14px;
    pointer-events: none;
}

.kfarm-map-scroll-nav,
.kfarm-map-page-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    pointer-events: none;
}

.kfarm-map-page-nav {
    justify-content: space-between;
    gap: 10px;
}

.kfarm-map-pager .kfarm-page-btn,
.kfarm-map-pager .kfarm-scroll-btn {
    pointer-events: auto;
}

.kfarm-scroll-btn {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid rgba(167, 139, 250, 0.4);
    background: rgba(30, 41, 59, 0.88);
    color: #c4b5fd;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.15s ease;
}

.kfarm-scroll-btn:hover {
    background: rgba(139, 92, 246, 0.45);
    color: #ede9fe;
}

.kfarm-scroll-btn--progress {
    width: 42px;
    border-color: rgba(251, 191, 36, 0.55);
    color: #fde68a;
}

.kfarm-scroll-btn--progress:hover {
    background: rgba(180, 130, 20, 0.45);
}

.kfarm-page-btn {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid rgba(167, 139, 250, 0.45);
    background: rgba(139, 92, 246, 0.35);
    color: #e9d5ff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.15s ease, opacity 0.15s ease;
}

.kfarm-page-btn:hover:not(:disabled) {
    background: rgba(139, 92, 246, 0.55);
}

.kfarm-page-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.kfarm-page-label {
    flex: 1;
    text-align: center;
    font-size: 0.72rem;
    font-weight: 800;
    color: #c4b5fd;
    line-height: 1.25;
    pointer-events: none;
}

.kfarm-map-preview-banner {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    max-width: 92%;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.62rem;
    font-weight: 700;
    color: #fde68a;
    background: rgba(120, 53, 15, 0.88);
    border: 1px solid rgba(251, 191, 36, 0.45);
    text-align: center;
    pointer-events: none;
}

.kfarm-level-node--preview .kfarm-node-face {
    opacity: 0.55;
    filter: grayscale(0.25);
}

.kfarm-map-scene {
    position: relative;
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
    box-shadow:
        inset 0 0 0 2px rgba(255, 255, 255, 0.1),
        0 8px 28px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(236, 72, 153, 0.12);
    isolation: isolate;
}

/* Soft vignette — focuses eye on path/nodes */
.kfarm-map-scene::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    border-radius: inherit;
    background:
        radial-gradient(ellipse 90% 70% at 50% 45%, transparent 40%, rgba(15, 23, 42, 0.28) 100%),
        linear-gradient(180deg, rgba(56, 189, 248, 0.08) 0%, transparent 22%);
}

.kfarm-map-bg,
.kfarm-map-trail,
.kfarm-map-nodes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.kfarm-map-bg {
    z-index: 0;
    overflow: hidden;
    border-radius: inherit;
    clip-path: inset(0 round 16px);
}

.kfarm-map-grass {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-repeat: repeat-y;
    background-size: 100% auto;
    background-position: top center;
    border-radius: inherit;
    image-rendering: auto;
    filter: saturate(1.08) contrast(1.04);
}

.kfarm-map-sky {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    object-fit: cover;
    /* Blend sky into grass */
    -webkit-mask-image: linear-gradient(180deg, #000 55%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 55%, transparent 100%);
}

.kfarm-map-sky--top {
    top: 0;
    left: 0;
    width: 100%;
    height: min(38%, 180px);
    object-position: center top;
}

.kfarm-map-trail {
    z-index: 1;
    pointer-events: none;
    display: block;
}

.kfarm-map-trail-glow {
    stroke: rgba(251, 191, 36, 0.28);
    stroke-width: 24;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.kfarm-map-trail-outer {
    stroke-width: 15;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 2px 5px rgba(60, 40, 10, 0.4));
}

.kfarm-map-trail-inner {
    stroke-width: 6.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0.98;
}

.kfarm-map-nodes {
    z-index: 2;
    pointer-events: none;
}

.kfarm-map-nodes .kfarm-level-node {
    pointer-events: auto;
}

.kfarm-map-scene--portrait {
    width: 100%;
}

.kfarm-level-node {
    position: absolute;
    width: 84px;
    height: 96px;
    padding: 0;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: transform 0.15s ease;
    color: #fff;
    background: transparent;
}

.kfarm-node-shell {
    position: absolute;
    left: 50%;
    top: 0;
    width: 76px;
    height: 76px;
    transform: translateX(-50%);
}

.kfarm-node-ring {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px dashed rgba(255, 255, 255, 0.22);
    background: radial-gradient(circle, transparent 58%, rgba(255, 255, 255, 0.06) 59%, transparent 72%);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
}

.kfarm-node-face {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 6px 4px 4px;
    overflow: visible;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.65);
    background: radial-gradient(circle at 38% 28%, #c4b5fd 0%, #7c3aed 46%, #5b21b6 100%);
    box-shadow:
        0 4px 0 rgba(46, 16, 101, 0.55),
        0 5px 12px rgba(0, 0, 0, 0.32),
        inset 0 2px 6px rgba(255, 255, 255, 0.3),
        inset 0 -3px 8px rgba(0, 0, 0, 0.15);
    box-sizing: border-box;
}

.kfarm-level-num {
    font-family: var(--font-heading, Fredoka, system-ui, sans-serif);
    font-weight: 700;
    font-size: 1.42rem;
    line-height: 1;
    letter-spacing: 0.01em;
    text-shadow: 0 2px 0 rgba(0, 0, 0, 0.25), 0 1px 4px rgba(0, 0, 0, 0.45);
}

.kfarm-level-stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1px;
    line-height: 1;
    min-height: 14px;
}

.kfarm-star {
    font-size: 0.72rem;
    line-height: 1;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.55);
}

.kfarm-star--on {
    color: #fde047;
}

.kfarm-star--off {
    color: rgba(255, 255, 255, 0.55);
}

.kfarm-level-stars--locked .kfarm-star--off {
    font-size: 0.78rem;
    opacity: 0.9;
}

.kfarm-node-rewards {
    position: absolute;
    left: 50%;
    bottom: -14px;
    transform: translateX(-50%);
    display: flex;
    gap: 3px;
    z-index: 4;
    pointer-events: none;
    white-space: nowrap;
}

.kfarm-node-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    min-height: 18px;
    padding: 1px 5px;
    border-radius: 999px;
    font-size: 0.5rem;
    font-weight: 800;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(15, 23, 42, 0.88);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.35);
}

.kfarm-node-chip-ico { font-size: 0.55rem; line-height: 1; }
.kfarm-node-chip-val { color: #fbbf24; line-height: 1; }

.kfarm-node-chip--gold { color: #fbbf24; }
.kfarm-node-chip--egg {
    padding: 1px 4px;
}
.kfarm-node-chip--egg img {
    width: 15px;
    height: 15px;
    object-fit: contain;
}

.kfarm-node-chip--bronze { background: rgba(180, 83, 9, 0.92); }
.kfarm-node-chip--silver { background: rgba(71, 85, 105, 0.92); }
.kfarm-node-chip--gold.kfarm-node-chip--egg { background: rgba(161, 98, 7, 0.92); }

.kfarm-level-node--open .kfarm-node-face {
    background: radial-gradient(circle at 38% 30%, #a78bfa 0%, #6d28d9 50%, #4c1d95 100%);
}

.kfarm-level-node--current .kfarm-node-ring {
    border-style: solid;
    border-color: rgba(254, 243, 199, 0.55);
    animation: kfarm-node-pulse 1.8s ease-in-out infinite;
}

.kfarm-level-node--current .kfarm-node-face {
    border-color: #fef3c7;
    /* Design-system accent gold CTA */
    background: radial-gradient(circle at 38% 28%, #fde68a 0%, #F59E0B 46%, #d97706 100%);
    box-shadow:
        0 4px 0 rgba(120, 53, 15, 0.55),
        0 0 20px rgba(245, 158, 11, 0.75),
        0 0 36px rgba(236, 72, 153, 0.25),
        0 5px 12px rgba(0, 0, 0, 0.32);
}

.kfarm-level-node--cleared .kfarm-node-face {
    border-color: #bbf7d0;
    background: radial-gradient(circle at 38% 30%, #86efac 0%, #22c55e 48%, #15803d 100%);
}

.kfarm-level-node--locked .kfarm-node-face {
    border-color: rgba(255, 255, 255, 0.25);
    background: radial-gradient(circle at 38% 30%, #94a3b8 0%, #64748b 50%, #475569 100%);
    opacity: 0.72;
    filter: grayscale(0.35);
}

.kfarm-level-node--locked {
    cursor: not-allowed;
}

.kfarm-level-node--milestone .kfarm-node-ring {
    border-color: rgba(252, 211, 77, 0.65);
    border-style: solid;
}

.kfarm-level-node--milestone .kfarm-node-face {
    border-width: 3.5px;
    border-color: #fcd34d;
}

@keyframes kfarm-node-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.04); }
}

.kfarm-level-node:not(:disabled):hover .kfarm-node-face {
    transform: scale(1.05);
}

#kfarm-rewards-legend {
    display: none !important;
}

.kfarm-play-current-btn {
    width: 100%;
    margin-top: 8px;
    padding: 12px;
    border: none;
    border-radius: 12px;
    font-family: var(--font-heading, Fredoka, system-ui, sans-serif);
    font-weight: 700;
    letter-spacing: 0.02em;
    /* Primary pink → secondary purple (design system) */
    background: linear-gradient(135deg, #EC4899, #8B5CF6);
    color: #fff;
    font-weight: 800;
    font-size: 0.85rem;
    cursor: pointer;
}

.kfarm-leaderboard-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.kfarm-lb-user { flex: 1; min-width: 0; }
.kfarm-lb-meta { color: var(--text-secondary); font-size: 0.65rem; }
.kfarm-lb-empty { text-align: center; padding: 20px; color: var(--text-secondary); font-size: 0.75rem; }

.kfarm-howto-text {
    font-size: 0.75rem;
    line-height: 1.55;
    color: var(--text-secondary);
    margin: 0;
    padding: 12px 10px 16px;
}
