/* МоноСлово — glassmorphism, тёмная тема, неон-акценты */

#monoslovo-interface {
    background: var(--bg-primary, #0a0e1a);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.ms-page {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    padding-bottom: 24px;
}

.ms-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
    color: var(--text-secondary);
    font-size: 15px;
}

/* Header */
.ms-header {
    padding: 16px 16px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.ms-back-btn {
    align-self: flex-start;
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    color: #4d9fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    padding: 6px 0;
    transition: text-shadow 0.2s ease;
}
.ms-back-btn:hover { text-shadow: 0 0 12px rgba(77, 159, 255, 0.6); }

.ms-title {
    /* FIX: added explain — larger title +20% */
    font-size: 26px;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(77, 159, 255, 0.4);
    letter-spacing: -0.3px;
}

/* FIX: added explain — short description under title */
.ms-explain {
    font-size: 14px;
    color: #aaa;
    text-align: center;
    margin: 8px 0;
    max-width: 320px;
}

.ms-subtitle {
    font-size: 13px;
    color: var(--text-secondary);
}

.ms-section-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 16px 16px 8px;
}

/* Deck grid — glass cards */
.ms-decks-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 0 16px;
}

.ms-deck-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
}
.ms-deck-card:hover {
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.25);
}

.ms-deck-card:active { transform: scale(0.96); }

.ms-deck-selected {
    border-color: #4d9fff;
    background: rgba(77, 159, 255, 0.12);
    box-shadow: 0 0 0 1px rgba(77, 159, 255, 0.4), 0 0 24px rgba(77, 159, 255, 0.25);
}

.ms-deck-locked {
    opacity: 0.75;
}

.ms-deck-emoji {
    font-size: 24px;
    line-height: 1;
    font-weight: 800;
    color: #4d9fff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(77, 159, 255, 0.15);
    border: 1px solid rgba(77, 159, 255, 0.3);
}

/* FIX: 18+ deck — semi-transparent red circle badge */
.ms-deck-emoji-18 {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 0, 0, 0.5);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    line-height: 40px;
    text-align: center;
    border: none;
}

.ms-deck-name {
    /* FIX: larger deck name +20% */
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
}

.ms-deck-words {
    font-size: 11px;
    color: var(--text-tertiary);
}

.ms-deck-badge {
    font-size: 10px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 20px;
    margin-top: 2px;
}

.ms-badge-free {
    background: rgba(52, 211, 153, 0.12);
    color: #34d399;
    border: 1px solid rgba(52, 211, 153, 0.25);
}

.ms-badge-paid {
    background: rgba(255, 140, 106, 0.12);
    color: #ff8c6a;
    border: 1px solid rgba(255, 140, 106, 0.25);
}

.ms-deck-footer {
    padding: 16px 16px 8px;
}

/* Buttons — flat, neon glow on hover */
.ms-btn-primary {
    width: 100%;
    background: rgba(77, 159, 255, 0.25);
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    padding: 16px;
    border-radius: 14px;
    border: 1px solid rgba(77, 159, 255, 0.4);
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: 0.2px;
    box-shadow: 0 0 0 transparent;
}
.ms-btn-primary:hover {
    background: rgba(77, 159, 255, 0.35);
    box-shadow: 0 0 20px rgba(77, 159, 255, 0.4);
}
.ms-btn-primary:disabled {
    opacity: 0.4;
    cursor: default;
    box-shadow: none;
}
.ms-btn-primary:active { transform: scale(0.97); }

.ms-btn-secondary {
    width: 100%;
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    padding: 14px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    cursor: pointer;
    transition: all 0.2s ease;
}
.ms-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 16px rgba(255, 255, 255, 0.08);
}
.ms-btn-secondary:active { transform: scale(0.97); }

.ms-btn-danger {
    width: 100%;
    background: rgba(248, 113, 113, 0.1);
    color: #f87171;
    font-size: 15px;
    font-weight: 600;
    padding: 14px;
    border-radius: 14px;
    border: 1px solid rgba(248, 113, 113, 0.25);
    cursor: pointer;
    transition: all 0.2s ease;
}
.ms-btn-danger:hover { box-shadow: 0 0 14px rgba(248, 113, 113, 0.2); }
.ms-btn-danger:active { transform: scale(0.97); }

.ms-btn-ghost {
    width: 100%;
    background: none;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    padding: 12px;
    border-radius: 14px;
    border: none;
    cursor: pointer;
}

/* Setup screen */
.ms-setup-block {
    margin-bottom: 4px;
}

