:root {
    --gm-accent: var(--accent1, #ead3a2);
    --gm-accent-2: var(--accent2, #f5edcd);
    --gm-bg: rgba(7, 7, 7, .97);
    --gm-bg-soft: rgba(15, 15, 15, .82);
    --gm-panel: var(--dbckg2, #0e0e0e);
    --gm-panel-2: var(--dbckg4, #181818);
    --gm-border: var(--border2-c, #1c1c1c);
    --gm-border-soft: rgba(255, 255, 255, .075);
    --gm-text: var(--title2, #e0e0e0);
    --gm-muted: var(--text, #777777);
    --gm-danger: #c98580;
    --gm-success: #91b692;
    --gm-mono: var(--f-mono, "Space Mono", monospace);
    --gm-title: var(--f-titles, "Cinzel", serif);
    --gm-body: var(--f-body, system-ui, sans-serif);
}

body.gm-dialog-open {
    overflow: hidden;
}

.gm-side-panel[hidden],
.gm-dialog[hidden],
.gm-side-panel [hidden],
.gm-dialog [hidden] {
    display: none !important;
}

/* -------------------------------------------------------------------------- */
/* Botón portátil: barra de Khaos, dock genérico o acceso flotante             */
/* -------------------------------------------------------------------------- */

.gm-sidebar-item {
    position: relative;
    flex: 0 0 auto;
    margin: 0;
    padding: 0;
    list-style: none;
}

.gm-open {
    font-family: var(--gm-body);
}

.gm-open.gm-sidebar-trigger {
    position: relative;
    font: inherit;
}

.gm-open.gm-sidebar-trigger #gm-open-count,
.gm-open.gm-generic-dock-button #gm-open-count {
    position: absolute;
    z-index: 4;
    top: 5px;
    right: 5px;
    display: grid;
    place-items: center;
    min-width: 15px;
    height: 15px;
    padding: 0 3px;
    box-sizing: border-box;
    border: 2px solid #070707;
    border-radius: 99px;
    background: var(--gm-accent);
    color: #111;
    font: 800 8px/1 var(--gm-mono);
    pointer-events: none;
}

.gm-open.gm-sidebar-trigger:hover #gm-open-count,
.gm-open.gm-sidebar-trigger:focus-visible #gm-open-count,
.gm-open.gm-sidebar-trigger[aria-expanded="true"] #gm-open-count {
    border-color: var(--gm-accent);
    background: #111;
    color: var(--gm-accent);
}

.gm-open.gm-generic-dock-button {
    position: relative;
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 12px;
    color: var(--gm-text);
    background: var(--gm-bg);
    border: 1px solid var(--gm-border);
    border-radius: 4px;
    cursor: pointer;
}

.gm-open.gm-generic-dock-button:hover,
.gm-open.gm-generic-dock-button:focus-visible,
.gm-open.gm-generic-dock-button[aria-expanded="true"] {
    color: #111;
    background: var(--gm-accent);
    border-color: var(--gm-accent);
    outline: none;
}

.gm-open.gm-floating {
    position: fixed;
    z-index: 1190;
    right: 22px;
    bottom: 22px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 13px;
    color: var(--gm-text);
    background: rgba(7, 7, 7, .97);
    border: 1px solid var(--gm-border);
    border-radius: 4px;
    box-shadow: 0 0 0 4px rgba(0, 0, 0, .34), 0 10px 28px rgba(0, 0, 0, .58);
    font: 700 10px/1 var(--gm-mono);
    letter-spacing: .7px;
    text-transform: uppercase;
    cursor: pointer;
}

.gm-open.gm-floating:hover,
.gm-open.gm-floating:focus-visible,
.gm-open.gm-floating[aria-expanded="true"] {
    color: #111;
    background: var(--gm-accent);
    border-color: var(--gm-accent);
    outline: none;
}

.gm-open.gm-floating b {
    display: grid;
    place-items: center;
    min-width: 21px;
    height: 21px;
    padding: 0 5px;
    box-sizing: border-box;
    border-radius: 99px;
    background: var(--gm-accent);
    color: #111;
    font: 800 9px/1 var(--gm-mono);
}

.gm-open.gm-floating:hover b,
.gm-open.gm-floating:focus-visible b,
.gm-open.gm-floating[aria-expanded="true"] b {
    background: #111;
    color: var(--gm-accent);
}

/* -------------------------------------------------------------------------- */
/* Panel rápido lateral                                                        */
/* -------------------------------------------------------------------------- */

.gm-side-panel {
    position: fixed;
    z-index: 1350;
    width: min(410px, calc(100vw - 30px));
    max-height: calc(100vh - 24px);
    max-height: calc(100dvh - 24px);
    overflow: hidden;
    isolation: isolate;
    box-sizing: border-box;
    color: var(--gm-muted);
    font-family: var(--gm-body);
    background: var(--gm-bg-soft);
    border: 2px solid #000;
    box-shadow: 0 0 0 5px var(--gm-border), 0 20px 58px rgba(0, 0, 0, .78);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    transform: translateX(-7px);
    transform-origin: left center;
    transition: opacity .16s ease, transform .16s ease;
}

.gm-side-panel::before,
.gm-side-panel::after {
    content: "";
    position: absolute;
    z-index: 0;
    width: 95px;
    height: 95px;
    pointer-events: none;
    opacity: .17;
}

.gm-side-panel::before {
    top: 0;
    right: 0;
    background:
        linear-gradient(135deg, transparent 48%, var(--gm-accent) 49%, var(--gm-accent) 51%, transparent 52%) 0 0 / 22px 22px,
        linear-gradient(45deg, transparent 48%, var(--gm-accent) 49%, var(--gm-accent) 51%, transparent 52%) 0 0 / 22px 22px;
    -webkit-mask-image: linear-gradient(135deg, #000, transparent 74%);
    mask-image: linear-gradient(135deg, #000, transparent 74%);
}

.gm-side-panel::after {
    right: 10px;
    bottom: 10px;
    width: 34px;
    height: 34px;
    border-right: 1px solid var(--gm-accent);
    border-bottom: 1px solid var(--gm-accent);
    opacity: .42;
}

.gm-side-panel > * {
    position: relative;
    z-index: 1;
}

.gm-side-panel.is-open {
    opacity: 1;
    transform: translateX(0);
}

.gm-panel-header {
    min-height: 66px;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 12px 13px;
    box-sizing: border-box;
    background: rgba(0, 0, 0, .34);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.gm-panel-symbol {
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    color: var(--gm-accent);
    background: rgba(255, 255, 255, .018);
    border: 1px solid rgba(234, 211, 162, .25);
    transform: rotate(45deg);
}

.gm-panel-symbol i {
    transform: rotate(-45deg);
}

.gm-panel-heading {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.gm-panel-heading small,
.gm-wallet small,
.gm-vote-draft small,
.gm-dialog-header small {
    color: var(--gm-muted);
    font: 9px/1.25 var(--gm-mono);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.gm-panel-heading strong {
    overflow: hidden;
    color: var(--gm-text);
    font: 700 16px/1.25 var(--gm-title);
    text-overflow: ellipsis;
    white-space: nowrap;
}

.gm-test-badge {
    margin-left: auto;
    padding: 5px 7px;
    color: #e5b194;
    background: rgba(201, 128, 92, .10);
    border: 1px solid rgba(201, 128, 92, .42);
    font: 700 8px/1 var(--gm-mono);
    letter-spacing: .8px;
    text-transform: uppercase;
}

.gm-panel-close,
.gm-dialog-close {
    flex: 0 0 auto;
    width: 30px;
    height: 30px;
    margin: 0 0 0 auto;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gm-muted);
    background: var(--gm-panel);
    border: 1px solid var(--gm-border);
    border-radius: 3px;
    cursor: pointer;
}

.gm-panel-close:hover,
.gm-panel-close:focus-visible,
.gm-dialog-close:hover,
.gm-dialog-close:focus-visible {
    color: #111;
    background: var(--gm-accent);
    border-color: var(--gm-accent);
    outline: none;
}

.gm-panel-loading {
    min-height: 350px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 10px;
    color: var(--gm-muted);
    font: 10px/1.4 var(--gm-mono);
    text-transform: uppercase;
}

.gm-panel-loading i {
    color: var(--gm-accent);
    font-size: 18px;
}

.gm-panel-content {
    max-height: calc(100vh - 90px);
    max-height: calc(100dvh - 90px);
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: var(--gm-accent) #090909;
}

.gm-panel-content::-webkit-scrollbar,
.gm-dialog-body::-webkit-scrollbar {
    width: 5px;
}

.gm-panel-content::-webkit-scrollbar-track,
.gm-dialog-body::-webkit-scrollbar-track {
    background: #090909;
    border: 0;
}

.gm-panel-content::-webkit-scrollbar-thumb,
.gm-dialog-body::-webkit-scrollbar-thumb {
    background: var(--gm-accent);
    border: 1px solid #090909;
    border-radius: 6px;
}

.gm-panel-message,
.gm-dialog-message {
    margin: 9px;
    padding: 9px 10px;
    border: 1px solid;
    font: 700 10px/1.45 var(--gm-mono);
}

.gm-panel-message.is-success,
.gm-dialog-message.is-success {
    color: #bdd8bd;
    background: rgba(103, 151, 105, .12);
    border-color: rgba(145, 182, 146, .48);
}

.gm-panel-message.is-error,
.gm-dialog-message.is-error {
    color: #e6aaa5;
    background: rgba(174, 85, 78, .12);
    border-color: rgba(201, 133, 128, .5);
}

/* Votos disponibles */

.gm-wallet {
    min-height: 56px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px 10px;
    padding: 9px 11px;
    box-sizing: border-box;
    background: rgba(255, 255, 255, .012);
    border-bottom: 1px solid rgba(255, 255, 255, .055);
}

.gm-wallet > div:first-child {
    min-width: 0;
}

.gm-regular-wallet {
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.gm-vote-chip {
    min-width: 30px;
    height: 24px;
    display: inline-grid;
    place-items: center;
    box-sizing: border-box;
    color: #111;
    background: var(--gm-accent);
    border: 1px solid var(--gm-accent);
    border-radius: 2px;
    font: 800 10px/1 var(--gm-mono);
    transition: opacity .16s ease, filter .16s ease, background .16s ease;
}

.gm-vote-chip.is-negative {
    color: #f2dedd;
    background: rgba(175, 86, 79, .78);
    border-color: rgba(201, 133, 128, .7);
}

.gm-vote-chip.is-used {
    opacity: .25;
    filter: grayscale(1);
    text-decoration: line-through;
}

.gm-vote-chip.is-staged {
    color: var(--gm-accent);
    background: transparent;
    border-style: dashed;
    box-shadow: inset 0 0 0 1px rgba(234, 211, 162, .08);
}

.gm-saved-wallet {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.gm-saved-wallet strong {
    margin-top: 4px;
    color: var(--gm-accent);
    font: 800 12px/1 var(--gm-mono);
}

.gm-countdown {
    grid-column: 1 / -1;
    color: #565656;
    font: 8px/1.1 var(--gm-mono);
    letter-spacing: .6px;
    text-align: right;
    text-transform: uppercase;
}

/* Termómetro compacto */

.gm-meter-section {
    padding: 9px 10px 8px;
    background: rgba(0, 0, 0, .16);
}

.gm-heat-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #555;
    font: 700 8px/1.2 var(--gm-mono);
    letter-spacing: 1.7px;
    text-transform: uppercase;
}

.gm-heat-label-hot {
    color: #b9886e;
}

.gm-heat-label-cold {
    color: #718296;
}

.gm-compact-meter {
    position: relative;
    height: 420px;
    margin: 7px 0;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(132, 73, 55, .13), transparent 40%, rgba(67, 91, 117, .11)),
        repeating-linear-gradient(0deg, transparent 0, transparent 40px, rgba(255, 255, 255, .012) 41px);
    border-top: 1px solid rgba(255, 255, 255, .055);
    border-bottom: 1px solid rgba(255, 255, 255, .055);
}

.gm-tube {
    position: absolute;
    z-index: 2;
    left: 29px;
    top: 19px;
    bottom: 22px;
    width: 9px;
    background: rgba(0, 0, 0, .52);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 99px;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, .25);
}

.gm-tube::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -14px;
    width: 21px;
    height: 21px;
    border-radius: 50%;
    background: #6f312d;
    border: 1px solid rgba(255, 255, 255, .16);
    box-shadow: inset 0 0 9px rgba(255, 255, 255, .05);
    transform: translateX(-50%);
}

.gm-mercury {
    position: absolute;
    inset: 2px;
    border-radius: 99px;
    background: linear-gradient(#c9785e 0%, #9b4f43 45%, #5f6d83 100%);
}

.gm-levels,
.gm-markers {
    position: absolute;
    inset: 0;
}

.gm-level-line {
    position: absolute;
    left: 48px;
    right: 8px;
    border-top: 1px dashed rgba(255, 255, 255, .065);
}

.gm-level-line span {
    position: absolute;
    left: -25px;
    top: -8px;
    width: 17px;
    color: #5d5d5d;
    font: 700 8px/16px var(--gm-mono);
    text-align: center;
}

.gm-rumor-marker {
    position: absolute;
    z-index: 3;
    left: 49px;
    right: 7px;
    min-height: 34px;
    padding: 0;
    display: grid;
    grid-template-columns: 18px 22px minmax(0, 1fr);
    align-items: center;
    color: var(--gm-text);
    text-align: left;
    background: transparent;
    border: 0;
    cursor: pointer;
    transform: translateY(-50%);
}

.gm-rumor-connector {
    height: 1px;
    background: linear-gradient(90deg, rgba(234, 211, 162, .55), rgba(234, 211, 162, .08));
}

.gm-rumor-level {
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    box-sizing: border-box;
    color: var(--gm-accent);
    background: #0b0b0b;
    border: 1px solid rgba(234, 211, 162, .35);
    border-radius: 50%;
    font: 800 8px/1 var(--gm-mono);
    transition: color .16s ease, background .16s ease, border-color .16s ease;
}

.gm-rumor-floating {
    min-width: 0;
    margin-left: 5px;
    padding: 6px 8px 6px 9px;
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--gm-text);
    background: rgba(7, 7, 7, .72);
    border: 1px solid rgba(255, 255, 255, .045);
    border-left: 2px solid rgba(234, 211, 162, .42);
    box-shadow: 0 5px 13px rgba(0, 0, 0, .18);
    animation: gm-whisper-float var(--gm-float-duration, 4.2s) ease-in-out var(--gm-float-delay, 0s) infinite;
    transition: background .16s ease, border-color .16s ease, box-shadow .16s ease;
}

.gm-rumor-floating strong {
    min-width: 0;
    overflow: hidden;
    color: inherit;
    font: 700 11px/1.25 var(--gm-title);
    letter-spacing: .15px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.gm-rumor-badges {
    flex: 0 0 auto;
    display: flex;
    gap: 3px;
}

.gm-rumor-badges em {
    min-width: 23px;
    height: 17px;
    display: grid;
    place-items: center;
    padding: 0 3px;
    box-sizing: border-box;
    color: #111;
    background: var(--gm-accent);
    border-radius: 2px;
    font: 800 7px/1 var(--gm-mono);
    font-style: normal;
}

.gm-rumor-badges em.is-fixed {
    opacity: .4;
    filter: grayscale(.8);
}

.gm-rumor-badges em.is-staged {
    color: var(--gm-accent);
    background: transparent;
    border: 1px dashed var(--gm-accent);
}

.gm-rumor-badges em.is-bonus {
    color: #d8bddf;
    background: rgba(139, 91, 151, .18);
    border: 1px solid rgba(184, 135, 195, .45);
}

.gm-rumor-marker:hover,
.gm-rumor-marker:focus-visible,
.gm-rumor-marker.is-selected {
    outline: none;
}

.gm-rumor-marker:hover .gm-rumor-level,
.gm-rumor-marker:focus-visible .gm-rumor-level,
.gm-rumor-marker.is-selected .gm-rumor-level {
    color: #111;
    background: var(--gm-accent);
    border-color: var(--gm-accent);
}

.gm-rumor-marker:hover .gm-rumor-floating,
.gm-rumor-marker:focus-visible .gm-rumor-floating,
.gm-rumor-marker.is-selected .gm-rumor-floating {
    color: #111;
    background: var(--gm-accent);
    border-color: var(--gm-accent);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .36);
    animation-play-state: paused;
}

.gm-rumor-marker.is-danger .gm-rumor-level {
    color: #e8c6c4;
    border-color: rgba(201, 133, 128, .72);
}

.gm-rumor-marker.is-danger .gm-rumor-floating {
    border-left-color: rgba(201, 133, 128, .76);
}

.gm-rumor-marker.is-danger:not(.is-selected) .gm-rumor-floating {
    animation-name: gm-whisper-danger;
}

.gm-meter-empty {
    position: absolute;
    inset: 0 18px 0 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: #666;
    font: 10px/1.45 var(--gm-mono);
    text-align: center;
}

.gm-meter-empty i {
    color: var(--gm-accent);
    font-size: 18px;
}

@keyframes gm-whisper-float {
    0%, 100% { transform: translate3d(var(--gm-float-x, 0), -1px, 0); }
    50% { transform: translate3d(calc(var(--gm-float-x, 0) + 4px), 2px, 0); }
}

@keyframes gm-whisper-danger {
    0%, 100% { transform: translate3d(var(--gm-float-x, 0), -1px, 0); box-shadow: 0 5px 13px rgba(0, 0, 0, .18); }
    50% { transform: translate3d(calc(var(--gm-float-x, 0) + 3px), 2px, 0); box-shadow: 0 0 16px rgba(201, 133, 128, .18); }
}

/* Ficha rápida y votación */

.gm-quick-card {
    margin: 0 10px 9px;
    padding: 11px;
    background: rgba(255, 255, 255, .018);
    border: 1px solid rgba(255, 255, 255, .06);
    box-shadow: inset 2px 0 0 rgba(234, 211, 162, .5);
}

.gm-quick-card.is-empty {
    min-height: 58px;
    display: flex;
    align-items: center;
    gap: 11px;
    color: #626262;
    box-shadow: none;
    border-style: dashed;
}

.gm-quick-card.is-empty > i {
    color: var(--gm-accent);
    font-size: 18px;
}

.gm-quick-card.is-empty b,
.gm-quick-card.is-empty span {
    display: block;
}

.gm-quick-card.is-empty b {
    color: var(--gm-text);
    font: 700 12px/1.25 var(--gm-title);
}

.gm-quick-card.is-empty span {
    margin-top: 3px;
    font: 9px/1.4 var(--gm-mono);
}

.gm-quick-head {
    display: flex;
    align-items: center;
    gap: 10px;
}

.gm-quick-head > div {
    min-width: 0;
    flex: 1 1 auto;
}

.gm-quick-head small {
    display: block;
    color: var(--gm-accent);
    font: 8px/1.2 var(--gm-mono);
    letter-spacing: .8px;
    text-transform: uppercase;
}

.gm-quick-head h3 {
    margin: 4px 0 0 !important;
    overflow: hidden;
    color: var(--gm-text) !important;
    font: 700 14px/1.3 var(--gm-title) !important;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.gm-more-button {
    flex: 0 0 auto;
    min-height: 31px;
    padding: 0 9px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gm-muted);
    background: var(--gm-panel);
    border: 1px solid var(--gm-border);
    border-radius: 3px;
    font: 700 8px/1 var(--gm-mono);
    text-transform: uppercase;
    cursor: pointer;
}

.gm-more-button:hover,
.gm-more-button:focus-visible {
    color: #111;
    background: var(--gm-accent);
    border-color: var(--gm-accent);
    outline: none;
}

.gm-quick-danger,
.gm-quick-locked {
    margin: 9px 0 0;
    padding: 7px 8px;
    font: 9px/1.35 var(--gm-mono);
}

.gm-quick-danger {
    color: #dca6a2;
    background: rgba(163, 78, 72, .10);
    border-left: 2px solid var(--gm-danger);
}

.gm-quick-locked {
    color: #666;
    background: rgba(255, 255, 255, .018);
    border: 1px dashed var(--gm-border);
}

.gm-quick-votes {
    margin-top: 10px;
    display: flex;
    align-items: stretch;
    gap: 6px;
}

.gm-quick-vote {
    min-width: 43px;
    height: 38px;
    padding: 0 8px;
    color: #111;
    background: var(--gm-accent);
    border: 1px solid var(--gm-accent);
    border-radius: 3px;
    font: 800 12px/1 var(--gm-mono);
    cursor: pointer;
    transition: opacity .16s ease, background .16s ease, color .16s ease, border-color .16s ease;
}

.gm-quick-vote.is-negative {
    color: #f2dcda;
    background: rgba(171, 81, 74, .78);
    border-color: rgba(201, 133, 128, .68);
}

.gm-quick-vote:hover:not(:disabled),
.gm-quick-vote:focus-visible:not(:disabled),
.gm-quick-vote.is-selected {
    color: var(--gm-accent);
    background: transparent;
    border-color: var(--gm-accent);
    outline: none;
}

.gm-quick-vote.is-negative:hover:not(:disabled),
.gm-quick-vote.is-negative:focus-visible:not(:disabled),
.gm-quick-vote.is-negative.is-selected {
    color: #e2aaa6;
    border-color: var(--gm-danger);
}

.gm-quick-vote:disabled,
.gm-quick-vote.is-spent,
.gm-quick-vote.is-reserved {
    opacity: .2;
    filter: grayscale(1);
    cursor: not-allowed;
}

.gm-quick-vote.is-fixed-here {
    opacity: .38;
    filter: grayscale(.5);
}

.gm-bonus-control {
    min-width: 113px;
    margin-left: auto;
    display: grid;
    grid-template-columns: 28px minmax(46px, 1fr) 28px;
    align-items: stretch;
    border: 1px solid rgba(184, 135, 195, .28);
    border-radius: 3px;
    overflow: hidden;
}

.gm-bonus-control button {
    padding: 0;
    color: #b990c2;
    background: rgba(139, 91, 151, .08);
    border: 0;
    cursor: pointer;
}

.gm-bonus-control button:hover:not(:disabled),
.gm-bonus-control button:focus-visible:not(:disabled) {
    color: #111;
    background: #c8a4d0;
    outline: none;
}

.gm-bonus-control button:disabled {
    opacity: .2;
    cursor: not-allowed;
}

.gm-bonus-control span {
    display: grid;
    place-items: center;
    align-content: center;
    background: rgba(139, 91, 151, .12);
    border-right: 1px solid rgba(184, 135, 195, .2);
    border-left: 1px solid rgba(184, 135, 195, .2);
}

.gm-bonus-control small,
.gm-bonus-control b {
    display: block;
}

.gm-bonus-control small {
    color: #8c6d93;
    font: 6px/1 var(--gm-mono);
    letter-spacing: .4px;
    text-transform: uppercase;
}

.gm-bonus-control b {
    margin-top: 2px;
    color: #d7b8de;
    font: 800 10px/1 var(--gm-mono);
}

.gm-vote-draft {
    margin: 0 10px 9px;
    padding: 9px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 9px;
    background: rgba(234, 211, 162, .045);
    border: 1px dashed rgba(234, 211, 162, .24);
}

.gm-vote-draft-list {
    margin-top: 5px;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.gm-vote-draft-list > span {
    min-width: 0;
    max-width: 100%;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 6px;
    color: var(--gm-muted);
    background: rgba(0, 0, 0, .23);
    border: 1px solid rgba(255, 255, 255, .05);
    font: 8px/1.2 var(--gm-mono);
}

.gm-vote-draft-list > span b {
    color: var(--gm-accent);
}

.gm-vote-draft-list > span.is-bonus b {
    color: #c9a6d1;
}

.gm-vote-draft-list > span em {
    color: #4e4e4e;
    font-style: normal;
}

.gm-vote-draft-list > span span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.gm-vote-submit,
.gm-primary-button,
.gm-ghost-button,
.gm-link-button {
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border-radius: 3px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none !important;
}

.gm-vote-submit,
.gm-primary-button {
    min-height: 38px;
    padding: 0 13px;
    color: #111;
    background: var(--gm-accent);
    border: 1px solid var(--gm-accent);
    font: 800 9px/1 var(--gm-mono);
    letter-spacing: .3px;
    text-transform: uppercase;
}

.gm-vote-submit:hover:not(:disabled),
.gm-vote-submit:focus-visible:not(:disabled),
.gm-primary-button:hover:not(:disabled),
.gm-primary-button:focus-visible:not(:disabled) {
    background: var(--gm-accent-2);
    border-color: var(--gm-accent-2);
    outline: none;
}

.gm-vote-submit:disabled,
.gm-primary-button:disabled {
    opacity: .3;
    cursor: not-allowed;
}

.gm-vote-confirm {
    margin: 0 10px 9px;
    padding: 11px;
    background: rgba(0, 0, 0, .3);
    border: 1px solid rgba(234, 211, 162, .24);
}

.gm-vote-confirm p {
    margin: 0;
}

.gm-vote-confirm p b,
.gm-vote-confirm p span {
    display: block;
}

.gm-vote-confirm p b {
    color: var(--gm-text);
    font: 700 12px/1.3 var(--gm-title);
}

.gm-vote-confirm p span {
    margin-top: 4px;
    color: #6a6a6a;
    font: 9px/1.45 var(--gm-mono);
}

.gm-vote-confirm > div {
    margin-top: 10px;
    display: flex;
    justify-content: flex-end;
    gap: 7px;
}

.gm-ghost-button {
    min-height: 36px;
    padding: 0 11px;
    color: var(--gm-muted);
    background: rgba(255, 255, 255, .018);
    border: 1px solid var(--gm-border);
    font: 700 9px/1 var(--gm-mono);
}

.gm-ghost-button:hover,
.gm-ghost-button:focus-visible {
    color: var(--gm-accent);
    background: var(--gm-panel-2);
    border-color: rgba(234, 211, 162, .32);
    outline: none;
}

.gm-panel-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid rgba(255, 255, 255, .06);
    background: rgba(0, 0, 0, .26);
}

.gm-panel-actions button {
    min-height: 48px;
    padding: 0 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: var(--gm-muted);
    background: transparent;
    border: 0;
    border-right: 1px solid rgba(255, 255, 255, .06);
    font: 700 8px/1.2 var(--gm-mono);
    letter-spacing: .45px;
    text-transform: uppercase;
    cursor: pointer;
}

.gm-panel-actions button:last-child {
    border-right: 0;
}

.gm-panel-actions button i {
    color: var(--gm-accent);
}

.gm-panel-actions button:hover,
.gm-panel-actions button:focus-visible {
    color: #111;
    background: var(--gm-accent);
    outline: none;
}

.gm-panel-actions button:hover i,
.gm-panel-actions button:focus-visible i {
    color: #111;
}

/* -------------------------------------------------------------------------- */
/* Ventanas completas: detalle, propuesta y archivo                            */
/* -------------------------------------------------------------------------- */

.gm-dialog {
    position: fixed;
    z-index: 1600;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 20px;
    box-sizing: border-box;
    opacity: 0;
    transition: opacity .18s ease;
}

.gm-dialog.is-open {
    opacity: 1;
}

.gm-dialog-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .78);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.gm-dialog-window {
    position: relative;
    width: min(850px, 95vw);
    max-height: min(780px, 92vh);
    max-height: min(780px, 92dvh);
    display: grid;
    grid-template-rows: auto auto minmax(0, 1fr);
    overflow: hidden;
    isolation: isolate;
    color: var(--gm-muted);
    background: rgba(10, 10, 10, .95);
    border: 2px solid #000;
    box-shadow: 0 0 0 6px var(--gm-border), 0 28px 90px rgba(0, 0, 0, .82);
    transform: translateY(8px) scale(.99);
    transition: transform .18s ease;
}

.gm-dialog.is-open .gm-dialog-window {
    transform: translateY(0) scale(1);
}

.gm-dialog-window::after {
    content: "";
    position: absolute;
    z-index: 0;
    right: 12px;
    bottom: 12px;
    width: 50px;
    height: 50px;
    pointer-events: none;
    border-right: 1px solid var(--gm-accent);
    border-bottom: 1px solid var(--gm-accent);
    opacity: .38;
}

.gm-dialog-window > * {
    position: relative;
    z-index: 1;
}

.gm-dialog-header {
    min-height: 75px;
    padding: 13px 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(0, 0, 0, .36);
    border-bottom: 1px solid rgba(255, 255, 255, .075);
}

.gm-dialog-icon {
    flex: 0 0 auto;
    width: 39px;
    height: 39px;
    display: grid;
    place-items: center;
    color: var(--gm-accent);
    background: rgba(255, 255, 255, .018);
    border: 1px solid rgba(234, 211, 162, .25);
}

.gm-dialog-header > div {
    min-width: 0;
    flex: 1 1 auto;
}

.gm-dialog-header h2 {
    margin: 3px 0 0 !important;
    overflow: hidden;
    color: var(--gm-text) !important;
    font: 700 20px/1.25 var(--gm-title) !important;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.gm-dialog-body {
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 18px;
    box-sizing: border-box;
    scrollbar-width: thin;
    scrollbar-color: var(--gm-accent) #090909;
}

.gm-dialog-pane {
    min-height: 250px;
}

.gm-dialog-intro {
    margin: 0 0 16px;
    padding: 10px 12px;
    color: #777;
    background: rgba(255, 255, 255, .018);
    border-left: 2px solid rgba(234, 211, 162, .52);
    font: 10px/1.55 var(--gm-mono);
}

.gm-dialog-intro p {
    margin: 0;
}

.gm-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(260px, .85fr);
    gap: 20px;
}

.gm-detail-copy {
    min-width: 0;
}

.gm-detail-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.gm-detail-meta strong {
    color: #666;
    font: 700 9px/1.2 var(--gm-mono);
    text-transform: uppercase;
}

.gm-category {
    display: inline-flex;
    padding: 5px 7px;
    color: var(--gm-accent);
    background: rgba(234, 211, 162, .07);
    border: 1px solid rgba(234, 211, 162, .3);
    font: 700 8px/1 var(--gm-mono);
    letter-spacing: .7px;
    text-transform: uppercase;
}

.gm-category-secreto {
    color: #c5a1ce;
    background: rgba(152, 100, 164, .08);
    border-color: rgba(197, 161, 206, .35);
}

.gm-category-acontecimiento {
    color: #9db5ce;
    background: rgba(85, 113, 143, .09);
    border-color: rgba(157, 181, 206, .35);
}

.gm-detail-copy h3 {
    margin: 18px 0 11px !important;
    color: var(--gm-text) !important;
    font: 700 25px/1.25 var(--gm-title) !important;
}

.gm-description {
    color: #bbb7af;
    white-space: pre-line;
    font: 13px/1.72 var(--gm-body);
}

.gm-danger-note {
    margin: 17px 0;
    padding: 9px 11px;
    color: #dca6a2;
    background: rgba(163, 78, 72, .10);
    border-left: 3px solid var(--gm-danger);
    font: 10px/1.4 var(--gm-mono);
}

.gm-related {
    margin-top: 20px;
    padding-top: 14px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    border-top: 1px solid rgba(255, 255, 255, .065);
}

.gm-related b {
    width: 100%;
    color: #656565;
    font: 700 8px/1.2 var(--gm-mono);
    letter-spacing: .8px;
    text-transform: uppercase;
}

.gm-related span {
    padding: 5px 7px;
    color: var(--gm-text);
    background: rgba(255, 255, 255, .025);
    border: 1px solid rgba(255, 255, 255, .07);
    font-size: 11px;
}

.gm-related em {
    color: #606060;
}

.gm-detail-actions {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.gm-link-button {
    min-height: 37px;
    padding: 0 11px;
    color: var(--gm-accent) !important;
    background: rgba(234, 211, 162, .035);
    border: 1px solid rgba(234, 211, 162, .32);
    font: 700 9px/1 var(--gm-mono);
}

.gm-link-button:hover {
    color: #111 !important;
    background: var(--gm-accent);
    border-color: var(--gm-accent);
}

.gm-link-button.is-disabled {
    color: #555 !important;
    background: transparent;
    border-color: #292929;
    text-decoration: line-through !important;
    cursor: not-allowed;
}

.gm-detail-media {
    min-height: 330px;
    margin: 0;
    overflow: hidden;
    display: grid;
    place-items: center;
    background: #080808;
    border: 1px solid rgba(255, 255, 255, .075);
    box-shadow: 0 0 0 4px rgba(0, 0, 0, .25);
}

.gm-detail-media img {
    width: 100%;
    height: 100%;
    max-height: 520px;
    display: block;
    object-fit: cover;
}

.gm-detail-media.is-empty {
    align-content: center;
    gap: 9px;
    color: #545454;
    font: 9px/1.4 var(--gm-mono);
    text-align: center;
}

.gm-detail-media.is-empty i {
    color: var(--gm-accent);
    font-size: 28px;
}

/* Formularios */

.gm-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px;
}

.gm-form-grid label {
    display: grid;
    gap: 6px;
    color: #777;
    font: 700 9px/1.3 var(--gm-mono);
}

.gm-field-full {
    grid-column: 1 / -1;
}

.gm-form-grid input,
.gm-form-grid select,
.gm-form-grid textarea,
.gm-search-row input {
    width: 100%;
    box-sizing: border-box;
    padding: 9px 10px;
    color: var(--gm-text);
    background: #111;
    border: 1px solid var(--gm-border);
    border-radius: 2px;
    font: 12px/1.45 var(--gm-body);
    outline: none;
}

.gm-form-grid input:focus,
.gm-form-grid select:focus,
.gm-form-grid textarea:focus,
.gm-search-row input:focus {
    border-color: rgba(234, 211, 162, .5);
    box-shadow: 0 0 0 2px rgba(0, 0, 0, .5);
}

.gm-form-grid textarea {
    min-height: 130px;
    resize: vertical;
}

.gm-locked {
    padding: 18px;
    color: #6a6a6a;
    background: rgba(255, 255, 255, .018);
    border: 1px dashed var(--gm-border);
    font: 10px/1.5 var(--gm-mono);
    text-align: center;
}

/* Archivo */

.gm-search-row {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 7px;
    margin-bottom: 16px;
}

.gm-archive-list {
    display: grid;
    gap: 8px;
}

.gm-archive-item {
    padding: 13px;
    background: rgba(255, 255, 255, .018);
    border: 1px solid rgba(255, 255, 255, .06);
    border-left: 2px solid rgba(234, 211, 162, .35);
}

.gm-archive-item > div {
    display: flex;
    align-items: center;
    gap: 9px;
}

.gm-archive-item h4 {
    margin: 0 !important;
    color: var(--gm-text) !important;
    font: 700 15px/1.3 var(--gm-title) !important;
}

.gm-archive-item p {
    margin: 9px 0;
    color: #9a9791;
    white-space: pre-line;
    font: 12px/1.55 var(--gm-body);
}

.gm-archive-item small {
    color: #616161;
    font: 9px/1.4 var(--gm-mono);
}

.gm-pages {
    margin-top: 14px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
}

.gm-pages button {
    min-width: 31px;
    height: 31px;
    color: #777;
    background: #111;
    border: 1px solid var(--gm-border);
    cursor: pointer;
}

.gm-pages button:hover,
.gm-pages button.is-active {
    color: #111;
    background: var(--gm-accent);
    border-color: var(--gm-accent);
}

.gm-empty-state,
.gm-loading-inline {
    min-height: 210px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 8px;
    color: #626262;
    font: 10px/1.45 var(--gm-mono);
    text-align: center;
}

.gm-empty-state i,
.gm-loading-inline i {
    color: var(--gm-accent);
    font-size: 25px;
}

.gm-empty-state h3 {
    margin: 4px 0 0 !important;
    color: var(--gm-text) !important;
    font: 700 16px/1.3 var(--gm-title) !important;
}

.gm-empty-state p {
    margin: 0;
}

/* -------------------------------------------------------------------------- */
/* Responsive                                                                  */
/* -------------------------------------------------------------------------- */

@media (max-width: 720px) {
    .gm-side-panel {
        width: min(380px, calc(100vw - 76px));
    }

    .gm-compact-meter {
        height: 400px;
    }

    .gm-dialog {
        padding: 9px;
    }

    .gm-dialog-window {
        width: 100%;
        max-height: 96vh;
        max-height: 96dvh;
    }

    .gm-detail-grid {
        grid-template-columns: 1fr;
    }

    .gm-detail-media {
        min-height: 260px;
        order: -1;
    }
}

@media (max-width: 560px) {
    .gm-open.gm-floating {
        right: 10px;
        bottom: 10px;
    }

    .gm-open.gm-floating .gm-open-label {
        display: none;
    }

    .gm-side-panel {
        width: calc(100vw - 16px);
        max-height: calc(100dvh - 84px);
        transform-origin: bottom center;
    }

    .gm-wallet {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .gm-compact-meter {
        height: 390px;
    }

    .gm-rumor-marker {
        left: 45px;
        grid-template-columns: 15px 20px minmax(0, 1fr);
    }

    .gm-rumor-floating {
        padding-right: 6px;
    }

    .gm-rumor-floating strong {
        font-size: 10px;
    }

    .gm-rumor-badges em {
        min-width: 20px;
        padding: 0 2px;
    }

    .gm-quick-votes {
        flex-wrap: wrap;
    }

    .gm-bonus-control {
        width: 100%;
        margin-left: 0;
    }

    .gm-vote-draft {
        grid-template-columns: 1fr;
    }

    .gm-vote-submit {
        width: 100%;
    }

    .gm-panel-actions button span {
        display: none;
    }

    .gm-panel-actions button {
        font-size: 13px;
    }

    .gm-dialog-header h2 {
        font-size: 16px !important;
    }

    .gm-dialog-body {
        padding: 12px;
    }

    .gm-form-grid,
    .gm-search-row {
        grid-template-columns: 1fr;
    }

    .gm-field-full {
        grid-column: auto;
    }

    .gm-detail-copy h3 {
        font-size: 20px !important;
    }

    .gm-detail-meta {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-height: 760px) and (min-width: 561px) {
    .gm-compact-meter {
        height: 360px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .gm-side-panel,
    .gm-dialog,
    .gm-dialog-window,
    .gm-rumor-floating {
        transition: none !important;
        animation: none !important;
    }
}

/* -------------------------------------------------------------------------- */
/* GossipMeter 1.0.3: termómetro flotante, tendencias y panel adaptable       */
/* -------------------------------------------------------------------------- */

.gm-side-panel {
    width: min(445px, calc(100vw - 30px));
    display: flex;
    flex-direction: column;
    transition: width .2s ease, opacity .16s ease, transform .16s ease;
}

.gm-side-panel.has-selection {
    width: min(510px, calc(100vw - 30px));
}

.gm-panel-header,
.gm-panel-message,
.gm-panel-loading {
    flex: 0 0 auto;
}

.gm-panel-content {
    flex: 1 1 auto;
    min-height: 0;
    max-height: none;
}

.gm-meter-toolbar {
    min-height: 31px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.gm-meter-toolbar .gm-heat-label {
    justify-content: flex-start;
}

.gm-listen-toggle {
    min-height: 27px;
    padding: 0 8px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #777;
    background: rgba(255, 255, 255, .018);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 2px;
    font: 700 8px/1 var(--gm-mono);
    letter-spacing: .45px;
    text-transform: uppercase;
    cursor: pointer;
}

.gm-listen-toggle:hover,
.gm-listen-toggle:focus-visible,
.gm-listen-toggle[aria-pressed="true"] {
    color: #111;
    background: var(--gm-accent);
    border-color: var(--gm-accent);
    outline: none;
}

.gm-compact-meter {
    height: 450px;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 18%, rgba(181, 101, 74, .12), transparent 34%),
        radial-gradient(circle at 50% 82%, rgba(82, 108, 139, .11), transparent 36%),
        repeating-linear-gradient(0deg, transparent 0, transparent 43px, rgba(255, 255, 255, .011) 44px);
}

.gm-tube {
    left: 50%;
    width: 10px;
    transform: translateX(-50%);
}

.gm-level-line {
    left: 14px;
    right: 14px;
    border-top-color: rgba(255, 255, 255, .045);
}

.gm-level-line::after {
    content: "";
    position: absolute;
    left: calc(50% - 17px);
    top: -1px;
    width: 34px;
    border-top: 1px solid rgba(234, 211, 162, .23);
}

.gm-level-line span {
    left: calc(50% - 9px);
    top: -18px;
    width: 18px;
    color: #707070;
    background: rgba(7, 7, 7, .86);
    border: 1px solid rgba(255, 255, 255, .05);
    border-radius: 50%;
}

.gm-rumor-marker {
    right: auto;
    left: auto;
    width: calc(50% - 25px);
    min-height: 38px;
    display: grid;
    align-items: center;
    transform: translateY(-50%);
}

.gm-rumor-marker.is-left {
    right: calc(50% + 13px);
    grid-template-columns: minmax(0, 1fr) 22px 18px;
}

.gm-rumor-marker.is-right {
    left: calc(50% + 13px);
    grid-template-columns: 18px 22px minmax(0, 1fr);
}

.gm-rumor-marker.is-left .gm-rumor-connector {
    background: linear-gradient(90deg, rgba(234, 211, 162, .08), rgba(234, 211, 162, .56));
}

.gm-rumor-marker.is-left .gm-rumor-floating {
    margin: 0 5px 0 0;
    text-align: right;
    border-left: 1px solid rgba(255, 255, 255, .045);
    border-right: 2px solid rgba(234, 211, 162, .42);
}

.gm-rumor-marker.is-right .gm-rumor-floating {
    margin: 0 0 0 5px;
}

.gm-rumor-floating {
    position: relative;
    min-height: 34px;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 3px;
    animation: gm-whisper-orbit var(--gm-float-duration, 4.8s) ease-in-out var(--gm-float-delay, 0s) infinite;
    will-change: transform;
}

.gm-rumor-title-row {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.gm-rumor-marker.is-left .gm-rumor-title-row {
    flex-direction: row-reverse;
}

.gm-rumor-title-row strong {
    min-width: 0;
    flex: 1 1 auto;
    filter: blur(2.8px);
    opacity: .55;
    transition: filter .2s ease, opacity .2s ease;
}

.gm-rumor-marker:hover .gm-rumor-title-row strong,
.gm-rumor-marker:focus-visible .gm-rumor-title-row strong,
.gm-rumor-marker.is-selected .gm-rumor-title-row strong,
.gm-meter-section.is-listening .gm-rumor-title-row strong {
    filter: blur(0);
    opacity: 1;
}

.gm-meter-section.is-listening .gm-rumor-floating {
    border-color: rgba(234, 211, 162, .14);
}

.gm-trend {
    flex: 0 0 auto;
    font-size: 9px;
    filter: none !important;
    opacity: .95;
}

.gm-trend.is-up {
    color: #91b692;
}

.gm-trend.is-down {
    color: #c98580;
}

.gm-trend.is-stable {
    color: #777;
}

.gm-trend.is-new {
    color: var(--gm-accent);
    animation: gm-new-glint 2.4s ease-in-out infinite;
}

.gm-new-badge {
    align-self: flex-start;
    padding: 2px 4px;
    color: #111;
    background: var(--gm-accent);
    font: 800 6px/1 var(--gm-mono);
    letter-spacing: .55px;
    text-transform: uppercase;
}

.gm-rumor-marker.is-left .gm-new-badge {
    align-self: flex-end;
}

.gm-rumor-marker:hover .gm-trend,
.gm-rumor-marker:focus-visible .gm-trend,
.gm-rumor-marker.is-selected .gm-trend {
    color: #111;
}

.gm-rumor-badges {
    justify-content: flex-end;
}

.gm-rumor-marker.is-right .gm-rumor-badges {
    justify-content: flex-start;
}

.gm-rumor-marker:hover .gm-rumor-floating,
.gm-rumor-marker:focus-visible .gm-rumor-floating,
.gm-rumor-marker.is-selected .gm-rumor-floating {
    animation-play-state: paused;
}

.gm-meter-empty {
    inset: 0 34px;
}

@keyframes gm-whisper-orbit {
    0%, 100% { transform: translate3d(0, 0, 0); }
    24% { transform: translate3d(var(--gm-drift-x, 3px), calc(var(--gm-drift-y, 3px) * -1), 0); }
    52% { transform: translate3d(calc(var(--gm-drift-x, 3px) * -0.65), var(--gm-drift-y, 3px), 0); }
    76% { transform: translate3d(calc(var(--gm-drift-x, 3px) * .45), calc(var(--gm-drift-y, 3px) * .5), 0); }
}

@keyframes gm-new-glint {
    0%, 100% { opacity: .6; transform: scale(.92); }
    50% { opacity: 1; transform: scale(1.08); }
}

.gm-quick-card {
    animation: gm-card-reveal .2s ease both;
}

.gm-quick-title-line {
    display: flex;
    align-items: center;
    gap: 7px;
}

.gm-quick-title-line h3 {
    min-width: 0;
    flex: 1 1 auto;
}

.gm-quick-new {
    display: inline-block;
    margin-top: 4px;
    color: var(--gm-accent);
    font: 700 7px/1 var(--gm-mono);
    font-style: normal;
    letter-spacing: .7px;
    text-transform: uppercase;
}

@keyframes gm-card-reveal {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

.gm-detail-grid.has-no-media {
    grid-template-columns: minmax(0, 1fr);
}

.gm-detail-grid.has-no-media .gm-detail-copy {
    max-width: 820px;
    margin: 0 auto;
}

.gm-user-picker {
    position: relative;
    display: block;
}

.gm-user-suggestions {
    position: absolute;
    z-index: 20;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    max-height: 230px;
    overflow-y: auto;
    padding: 4px;
    background: rgba(7, 7, 7, .99);
    border: 1px solid rgba(234, 211, 162, .28);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .72);
}

.gm-user-suggestions button {
    width: 100%;
    min-height: 35px;
    padding: 0 9px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gm-text);
    text-align: left;
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .045);
    font: 11px/1.3 var(--gm-body);
    cursor: pointer;
}

.gm-user-suggestions button:last-child {
    border-bottom: 0;
}

.gm-user-suggestions button:hover,
.gm-user-suggestions button.is-active {
    color: #111;
    background: var(--gm-accent);
}

.gm-user-suggestions button:hover span,
.gm-user-suggestions button.is-active span {
    color: #111 !important;
}

.gm-field-help {
    color: #5f5f5f;
    font: 8px/1.4 var(--gm-mono);
}

@media (max-width: 720px) {
    .gm-side-panel,
    .gm-side-panel.has-selection {
        width: min(430px, calc(100vw - 76px));
    }

    .gm-compact-meter {
        height: 425px;
    }
}

@media (max-width: 560px) {
    .gm-side-panel,
    .gm-side-panel.has-selection {
        width: calc(100vw - 16px);
    }

    .gm-meter-toolbar {
        align-items: flex-start;
    }

    .gm-listen-toggle span {
        display: none;
    }

    .gm-rumor-marker {
        width: calc(50% - 19px);
    }

    .gm-rumor-marker.is-left {
        right: calc(50% + 10px);
        grid-template-columns: minmax(0, 1fr) 19px 12px;
    }

    .gm-rumor-marker.is-right {
        left: calc(50% + 10px);
        grid-template-columns: 12px 19px minmax(0, 1fr);
    }

    .gm-rumor-floating {
        padding: 5px;
    }

    .gm-rumor-title-row strong {
        font-size: 9px;
    }

    .gm-new-badge {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .gm-rumor-floating,
    .gm-trend.is-new,
    .gm-quick-card {
        animation: none !important;
    }
}

/* -------------------------------------------------------------------------- */
/* GossipMeter 1.0.4: susurros sin cajas y gestión desde el frontal           */
/* -------------------------------------------------------------------------- */

/* Se elimina el ángulo ornamental inferior que podía confundirse con un control. */
.gm-side-panel::after {
    display: none;
}

/* Cartera más compacta: votos, guardados y cierre en una sola franja. */
.gm-wallet {
    min-height: 42px;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 8px;
    padding: 6px 10px;
}

.gm-wallet > div:first-child {
    display: flex;
    align-items: center;
    gap: 8px;
}

.gm-wallet > div:first-child > small {
    flex: 0 0 auto;
    color: #686868;
    white-space: nowrap;
}

.gm-regular-wallet {
    margin-top: 0;
    gap: 4px;
}

.gm-vote-chip {
    min-width: 27px;
    height: 21px;
    font-size: 9px;
}

.gm-saved-wallet {
    min-width: 52px;
    flex-direction: row;
    align-items: center;
    gap: 5px;
}

.gm-saved-wallet small {
    display: none;
}

.gm-saved-wallet strong {
    margin-top: 0;
}

.gm-countdown {
    grid-column: auto;
    max-width: 86px;
    text-align: right;
    white-space: nowrap;
}

/* Etiqueta superior centrada y escucha reducida a un icono. */
.gm-meter-toolbar {
    position: relative;
    justify-content: center;
    min-height: 34px;
}

.gm-meter-toolbar .gm-heat-label {
    justify-content: center;
    text-align: center;
}

.gm-listen-toggle {
    position: absolute;
    z-index: 8;
    top: 2px;
    right: 0;
    width: 29px;
    min-width: 29px;
    height: 29px;
    min-height: 29px;
    padding: 0;
    justify-content: center;
    border-radius: 3px;
}

.gm-listen-toggle span {
    position: absolute;
    z-index: 20;
    right: 0;
    top: calc(100% + 7px);
    width: max-content;
    max-width: 190px;
    padding: 6px 8px;
    color: var(--gm-text);
    background: rgba(7, 7, 7, .98);
    border: 1px solid var(--gm-border);
    border-top-color: var(--gm-accent);
    box-shadow: 0 7px 18px rgba(0, 0, 0, .58);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    font: 700 8px/1.25 var(--gm-mono);
    letter-spacing: .45px;
    text-transform: uppercase;
    transform: translateY(-3px);
    transition: opacity .15s ease, visibility .15s ease, transform .15s ease;
}

.gm-listen-toggle:hover span,
.gm-listen-toggle:focus-visible span {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Los niveles conservan sus guías, pero no muestran números. */
.gm-level-line span {
    display: none !important;
}

.gm-level-line {
    border-top-color: rgba(255, 255, 255, .035);
}

.gm-level-line::after {
    width: 26px;
    left: calc(50% - 13px);
    border-top-color: rgba(234, 211, 162, .17);
}

/* El título es el elemento visual: sin tarjeta, círculo ni bloque opaco. */
.gm-rumor-marker {
    width: calc(50% - 20px);
    min-height: 34px;
    overflow: visible;
    transition: width .18s ease, z-index 0s;
}

.gm-rumor-marker.is-left {
    right: calc(50% + 10px);
    grid-template-columns: minmax(0, 1fr) 15px;
}

.gm-rumor-marker.is-right {
    left: calc(50% + 10px);
    grid-template-columns: 15px minmax(0, 1fr);
}

.gm-rumor-level {
    display: none !important;
}

.gm-rumor-connector {
    opacity: .62;
}

.gm-rumor-marker.is-left .gm-rumor-floating,
.gm-rumor-marker.is-right .gm-rumor-floating,
.gm-rumor-floating {
    min-height: 26px;
    margin: 0;
    padding: 2px 4px;
    overflow: visible;
    color: var(--gm-text);
    background: transparent;
    border: 0;
    box-shadow: none;
    transition: color .18s ease, margin .18s ease, width .18s ease, transform .18s ease;
}

.gm-rumor-marker.is-left .gm-rumor-floating {
    text-align: right;
}

.gm-rumor-title-row {
    width: 100%;
    overflow: visible;
}

.gm-rumor-title-row strong {
    max-width: 100%;
    overflow: hidden;
    color: var(--gm-text);
    font-size: 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-shadow: 0 2px 7px rgba(0, 0, 0, .9);
    transition: filter .2s ease, opacity .2s ease, color .18s ease, font-size .18s ease, max-width .18s ease;
}

.gm-rumor-marker:hover,
.gm-rumor-marker:focus-visible,
.gm-rumor-marker.is-selected {
    z-index: 30;
    width: calc(64% - 12px);
}

.gm-rumor-marker.is-left:hover,
.gm-rumor-marker.is-left:focus-visible,
.gm-rumor-marker.is-left.is-selected {
    right: calc(50% - 22px);
}

.gm-rumor-marker.is-right:hover,
.gm-rumor-marker.is-right:focus-visible,
.gm-rumor-marker.is-right.is-selected {
    left: calc(50% - 22px);
}

.gm-rumor-marker:hover .gm-rumor-floating,
.gm-rumor-marker:focus-visible .gm-rumor-floating,
.gm-rumor-marker.is-selected .gm-rumor-floating {
    color: var(--gm-accent-2);
    background: transparent;
    border: 0;
    box-shadow: none;
    animation-play-state: paused;
}

.gm-rumor-marker:hover .gm-rumor-title-row strong,
.gm-rumor-marker:focus-visible .gm-rumor-title-row strong,
.gm-rumor-marker.is-selected .gm-rumor-title-row strong {
    max-width: none;
    overflow: visible;
    color: var(--gm-accent-2);
    font-size: 11px;
    text-overflow: clip;
    white-space: normal;
    text-shadow: 0 0 12px rgba(234, 211, 162, .18), 0 3px 8px #000;
}

/* Tendencia y novedad solo se descubren al acercarse al susurro. */
.gm-trend,
.gm-new-badge {
    opacity: 0;
    visibility: hidden;
    transform: scale(.82);
    transition: opacity .16s ease, visibility .16s ease, transform .16s ease;
}

.gm-rumor-marker:hover .gm-trend,
.gm-rumor-marker:focus-visible .gm-trend,
.gm-rumor-marker.is-selected .gm-trend,
.gm-rumor-marker:hover .gm-new-badge,
.gm-rumor-marker:focus-visible .gm-new-badge,
.gm-rumor-marker.is-selected .gm-new-badge {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.gm-new-badge {
    padding: 0;
    color: var(--gm-accent);
    background: transparent;
    font-size: 6px;
}

.gm-rumor-marker.is-danger .gm-rumor-floating,
.gm-rumor-marker.is-danger:not(.is-selected) .gm-rumor-floating {
    border: 0;
}

/* Tres accesos inferiores cuando existe un grupo gestor. */
.gm-panel-actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gm-panel-actions button {
    position: relative;
}

.gm-panel-actions button[hidden] {
    display: none !important;
}

#gm-manage-count {
    position: absolute;
    top: 5px;
    right: 7px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    display: grid;
    place-items: center;
    color: #111;
    background: var(--gm-accent);
    border-radius: 99px;
    font: 800 7px/1 var(--gm-mono);
}

.gm-spread-by {
    margin: 13px 0 0;
    padding: 8px 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #777;
    background: rgba(255, 255, 255, .014);
    border-left: 2px solid rgba(234, 211, 162, .34);
    font: 9px/1.45 var(--gm-mono);
}

.gm-spread-by i {
    color: var(--gm-accent);
}

/* Gestión frontal de propuestas. */
.gm-manage-intro {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

#gm-manage-capacity {
    flex: 0 0 auto;
    padding: 5px 7px;
    color: var(--gm-accent);
    border: 1px solid rgba(234, 211, 162, .22);
    font: 700 8px/1 var(--gm-mono);
    text-transform: uppercase;
}

.gm-manage-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gm-manage-item {
    padding: 14px;
    background: rgba(255, 255, 255, .014);
    border: 1px solid rgba(255, 255, 255, .06);
    box-shadow: inset 2px 0 0 rgba(234, 211, 162, .35);
}

.gm-manage-item header {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 7px 10px;
}

.gm-manage-item header small {
    color: #676767;
    font: 8px/1.2 var(--gm-mono);
    text-align: right;
    text-transform: uppercase;
}

.gm-manage-item header h3 {
    grid-column: 1 / -1;
    margin: 2px 0 0;
    color: var(--gm-text);
    font: 700 17px/1.3 var(--gm-title);
}

.gm-manage-description {
    margin: 10px 0;
    color: #929292;
    font: 12px/1.6 var(--gm-body);
    white-space: pre-line;
}

.gm-manage-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
}

.gm-manage-facts span {
    padding: 8px;
    background: rgba(0, 0, 0, .2);
    border: 1px solid rgba(255, 255, 255, .045);
}

.gm-manage-facts b,
.gm-manage-facts em {
    display: block;
}

.gm-manage-facts b {
    color: #666;
    font: 7px/1.2 var(--gm-mono);
    text-transform: uppercase;
}

.gm-manage-facts em {
    margin-top: 4px;
    color: var(--gm-text);
    font: 10px/1.35 var(--gm-body);
    font-style: normal;
}

.gm-manage-links {
    margin-top: 8px;
    display: flex;
    gap: 7px;
}

.gm-manage-controls,
.gm-manage-reject {
    margin-top: 10px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 8px;
}

.gm-manage-controls label {
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: #666;
    font: 8px/1.2 var(--gm-mono);
    text-transform: uppercase;
}

.gm-manage-controls select,
.gm-manage-reject input {
    min-height: 36px;
    box-sizing: border-box;
    color: var(--gm-text);
    background: var(--gm-panel);
    border: 1px solid var(--gm-border);
}

.gm-manage-controls select {
    width: 100%;
    padding: 0 9px;
}

.gm-manage-reject input {
    width: 100%;
    padding: 0 10px;
}

@media (max-width: 560px) {
    .gm-wallet > div:first-child > small,
    .gm-countdown {
        display: none;
    }

    .gm-wallet {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .gm-rumor-marker,
    .gm-rumor-marker:hover,
    .gm-rumor-marker:focus-visible,
    .gm-rumor-marker.is-selected {
        width: calc(68% - 12px);
    }

    .gm-rumor-marker.is-left,
    .gm-rumor-marker.is-left:hover,
    .gm-rumor-marker.is-left:focus-visible,
    .gm-rumor-marker.is-left.is-selected {
        right: calc(50% - 18px);
    }

    .gm-rumor-marker.is-right,
    .gm-rumor-marker.is-right:hover,
    .gm-rumor-marker.is-right:focus-visible,
    .gm-rumor-marker.is-right.is-selected {
        left: calc(50% - 18px);
    }

    .gm-panel-actions button span {
        display: none;
    }

    .gm-manage-intro,
    .gm-manage-controls,
    .gm-manage-reject {
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .gm-manage-intro {
        display: grid;
    }

    .gm-manage-facts {
        grid-template-columns: 1fr;
    }
}

/* Ajustes finales de la franja de acciones y colores de tendencia. */
.gm-panel-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gm-panel-actions.has-manage {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gm-rumor-marker:hover .gm-trend.is-up,
.gm-rumor-marker:focus-visible .gm-trend.is-up,
.gm-rumor-marker.is-selected .gm-trend.is-up {
    color: var(--gm-success);
}

.gm-rumor-marker:hover .gm-trend.is-down,
.gm-rumor-marker:focus-visible .gm-trend.is-down,
.gm-rumor-marker.is-selected .gm-trend.is-down {
    color: var(--gm-danger);
}

.gm-rumor-marker:hover .gm-trend.is-stable,
.gm-rumor-marker:focus-visible .gm-trend.is-stable,
.gm-rumor-marker.is-selected .gm-trend.is-stable {
    color: #929292;
}

.gm-rumor-marker.is-left {
    transition: width .18s ease, right .18s ease;
}

.gm-rumor-marker.is-right {
    transition: width .18s ease, left .18s ease;
}

/* Autoría conservada también en el archivo histórico. */
.gm-archive-spread {
    display: block;
    margin-top: 8px;
    color: #737373;
    font: 8px/1.4 var(--gm-mono);
    letter-spacing: .25px;
    text-transform: uppercase;
}

/* -------------------------------------------------------------------------- */
/* GossipMeter 1.0.5: confirmación visible, escala térmica y limpieza visual  */
/* -------------------------------------------------------------------------- */

/* Los ornamentos geométricos no forman parte del contenido ni de los controles. */
.gm-side-panel::before,
.gm-side-panel::after,
.gm-dialog-window::after {
    content: none !important;
    display: none !important;
}

/* La confirmación siempre forma una pieza completa y legible dentro del scroll. */
.gm-vote-confirm:not([hidden]) {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
}

.gm-vote-confirm > div {
    margin-top: 0;
    flex-wrap: wrap;
}

/* Escala térmica: el punto máximo está arriba y ya no existe una bombilla inferior. */
.gm-tube {
    top: 31px;
    bottom: 18px;
    width: 8px;
    background: rgba(5, 5, 5, .78);
    border-color: rgba(255, 255, 255, .12);
    box-shadow:
        0 0 0 3px rgba(0, 0, 0, .30),
        inset 0 0 6px rgba(255, 255, 255, .035);
}

.gm-tube::after {
    content: "";
    position: absolute;
    left: 50%;
    top: -17px;
    bottom: auto;
    width: 23px;
    height: 23px;
    box-sizing: border-box;
    border-radius: 50%;
    background:
        radial-gradient(circle at 38% 32%, #ffd2b2 0 6%, #e28361 18%, #a44539 58%, #542421 100%);
    border: 1px solid rgba(255, 225, 204, .38);
    box-shadow:
        0 0 13px rgba(210, 92, 65, .38),
        0 0 0 4px rgba(0, 0, 0, .32),
        inset -3px -4px 7px rgba(0, 0, 0, .28);
    transform: translateX(-50%);
}

.gm-mercury {
    inset: 2px;
    background: linear-gradient(
        180deg,
        #dc7258 0%,
        #c58460 12%,
        #a99a78 26%,
        #777b79 52%,
        #536a7b 76%,
        #354a5e 100%
    );
    box-shadow:
        0 0 8px rgba(213, 113, 83, .13),
        inset 1px 0 rgba(255, 255, 255, .13);
}

.gm-compact-meter {
    background:
        radial-gradient(circle at 50% 8%, rgba(198, 91, 65, .12), transparent 21%),
        radial-gradient(circle at 50% 91%, rgba(72, 101, 126, .10), transparent 25%),
        repeating-linear-gradient(0deg, transparent 0, transparent 43px, rgba(255, 255, 255, .009) 44px);
}

.gm-level-line::after {
    width: 22px;
    left: calc(50% - 11px);
    border-top-color: rgba(234, 211, 162, .13);
}

/* Al escuchar un título aparece un halo oscuro, no una tarjeta rectangular. */
.gm-rumor-marker:hover .gm-rumor-floating,
.gm-rumor-marker:focus-visible .gm-rumor-floating,
.gm-rumor-marker.is-selected .gm-rumor-floating {
    padding: 6px 13px;
    color: var(--gm-accent-2);
    background: radial-gradient(ellipse at center, rgba(4, 4, 4, .96) 0%, rgba(5, 5, 5, .86) 58%, rgba(5, 5, 5, .18) 82%, transparent 100%);
    border: 0;
    border-radius: 999px;
    box-shadow: 0 0 17px 6px rgba(0, 0, 0, .58);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.gm-rumor-marker:hover .gm-rumor-title-row strong,
.gm-rumor-marker:focus-visible .gm-rumor-title-row strong,
.gm-rumor-marker.is-selected .gm-rumor-title-row strong {
    text-shadow: 0 2px 4px #000, 0 0 9px #000, 0 0 16px rgba(0, 0, 0, .95);
}

/* Sin imagen, el texto utiliza de verdad todo el ancho de la ventana. */
.gm-detail-grid.has-no-media {
    width: 100%;
    grid-template-columns: minmax(0, 1fr);
}

.gm-detail-grid.has-no-media .gm-detail-copy {
    width: 100%;
    max-width: none;
    margin: 0;
}

@media (max-width: 560px) {
    .gm-vote-confirm:not([hidden]) {
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .gm-vote-confirm > div {
        justify-content: stretch;
    }

    .gm-vote-confirm > div > button {
        flex: 1 1 auto;
    }
}



/* -------------------------------------------------------------------------- */
/* GossipMeter 1.0.6: títulos estables, tendencia contenida y escala simbólica */
/* -------------------------------------------------------------------------- */

/* Seleccionar un rumor ya no modifica el ancho del panel. */
.gm-side-panel,
.gm-side-panel.has-selection {
    width: min(445px, calc(100vw - 30px));
}

/* La barra superior solo reserva el pequeño control de escucha. */
.gm-meter-toolbar {
    min-height: 31px;
    justify-content: flex-end;
}

/* Escala central: una línea térmica sin bombillas ni puntos terminales. */
.gm-compact-meter {
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 9%, rgba(184, 91, 61, .09), transparent 19%),
        radial-gradient(circle at 50% 92%, rgba(76, 108, 144, .09), transparent 21%),
        repeating-linear-gradient(0deg, transparent 0, transparent 43px, rgba(255, 255, 255, .009) 44px);
}

.gm-tube {
    top: 43px;
    bottom: 43px;
    width: 4px;
    background: rgba(0, 0, 0, .72);
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 99px;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, .22), inset 0 0 4px rgba(255, 255, 255, .05);
}

.gm-tube::before,
.gm-tube::after {
    content: none !important;
    display: none !important;
}

.gm-mercury {
    inset: 1px;
    border-radius: inherit;
    background: linear-gradient(
        180deg,
        rgba(203, 91, 63, .92) 0%,
        rgba(181, 118, 76, .76) 20%,
        rgba(137, 124, 100, .58) 42%,
        rgba(90, 102, 111, .58) 64%,
        rgba(64, 91, 123, .82) 100%
    );
    box-shadow: 0 0 7px rgba(185, 102, 69, .12);
}

/* La llama y el copo sustituyen a los textos visibles de los extremos. */
.gm-scale-end {
    position: absolute;
    z-index: 12;
    left: 50%;
    width: 32px;
    height: 32px;
    margin: 0;
    padding: 0;
    display: grid;
    place-items: center;
    overflow: visible;
    border: 0;
    border-radius: 50%;
    background: rgba(5, 5, 5, .72);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, .23);
    transform: translateX(-50%);
    cursor: help;
    outline: none;
}

.gm-scale-end-hot {
    top: 8px;
    color: #c87555;
}

.gm-scale-end-cold {
    bottom: 8px;
    color: #718da9;
}

.gm-scale-end > i {
    font-size: 16px;
    text-shadow: 0 0 10px currentColor;
}

.gm-scale-end > span {
    position: absolute;
    z-index: 25;
    left: 50%;
    min-width: max-content;
    padding: 6px 8px;
    color: var(--gm-text);
    background: rgba(5, 5, 5, .97);
    border: 1px solid rgba(255, 255, 255, .08);
    border-left-color: currentColor;
    border-radius: 2px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .62);
    font: 700 8px/1 var(--gm-mono);
    letter-spacing: .65px;
    text-transform: uppercase;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-50%);
    transition: opacity .15s ease, visibility .15s ease;
}

.gm-scale-end-hot > span {
    top: calc(100% + 6px);
}

.gm-scale-end-cold > span {
    bottom: calc(100% + 6px);
}

.gm-scale-end:hover > span,
.gm-scale-end:focus-visible > span {
    opacity: 1;
    visibility: visible;
}

/* Los marcadores no cambian de tamaño ni se desplazan al interactuar. */
.gm-rumor-marker,
.gm-rumor-marker:hover,
.gm-rumor-marker:focus-visible,
.gm-rumor-marker.is-selected {
    width: calc(50% - 25px);
}

.gm-rumor-marker.is-left,
.gm-rumor-marker.is-left:hover,
.gm-rumor-marker.is-left:focus-visible,
.gm-rumor-marker.is-left.is-selected {
    right: calc(50% + 13px);
}

.gm-rumor-marker.is-right,
.gm-rumor-marker.is-right:hover,
.gm-rumor-marker.is-right:focus-visible,
.gm-rumor-marker.is-right.is-selected {
    left: calc(50% + 13px);
}

.gm-rumor-floating {
    min-width: 0;
    width: 100%;
    overflow: visible;
}

.gm-rumor-marker.is-left .gm-rumor-floating {
    justify-self: end;
}

.gm-rumor-marker.is-right .gm-rumor-floating {
    justify-self: start;
}

/* Una sola línea con elipsis en reposo. La tendencia queda siempre dentro. */
.gm-rumor-title-row {
    position: relative;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    display: flex;
    align-items: center;
    gap: 6px;
    overflow: hidden;
    white-space: nowrap;
}

.gm-rumor-marker.is-left .gm-rumor-title-row {
    flex-direction: row;
    justify-content: flex-end;
}

.gm-rumor-marker.is-right .gm-rumor-title-row {
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.gm-rumor-title-row strong {
    min-width: 0;
    max-width: 100%;
    flex: 1 1 auto;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 10px;
}

.gm-trend {
    position: static;
    flex: 0 0 auto;
    width: 11px;
    margin: 0;
    text-align: center;
}

/* Al acercarse, aparece el título completo en una capa oscura sin mover el marcador. */
.gm-rumor-marker:hover .gm-rumor-floating,
.gm-rumor-marker:focus-visible .gm-rumor-floating,
.gm-rumor-marker.is-selected .gm-rumor-floating {
    position: absolute;
    z-index: 40;
    top: 50%;
    width: calc(200% + 50px);
    max-width: calc(200% + 50px);
    min-height: 34px;
    box-sizing: border-box;
    padding: 7px 13px;
    display: flex;
    justify-content: center;
    color: var(--gm-accent-2);
    background: linear-gradient(90deg, rgba(4, 4, 4, .96), rgba(5, 5, 5, .88) 72%, rgba(5, 5, 5, .38));
    border: 1px solid rgba(255, 255, 255, .055);
    border-radius: 3px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .72), 0 0 13px rgba(0, 0, 0, .66);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    animation-play-state: paused;
    transform: translateY(-50%);
}

.gm-rumor-marker.is-left:hover .gm-rumor-floating,
.gm-rumor-marker.is-left:focus-visible .gm-rumor-floating,
.gm-rumor-marker.is-left.is-selected .gm-rumor-floating {
    left: 0;
    right: auto;
    background: linear-gradient(90deg, rgba(4, 4, 4, .42), rgba(5, 5, 5, .90) 28%, rgba(4, 4, 4, .97));
}

.gm-rumor-marker.is-right:hover .gm-rumor-floating,
.gm-rumor-marker.is-right:focus-visible .gm-rumor-floating,
.gm-rumor-marker.is-right.is-selected .gm-rumor-floating {
    right: 0;
    left: auto;
}

.gm-rumor-marker:hover .gm-rumor-title-row,
.gm-rumor-marker:focus-visible .gm-rumor-title-row,
.gm-rumor-marker.is-selected .gm-rumor-title-row {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.gm-rumor-marker:hover .gm-rumor-title-row strong,
.gm-rumor-marker:focus-visible .gm-rumor-title-row strong,
.gm-rumor-marker.is-selected .gm-rumor-title-row strong {
    max-width: none;
    overflow: hidden;
    color: var(--gm-accent-2);
    font-size: 10px;
    text-overflow: clip;
    white-space: nowrap;
}

/* El icono de tendencia y la novedad se revelan sin abandonar el recuadro. */
.gm-rumor-marker:hover .gm-trend,
.gm-rumor-marker:focus-visible .gm-trend,
.gm-rumor-marker.is-selected .gm-trend,
.gm-rumor-marker:hover .gm-new-badge,
.gm-rumor-marker:focus-visible .gm-new-badge,
.gm-rumor-marker.is-selected .gm-new-badge {
    opacity: 1;
    visibility: visible;
    transform: none;
}

@media (max-width: 720px) {
    .gm-side-panel,
    .gm-side-panel.has-selection {
        width: min(430px, calc(100vw - 76px));
    }
}

@media (max-width: 560px) {
    .gm-side-panel,
    .gm-side-panel.has-selection {
        width: calc(100vw - 16px);
    }

    .gm-rumor-marker,
    .gm-rumor-marker:hover,
    .gm-rumor-marker:focus-visible,
    .gm-rumor-marker.is-selected {
        width: calc(50% - 19px);
    }

    .gm-rumor-marker.is-left,
    .gm-rumor-marker.is-left:hover,
    .gm-rumor-marker.is-left:focus-visible,
    .gm-rumor-marker.is-left.is-selected {
        right: calc(50% + 10px);
    }

    .gm-rumor-marker.is-right,
    .gm-rumor-marker.is-right:hover,
    .gm-rumor-marker.is-right:focus-visible,
    .gm-rumor-marker.is-right.is-selected {
        left: calc(50% + 10px);
    }

    .gm-rumor-marker:hover .gm-rumor-floating,
    .gm-rumor-marker:focus-visible .gm-rumor-floating,
    .gm-rumor-marker.is-selected .gm-rumor-floating {
        width: calc(200% + 38px);
        max-width: calc(200% + 38px);
    }
}

/* El título completo conserva su flecha pegada al texto, no al borde del panel. */
.gm-rumor-marker.is-left:hover .gm-rumor-floating,
.gm-rumor-marker.is-left:focus-visible .gm-rumor-floating,
.gm-rumor-marker.is-left.is-selected .gm-rumor-floating {
    align-items: flex-end;
}

.gm-rumor-marker.is-right:hover .gm-rumor-floating,
.gm-rumor-marker.is-right:focus-visible .gm-rumor-floating,
.gm-rumor-marker.is-right.is-selected .gm-rumor-floating {
    align-items: flex-start;
}

.gm-rumor-marker:hover .gm-rumor-title-row,
.gm-rumor-marker:focus-visible .gm-rumor-title-row,
.gm-rumor-marker.is-selected .gm-rumor-title-row {
    width: max-content;
    max-width: 100%;
}

.gm-rumor-marker:hover .gm-rumor-title-row strong,
.gm-rumor-marker:focus-visible .gm-rumor-title-row strong,
.gm-rumor-marker.is-selected .gm-rumor-title-row strong {
    flex: 0 1 auto;
    max-width: calc(100% - 17px);
}

/* -------------------------------------------------------------------------- */
/* GossipMeter 1.0.7: aviso de novedad, escucha compacta y hover estable       */
/* -------------------------------------------------------------------------- */

/* El acceso lateral ya no muestra una cantidad: solo un punto de novedad. */
.gm-open-unread {
    position: absolute;
    z-index: 4;
    top: 6px;
    right: 6px;
    width: 8px;
    height: 8px;
    box-sizing: border-box;
    border: 2px solid #070707;
    border-radius: 50%;
    background: var(--gm-accent);
    box-shadow: 0 0 0 1px rgba(234, 211, 162, .18);
    pointer-events: none;
    animation: gm-unread-pulse 1.9s ease-in-out infinite;
}

.gm-open-unread[hidden] {
    display: none !important;
}

.gm-open:hover .gm-open-unread,
.gm-open:focus-visible .gm-open-unread,
.gm-open[aria-expanded="true"] .gm-open-unread {
    border-color: var(--gm-accent);
    background: #111;
}

@keyframes gm-unread-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .42; }
}

/* El control de escucha comparte la misma franja que los votos. */
.gm-wallet {
    grid-template-columns: minmax(0, 1fr) auto auto 29px;
}

.gm-wallet .gm-listen-toggle {
    position: relative;
    z-index: 8;
    top: auto;
    right: auto;
    align-self: center;
    justify-self: end;
    width: 29px;
    min-width: 29px;
    height: 29px;
    min-height: 29px;
    margin: 0;
    padding: 0;
}

.gm-wallet .gm-listen-toggle span {
    top: calc(100% + 7px);
    right: 0;
}

/* No queda una fila vacía encima del termómetro. */
.gm-meter-toolbar {
    display: none !important;
}

/* El marcador y su punto de anclaje nunca cambian al interactuar. */
.gm-rumor-marker,
.gm-rumor-marker:hover,
.gm-rumor-marker:focus-visible,
.gm-rumor-marker.is-selected {
    width: calc(50% - 25px) !important;
}

.gm-rumor-marker.is-left,
.gm-rumor-marker.is-left:hover,
.gm-rumor-marker.is-left:focus-visible,
.gm-rumor-marker.is-left.is-selected {
    right: calc(50% + 13px) !important;
    left: auto !important;
}

.gm-rumor-marker.is-right,
.gm-rumor-marker.is-right:hover,
.gm-rumor-marker.is-right:focus-visible,
.gm-rumor-marker.is-right.is-selected {
    left: calc(50% + 13px) !important;
    right: auto !important;
}

.gm-rumor-floating,
.gm-rumor-marker:hover .gm-rumor-floating,
.gm-rumor-marker:focus-visible .gm-rumor-floating,
.gm-rumor-marker.is-selected .gm-rumor-floating {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 26px;
    padding: 2px 4px;
    justify-content: center;
    align-items: stretch !important;
    overflow: visible;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transform: none;
}

.gm-rumor-marker:hover .gm-rumor-floating,
.gm-rumor-marker:focus-visible .gm-rumor-floating,
.gm-rumor-marker.is-selected .gm-rumor-floating {
    animation-play-state: paused;
}

.gm-rumor-title-row,
.gm-rumor-marker:hover .gm-rumor-title-row,
.gm-rumor-marker:focus-visible .gm-rumor-title-row,
.gm-rumor-marker.is-selected .gm-rumor-title-row {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: visible;
    flex-direction: row !important;
}

.gm-rumor-marker.is-left .gm-rumor-title-row {
    justify-content: flex-end;
}

.gm-rumor-marker.is-right .gm-rumor-title-row {
    justify-content: flex-start;
}

.gm-rumor-marker.is-left .gm-rumor-title-row strong {
    text-align: right;
}

.gm-rumor-marker.is-right .gm-rumor-title-row strong {
    text-align: left;
}

/* En reposo: una línea con elipsis. Al acercarse: se despliega desde el mismo anclaje. */
.gm-rumor-title-row strong {
    min-width: 0;
    max-width: calc(100% - 17px);
    flex: 1 1 auto;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.gm-rumor-marker:hover .gm-rumor-title-row strong,
.gm-rumor-marker:focus-visible .gm-rumor-title-row strong,
.gm-rumor-marker.is-selected .gm-rumor-title-row strong {
    position: relative;
    z-index: 2;
    width: max-content;
    max-width: none;
    flex: 0 0 auto;
    overflow: visible;
    white-space: nowrap;
    text-overflow: clip;
    padding: 4px 7px;
    color: var(--gm-accent-2);
    background: rgba(4, 4, 4, .90);
    border-radius: 2px;
    box-shadow: 0 0 9px 5px rgba(0, 0, 0, .62);
}

.gm-trend {
    flex: 0 0 11px;
}

@media (max-width: 560px) {
    .gm-wallet {
        grid-template-columns: minmax(0, 1fr) auto 29px;
    }

    .gm-countdown {
        display: none;
    }

    .gm-rumor-marker,
    .gm-rumor-marker:hover,
    .gm-rumor-marker:focus-visible,
    .gm-rumor-marker.is-selected {
        width: calc(50% - 19px) !important;
    }

    .gm-rumor-marker.is-left,
    .gm-rumor-marker.is-left:hover,
    .gm-rumor-marker.is-left:focus-visible,
    .gm-rumor-marker.is-left.is-selected {
        right: calc(50% + 10px) !important;
    }

    .gm-rumor-marker.is-right,
    .gm-rumor-marker.is-right:hover,
    .gm-rumor-marker.is-right:focus-visible,
    .gm-rumor-marker.is-right.is-selected {
        left: calc(50% + 10px) !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .gm-open-unread {
        animation: none;
    }
}

/* El ajuste fino solo mueve la capa de lectura, nunca el marcador completo. */
.gm-rumor-marker:hover .gm-rumor-title-row strong,
.gm-rumor-marker:focus-visible .gm-rumor-title-row strong,
.gm-rumor-marker.is-selected .gm-rumor-title-row strong {
    transform: translateX(var(--gm-title-shift, 0px));
}

/* -------------------------------------------------------------------------- */
/* GossipMeter 1.0.8: cartera sin huecos y novedad integrada                  */
/* -------------------------------------------------------------------------- */

/* La franja usa flex para que los elementos ocultos no dejen columnas vacías. */
.gm-wallet {
    display: flex;
    grid-template-columns: none;
    align-items: center;
    gap: 7px;
}

.gm-wallet > div:first-child {
    min-width: 0;
    flex: 1 1 auto;
}

.gm-wallet .gm-saved-wallet,
.gm-wallet .gm-countdown,
.gm-wallet .gm-wallet-divider,
.gm-wallet .gm-listen-toggle {
    flex: 0 0 auto;
}

.gm-wallet-divider {
    color: rgba(234, 211, 162, .24);
    font: 10px/1 var(--gm-mono);
    user-select: none;
}

.gm-wallet .gm-listen-toggle {
    justify-self: auto;
}

/* «Nuevo» ya no consume una línea: una luz dorada marca discretamente el título. */
.gm-rumor-marker.is-new .gm-rumor-title-row strong {
    box-shadow: inset 0 -3px 0 rgba(234, 211, 162, .14), 0 5px 8px -7px rgba(234, 211, 162, .9);
}

.gm-rumor-marker.is-new:hover .gm-rumor-title-row strong,
.gm-rumor-marker.is-new:focus-visible .gm-rumor-title-row strong,
.gm-rumor-marker.is-new.is-selected .gm-rumor-title-row strong {
    box-shadow: inset 0 -3px 0 rgba(234, 211, 162, .2), 0 0 9px 5px rgba(0, 0, 0, .62), 0 7px 10px -8px rgba(234, 211, 162, .95);
}

/* Etiqueta explícita solo dentro de la ficha abierta, después del nivel. */
.gm-quick-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
}

.gm-quick-new {
    margin: 0;
    padding: 2px 4px;
    color: #111;
    background: var(--gm-accent);
    border-radius: 2px;
    font: 800 7px/1 var(--gm-mono);
    letter-spacing: .45px;
    text-transform: uppercase;
}

/* La antigua insignia se oculta también por compatibilidad con HTML en caché. */
.gm-new-badge {
    display: none !important;
}

@media (max-width: 560px) {
    .gm-wallet-divider {
        display: none;
    }
}



/* -------------------------------------------------------------------------- */
/* GossipMeter 1.0.9: separación lateral y novedad sin alterar la composición */
/* -------------------------------------------------------------------------- */

/* El estado nuevo no modifica el ancho, la sombra ni la posición de la flecha. */
.gm-rumor-marker.is-new .gm-rumor-title-row strong {
    box-shadow: none;
}

.gm-rumor-marker.is-new:hover .gm-rumor-title-row strong,
.gm-rumor-marker.is-new:focus-visible .gm-rumor-title-row strong,
.gm-rumor-marker.is-new.is-selected .gm-rumor-title-row strong {
    box-shadow: 0 0 9px 5px rgba(0, 0, 0, .62);
}

/* Un punto discreto indica novedad sin formar parte de la fila del título. */
.gm-rumor-marker.is-new::after {
    content: "";
    position: absolute;
    z-index: 45;
    top: 3px;
    width: 6px;
    height: 6px;
    box-sizing: border-box;
    border: 1px solid rgba(5, 5, 5, .92);
    border-radius: 50%;
    background: var(--gm-accent);
    box-shadow: 0 0 7px rgba(234, 211, 162, .48);
    pointer-events: none;
}

.gm-rumor-marker.is-new.is-left::after {
    left: 1px;
}

.gm-rumor-marker.is-new.is-right::after {
    right: 1px;
}

/* En la ficha rápida se lee como parte natural de la misma línea informativa. */
.gm-quick-meta {
    gap: 0;
}

.gm-quick-new {
    margin: 0;
    padding: 0;
    color: var(--gm-accent);
    background: transparent;
    border-radius: 0;
    font: inherit;
    letter-spacing: inherit;
    text-transform: none;
}

/* -------------------------------------------------------------------------- */
/* GossipMeter 1.0.10: tendencia estable, selección reversible y alineaciones */
/* -------------------------------------------------------------------------- */

/* La tendencia se oculta de inmediato al abandonar el rumor. Sin transición
   no puede recorrer durante un fotograma el borde de los rumores derechos. */
.gm-trend {
    transition: none !important;
    transform: none !important;
}

.gm-rumor-marker:not(:hover):not(:focus-visible):not(.is-selected) .gm-trend {
    opacity: 0 !important;
    visibility: hidden !important;
    transform: none !important;
}

.gm-rumor-marker:hover .gm-trend,
.gm-rumor-marker:focus-visible .gm-trend,
.gm-rumor-marker.is-selected .gm-trend {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

/* El punto de novedad queda alineado con la línea central del título. */
.gm-rumor-marker.is-new::after {
    top: 50%;
    transform: translateY(-50%);
}

/* Los nombres de los extremos aparecen a los lados del símbolo. */
.gm-scale-end-hot > span {
    top: 50%;
    bottom: auto;
    left: calc(100% + 7px);
    right: auto;
    transform: translateY(-50%);
}

.gm-scale-end-cold > span {
    top: 50%;
    bottom: auto;
    right: calc(100% + 7px);
    left: auto;
    transform: translateY(-50%);
}

/* Los votos quedan debajo sin participar en el centrado vertical del título. */
.gm-rumor-floating {
    position: relative !important;
}

.gm-rumor-title-row,
.gm-rumor-marker:hover .gm-rumor-title-row,
.gm-rumor-marker:focus-visible .gm-rumor-title-row,
.gm-rumor-marker.is-selected .gm-rumor-title-row {
    min-height: 26px;
    align-items: center;
}

.gm-rumor-badges {
    position: absolute;
    z-index: 5;
    top: calc(50% + 8px);
    margin: 0;
    pointer-events: none;
}

.gm-rumor-marker.is-left .gm-rumor-badges {
    right: 4px;
    left: auto;
}

.gm-rumor-marker.is-right .gm-rumor-badges {
    left: 4px;
    right: auto;
}


/* -------------------------------------------------------------------------- */
/* GossipMeter 1.0.12: niveles reales, títulos a dos líneas y márgenes seguros */
/* -------------------------------------------------------------------------- */

/* El punto de novedad forma parte de la fila y nunca queda debajo del texto. */
.gm-rumor-marker.is-new::after {
    display: none !important;
}

.gm-rumor-marker.is-new .gm-rumor-title-row::before {
    content: "";
    width: 6px;
    height: 6px;
    flex: 0 0 6px;
    box-sizing: border-box;
    border: 1px solid rgba(5, 5, 5, .92);
    border-radius: 50%;
    background: var(--gm-accent);
    box-shadow: 0 0 7px rgba(234, 211, 162, .48);
    align-self: center;
    pointer-events: none;
}

/* Más aire junto a los bordes del panel. */
.gm-rumor-marker,
.gm-rumor-marker:hover,
.gm-rumor-marker:focus-visible,
.gm-rumor-marker.is-selected {
    width: calc(50% - 31px) !important;
}

.gm-rumor-marker.is-left,
.gm-rumor-marker.is-left:hover,
.gm-rumor-marker.is-left:focus-visible,
.gm-rumor-marker.is-left.is-selected {
    right: calc(50% + 14px) !important;
}

.gm-rumor-marker.is-right,
.gm-rumor-marker.is-right:hover,
.gm-rumor-marker.is-right:focus-visible,
.gm-rumor-marker.is-right.is-selected {
    left: calc(50% + 14px) !important;
}

.gm-rumor-floating,
.gm-rumor-marker:hover .gm-rumor-floating,
.gm-rumor-marker:focus-visible .gm-rumor-floating,
.gm-rumor-marker.is-selected .gm-rumor-floating {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 32px;
    box-sizing: border-box;
    padding: 3px 7px !important;
    overflow: hidden !important;
}

.gm-rumor-title-row,
.gm-rumor-marker:hover .gm-rumor-title-row,
.gm-rumor-marker:focus-visible .gm-rumor-title-row,
.gm-rumor-marker.is-selected .gm-rumor-title-row {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 30px;
    box-sizing: border-box;
    align-items: center;
    gap: 5px;
    overflow: hidden !important;
}

/* Dos líneas como máximo, también al seleccionar o pasar el cursor. */
.gm-rumor-title-row strong,
.gm-rumor-marker:hover .gm-rumor-title-row strong,
.gm-rumor-marker:focus-visible .gm-rumor-title-row strong,
.gm-rumor-marker.is-selected .gm-rumor-title-row strong {
    position: static !important;
    z-index: auto;
    width: auto !important;
    min-width: 0;
    max-width: none !important;
    flex: 1 1 auto !important;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden !important;
    padding: 0 !important;
    color: inherit;
    background: transparent;
    border-radius: 0;
    box-shadow: none !important;
    font-size: 10px;
    line-height: 1.25;
    max-height: 2.5em !important;
    white-space: normal !important;
    overflow-wrap: anywhere;
    word-break: normal;
    text-overflow: ellipsis;
    text-shadow: 0 2px 7px rgba(0, 0, 0, .9);
    transform: none !important;
}

.gm-rumor-marker:hover .gm-rumor-title-row strong,
.gm-rumor-marker:focus-visible .gm-rumor-title-row strong,
.gm-rumor-marker.is-selected .gm-rumor-title-row strong {
    color: var(--gm-accent-2);
    text-shadow: 0 0 12px rgba(234, 211, 162, .18), 0 3px 8px #000;
}

.gm-trend {
    align-self: center;
}

@media (max-width: 560px) {
    .gm-rumor-marker,
    .gm-rumor-marker:hover,
    .gm-rumor-marker:focus-visible,
    .gm-rumor-marker.is-selected {
        width: calc(50% - 24px) !important;
    }

    .gm-rumor-marker.is-left,
    .gm-rumor-marker.is-left:hover,
    .gm-rumor-marker.is-left:focus-visible,
    .gm-rumor-marker.is-left.is-selected {
        right: calc(50% + 11px) !important;
    }

    .gm-rumor-marker.is-right,
    .gm-rumor-marker.is-right:hover,
    .gm-rumor-marker.is-right:focus-visible,
    .gm-rumor-marker.is-right.is-selected {
        left: calc(50% + 11px) !important;
    }
}

/* -------------------------------------------------------------------------- */
/* GossipMeter 1.0.13: badges sin recorte y corona para el máximo             */
/* -------------------------------------------------------------------------- */

/*
 * Los votos dejan de estar posicionados fuera de la tarjeta. Ahora forman una
 * segunda fila real, por lo que ningún ancestro puede cortar la mitad inferior.
 */
.gm-rumor-marker,
.gm-rumor-marker:hover,
.gm-rumor-marker:focus-visible,
.gm-rumor-marker.is-selected {
    min-height: 54px !important;
    overflow: visible !important;
}

.gm-rumor-floating,
.gm-rumor-marker:hover .gm-rumor-floating,
.gm-rumor-marker:focus-visible .gm-rumor-floating,
.gm-rumor-marker.is-selected .gm-rumor-floating {
    height: auto !important;
    min-height: 34px !important;
    padding: 3px 7px 5px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: center !important;
    gap: 2px !important;
    overflow: visible !important;
}

.gm-rumor-title-row,
.gm-rumor-marker:hover .gm-rumor-title-row,
.gm-rumor-marker:focus-visible .gm-rumor-title-row,
.gm-rumor-marker.is-selected .gm-rumor-title-row {
    flex: 0 0 auto !important;
}

.gm-rumor-badges,
.gm-rumor-marker.is-left .gm-rumor-badges,
.gm-rumor-marker.is-right .gm-rumor-badges {
    position: static !important;
    inset: auto !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    width: 100% !important;
    min-width: 0 !important;
    min-height: 21px !important;
    height: 21px !important;
    margin: 1px 0 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
    overflow: visible !important;
    transform: none !important;
    pointer-events: none;
}

.gm-rumor-marker.is-left .gm-rumor-badges {
    justify-content: flex-end !important;
}

.gm-rumor-marker.is-right .gm-rumor-badges {
    justify-content: flex-start !important;
}

.gm-rumor-badges em,
.gm-rumor-marker .gm-rumor-badges em {
    min-width: 28px !important;
    width: auto !important;
    height: 20px !important;
    min-height: 20px !important;
    padding: 0 5px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
    overflow: visible !important;
    font-family: var(--gm-mono) !important;
    font-size: 9px !important;
    font-weight: 900 !important;
    font-style: normal !important;
    line-height: 20px !important;
    white-space: nowrap !important;
}

/* Corona discreta cuando el rumor alcanza el 100 % del termómetro. */
.gm-rumor-crown {
    position: relative;
    z-index: 3;
    width: 17px;
    height: 18px;
    flex: 0 0 17px;
    display: inline-grid;
    place-items: center;
    align-self: center;
    overflow: visible;
    color: #f1cf6a !important;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    text-shadow: 0 1px 0 #4b2f08, 0 0 7px rgba(241, 207, 106, .68);
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, .72));
    transform: translateY(-1px);
    pointer-events: none;
}

.gm-rumor-marker.is-maxed .gm-rumor-title-row strong {
    color: #f0dfaa;
}

.gm-rumor-marker.is-maxed:hover .gm-rumor-title-row strong,
.gm-rumor-marker.is-maxed:focus-visible .gm-rumor-title-row strong,
.gm-rumor-marker.is-maxed.is-selected .gm-rumor-title-row strong {
    color: #fff0b8;
}

@media (max-width: 560px) {
    .gm-rumor-badges em,
    .gm-rumor-marker .gm-rumor-badges em {
        min-width: 26px !important;
        height: 19px !important;
        min-height: 19px !important;
        padding: 0 4px !important;
        font-size: 8px !important;
        line-height: 19px !important;
    }
}