.ms-count-row {
    display: flex;
    gap: 8px;
    padding: 0 16px;
    flex-wrap: wrap;
}

.ms-count-btn {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 600;
    padding: 10px 16px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.18s ease;
    min-width: 48px;
    text-align: center;
}
.ms-count-btn:hover {
    background: rgba(255, 255, 255, 0.08);
}

.ms-count-active {
    background: rgba(77, 159, 255, 0.15);
    border-color: #4d9fff;
    color: #4d9fff;
    box-shadow: 0 0 14px rgba(77, 159, 255, 0.25);
}

/* Раунды — те же кнопки что и остальные блоки (единый стиль) */
.ms-rounds-btn { min-width: 48px; }
.ms-rounds-infinity { min-width: 44px; font-weight: 700; }

.ms-player-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 16px;
    margin-bottom: 8px;
}

.ms-player-team-badge {
    min-width: 36px;
    height: 36px;
    padding: 0 8px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.2s ease;
    gap: 2px;
}
.ms-team-emoji {
    font-size: 14px;
    line-height: 1;
}

.ms-team-1 {
    background: rgba(77, 159, 255, 0.2);
    border: 1px solid rgba(77, 159, 255, 0.4);
    color: #4d9fff;
}
.ms-team-1:hover { box-shadow: 0 0 12px rgba(77, 159, 255, 0.3); }

.ms-team-2 {
    background: rgba(255, 140, 106, 0.2);
    border: 1px solid rgba(255, 140, 106, 0.4);
    color: #ff8c6a;
}
.ms-team-2:hover { box-shadow: 0 0 12px rgba(255, 140, 106, 0.3); }

.ms-team-3 {
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.4);
    color: #22c55e;
}
.ms-team-3:hover { box-shadow: 0 0 12px rgba(34, 197, 94, 0.3); }

.ms-team-4 {
    background: rgba(168, 85, 247, 0.2);
    border: 1px solid rgba(168, 85, 247, 0.4);
    color: #a855f7;
}
.ms-team-4:hover { box-shadow: 0 0 12px rgba(168, 85, 247, 0.3); }

.ms-team-num {
    font-size: 13px;
    font-weight: 800;
    color: #fff !important;
    text-shadow: 0 0 1px rgba(0,0,0,0.5);
    letter-spacing: 0.02em;
}
.ms-player-input { flex: 1; }

/* Gameplay */
.ms-gameplay { padding-bottom: 0; }

.ms-game-header {
    padding: 12px 16px 8px;
}

.ms-game-scores {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.ms-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    min-width: 70px;
}

.ms-score-label { font-size: 10px; color: var(--text-tertiary); font-weight: 600; text-transform: uppercase; }
.ms-score-val { font-size: 28px; font-weight: 800; color: #ffffff; line-height: 1; }
.ms-score-1 .ms-score-val { color: #4d9fff; text-shadow: 0 0 15px rgba(77, 159, 255, 0.5); }
.ms-score-2 .ms-score-val { color: #ff8c6a; text-shadow: 0 0 15px rgba(255, 140, 106, 0.5); }
.ms-score-3 .ms-score-val { color: #22c55e; text-shadow: 0 0 15px rgba(34, 197, 94, 0.5); }
.ms-score-4 .ms-score-val { color: #a855f7; text-shadow: 0 0 15px rgba(168, 85, 247, 0.5); }
.ms-score[style*="--ms-team-color"] .ms-score-val { color: var(--ms-team-color); text-shadow: 0 0 15px color-mix(in srgb, var(--ms-team-color) 50%, transparent); }

.ms-round-badge {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 4px 10px;
}

.ms-current-player {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 10px 14px;
}

.ms-player-name-badge {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
}

.ms-team-tag {
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    color: #ffffff;
}

/* Timer */
.ms-timer-wrap {
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.ms-timer-bar-bg {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 3px;
    overflow: hidden;
}

.ms-timer-bar {
    height: 100%;
    border-radius: 3px;
    transition: width 1s linear, background 0.5s ease;
}

.ms-timer-count {
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    min-width: 32px;
    text-align: right;
}

/* Word card — glass + smooth transition for swipe */
.ms-word-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    gap: 8px;
}

.ms-swipe-hint {
    font-size: 12px;
    color: var(--text-tertiary);
    letter-spacing: 0.3px;
}

.ms-word-card {
    width: 100%;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 20px;
    min-height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
    cursor: grab;
    user-select: none;
    will-change: transform;
    transition: transform 0.3s ease-out;
}
.ms-word-card:active { cursor: grabbing; }

.ms-word-text {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    text-align: center;
    padding: 24px;
    line-height: 1.2;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
    letter-spacing: -0.5px;
    z-index: 2;
    position: relative;
}

.ms-word-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    opacity: 0;
    border-radius: 18px;
    z-index: 3;
    pointer-events: none;
}

.ms-overlay-correct {
    background: rgba(52, 211, 153, 0.2);
}

.ms-overlay-skip {
    background: rgba(248, 113, 113, 0.2);
}

.ms-swipe-dots {
    display: flex;
    justify-content: space-between;
    width: 100%;
    color: var(--text-tertiary);
    font-size: 14px;
    padding: 0 8px;
}

/* Action buttons — flat, neon on hover */
.ms-action-row {
    display: flex;
    gap: 12px;
    padding: 8px 16px;
}

.ms-action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px;
    border-radius: 16px;
    font-size: 15px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.15s ease;
}
.ms-action-btn:active { transform: scale(0.94); }

.ms-btn-skip {
    background: rgba(248, 113, 113, 0.1);
    color: #f87171;
    border: 1px solid rgba(248, 113, 113, 0.25);
}
.ms-btn-skip:hover { box-shadow: 0 0 14px rgba(248, 113, 113, 0.2); }

.ms-btn-correct {
    background: rgba(52, 211, 153, 0.12);
    color: #34d399;
    border: 1px solid rgba(52, 211, 153, 0.3);
}
.ms-btn-correct:hover { box-shadow: 0 0 16px rgba(52, 211, 153, 0.25); }

.ms-end-round-btn {
    margin: 0 16px 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 600;
    padding: 12px;
    border-radius: 12px;
    cursor: pointer;
    width: calc(100% - 32px);
    transition: all 0.2s;
}

/* Transition screen */
.ms-transition-screen { justify-content: center; padding: 20px 16px; }

.ms-transition-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.ms-team-scores-big {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    margin-bottom: 20px;
}

.ms-team-score-card {
    flex: 1;
    min-width: 80px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    padding: 16px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.2);
}
.ms-team-score-card[style*="--ms-team-color"] { border-color: color-mix(in srgb, var(--ms-team-color) 40%, transparent); }
.ms-team-score-card[style*="--ms-team-color"] .ms-ts-val { color: var(--ms-team-color); }

.ms-team-1-card { border-color: rgba(77, 159, 255, 0.35); }
.ms-team-2-card { border-color: rgba(255, 140, 106, 0.35); }
.ms-team-3-card { border-color: rgba(34, 197, 94, 0.35); }
.ms-team-4-card { border-color: rgba(168, 85, 247, 0.35); }

.ms-ts-label { font-size: 11px; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.ms-ts-val { font-size: 36px; font-weight: 800; color: #ffffff; }
.ms-team-1-card .ms-ts-val { color: #4d9fff; }
.ms-team-2-card .ms-ts-val { color: #ff8c6a; }
.ms-team-3-card .ms-ts-val { color: #22c55e; }
.ms-team-4-card .ms-ts-val { color: #a855f7; }
.ms-ts-vs { font-size: 16px; font-weight: 700; color: var(--text-tertiary); flex-shrink: 0; }

.ms-next-player-announce {
    font-size: 14px;
    color: var(--text-secondary);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ms-next-player-name {
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
}

.ms-next-player-team {
    font-size: 13px;
    font-weight: 600;
}

.ms-transition-btns {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Промежуточный экран — лайки по словам за ход */
.ms-likes-screen {
    padding: 0 0 24px;
    display: flex;
    flex-direction: column;
    min-height: 60vh;
}
.ms-likes-header {
    padding: 20px 16px;
    color: #fff;
    text-align: center;
    margin-bottom: 12px;
}
.ms-likes-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.95;
}
.ms-likes-team { font-size: 16px; margin-top: 4px; }
.ms-likes-badge {
    display: inline-block;
    margin-top: 8px;
    padding: 6px 16px;
    background: rgba(255,255,255,0.25);
    border-radius: 20px;
    font-size: 20px;
    font-weight: 800;
}
.ms-likes-hint {
    font-size: 12px;
    color: var(--text-tertiary);
    padding: 0 16px 12px;
    text-align: center;
}
.ms-likes-list {
    flex: 1;
    padding: 0 16px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.ms-round-word-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
}
.ms-round-word-text {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}
.ms-like-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    cursor: pointer;
    font-size: 22px;
    opacity: 0.6;
    transition: opacity 0.2s, background 0.2s;
}
.ms-like-btn:hover { opacity: 1; background: rgba(255,255,255,0.12); }
.ms-like-btn.ms-like-on {
    opacity: 1;
    background: rgba(255, 140, 106, 0.35);
    box-shadow: 0 0 12px rgba(255, 140, 106, 0.3);
}
.ms-likes-continue {
    margin: 16px 16px 0;
}

/* Results */
.ms-results-screen { padding: 20px 16px; }

.ms-results-header {
    text-align: center;
    margin-bottom: 24px;
}

.ms-results-trophy {
    font-size: 48px;
    line-height: 1;
    margin-bottom: 8px;
    font-weight: 800;
    color: #ff8c6a;
    text-shadow: 0 0 20px rgba(255, 140, 106, 0.4);
}

.ms-results-title {
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.ms-final-scores {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.ms-final-score-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    padding: 16px 12px;
    text-align: center;
    position: relative;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
}

.ms-winner-card {
    border-color: rgba(255, 140, 106, 0.45);
    background: rgba(255, 140, 106, 0.08);
    box-shadow: 0 0 24px rgba(255, 140, 106, 0.2);
}

.ms-winner-crown {
    font-size: 20px;
    margin-bottom: 4px;
    color: #ff8c6a;
}

.ms-fs-label { font-size: 11px; color: var(--text-secondary); text-transform: uppercase; margin-bottom: 4px; }
.ms-fs-val { font-size: 40px; font-weight: 800; color: #ffffff; line-height: 1; }
.ms-fs-players { font-size: 11px; color: var(--text-tertiary); margin-top: 6px; }

.ms-awards {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.ms-award-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    padding: 14px 10px;
    text-align: center;
}

.ms-award-icon { font-size: 22px; margin-bottom: 4px; font-weight: 800; color: #4d9fff; }
.ms-award-label { font-size: 10px; color: var(--text-tertiary); text-transform: uppercase; margin-bottom: 4px; }
.ms-award-name { font-size: 13px; font-weight: 700; color: #ffffff; }

.ms-results-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ms-share-block { margin-bottom: 2px; }
.ms-share-caption {
    font-size: 11px;
    color: var(--text-tertiary, rgba(255, 255, 255, 0.5));
    text-align: center;
    margin-top: 6px;
    margin-bottom: 2px;
    line-height: 1.3;
}

/* Share to Stories — flat, neon */
.ms-share-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(77, 159, 255, 0.12);
    border: 1px solid rgba(77, 159, 255, 0.35);
    color: #7ab8ff;
    font-size: 15px;
    font-weight: 700;
    padding: 15px;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.18s ease;
    letter-spacing: 0.2px;
}
.ms-share-btn:hover:not(:disabled) { box-shadow: 0 0 20px rgba(77, 159, 255, 0.35); }
.ms-share-btn:active:not(:disabled) {
    transform: scale(0.97);
}
.ms-share-btn:disabled {
    opacity: 0.75;
    cursor: not-allowed;
}

/* Payment modal */
.ms-pay-modal { padding: 24px 20px; }
.ms-pay-options { display: flex; flex-direction: column; gap: 10px; }

.ms-pay-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
    width: 100%;
}
.ms-pay-btn:hover { background: rgba(255, 255, 255, 0.08); }
.ms-pay-btn:active { transform: scale(0.97); }

.ms-pay-stars {
    border-color: rgba(255, 140, 106, 0.3);
    background: rgba(255, 140, 106, 0.06);
}

.ms-pay-card {
    border-color: rgba(77, 159, 255, 0.3);
    background: rgba(77, 159, 255, 0.06);
}

.ms-pay-icon { font-size: 24px; flex-shrink: 0; font-weight: 700; }
.ms-pay-stars .ms-pay-icon { color: #ff8c6a; }
.ms-pay-card .ms-pay-icon { color: #4d9fff; }
.ms-pay-label { font-size: 14px; font-weight: 700; color: #ffffff; }
.ms-pay-price { font-size: 13px; color: var(--text-secondary); margin-top: 2px; }

.ms-share-block {
    margin-bottom: 12px;
    text-align: center;
}

.ms-share-caption {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 6px;
    line-height: 1.3;
}

.ms-share-btn:disabled {
    opacity: 0.75;
    cursor: not-allowed;
}

.ms-share-btn:disabled svg {
    opacity: 0.6;
}
