/* ─── Shuffle page layout ─────────────────────────────────────── */

/* ── Header ── */
.shu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px 8px;
    border-bottom: 1px solid #222;
    margin-bottom: 4px;
    min-height: 0;
}
.shu-header-left {
    display: flex;
    align-items: center;
    gap: 14px;
}
.shu-header .shu-title,
#shuTitle.shu-title {
    margin: 0;
    margin-bottom: 0;
    text-align: left;
    font-size: 1.9em;
    line-height: 1.25;
    letter-spacing: 4px;
}
.shu-header-nav {
    display: flex;
    gap: 10px;
}
/* Clear All: a la izquierda de Participants, toque rojo + confirm */
.shu-clear-all-btn {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.1em;
    padding: 10px 16px;
    border-radius: 8px;
    border: 2px solid #cc2222;
    background: rgba(180, 40, 40, 0.35);
    color: #ff6666;
    cursor: pointer;
    flex: 0 0 auto;
    align-self: stretch;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s, background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 0 8px rgba(204, 34, 34, 0.4);
}
.shu-clear-all-btn:hover {
    background: rgba(200, 50, 50, 0.5);
    color: #ff8888;
    border-color: #ff3333;
    box-shadow: 0 0 12px rgba(255, 50, 50, 0.6);
}
.shu-count-row .shu-clear-all-btn {
    height: 97px;
}
.shu-hdr-clear {
    background: #333;
    color: #aaa;
    border: 1px solid #555;
}
.shu-hdr-clear:hover {
    color: #fff;
    border-color: #888;
}
.shu-hdr-btn {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    padding: 8px 18px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.15s;
}
.shu-hdr-back {
    background: #222;
    color: #aaa;
    border: 1px solid #444;
}
.shu-hdr-back:hover { color: #fff; border-color: #888; }
.shu-hdr-menu {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #111;
}
.shu-hdr-menu:hover { transform: scale(1.05); }


.shu-page {
    width: 96%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 16px 20px 30px;
}

/* ── Title: neon glow pulse ─────────────────────────────────── */
.shu-title {
    text-align: center;
    margin-bottom: 18px;
    font-family: 'Henny Penny', cursive;
    font-size: 2.6em;
    letter-spacing: 6px;
    color: #fff;
    -webkit-text-fill-color: #fff;
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    text-shadow:
        0 0 6px  #fff,
        0 0 18px #FFD700,
        0 0 40px #FFA500,
        0 0 70px #FF6347;
    animation: shu-neon-pulse 2.2s ease-in-out infinite alternate;
}

@keyframes shu-neon-pulse {
    from { text-shadow: 0 0 6px #fff, 0 0 18px #FFD700, 0 0 35px #FFA500, 0 0 55px #FF6347; }
    to   { text-shadow: 0 0 10px #fff, 0 0 30px #FFD700, 0 0 60px #FFA500, 0 0 100px #FF6347, 0 0 130px #FF1493; }
}

/* Two-column layout */
.shu-layout {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

/* ─── LEFT panel ─────────────────────────────────────────────── */
.shu-left {
    flex: 0 0 620px;
}

/* No more contestants available + Clear all? Yes / No */
.shu-no-pool-overlay {
    position: fixed;
    inset: 0;
    z-index: 9000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(2px);
}
.shu-no-pool-overlay.is-open {
    display: flex;
}
.shu-no-pool-overlay[hidden] {
    display: none !important;
}
.shu-no-pool-message {
    width: min(520px, 92vw);
    margin: 0;
    padding: 22px 28px 20px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    background: rgba(28, 28, 32, 0.96);
    text-align: center;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.55);
}
.shu-no-pool-text {
    margin: 0 0 10px 0;
    font-size: 1.05rem;
    color: #ddd;
    font-weight: 500;
    line-height: 1.35;
}
.shu-no-pool-question {
    margin: 0 0 18px 0;
    font-size: 0.92rem;
    color: #888;
    line-height: 1.4;
}
.shu-no-pool-btns {
    display: flex;
    justify-content: center;
    gap: 14px;
}
.shu-no-pool-btn {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.05rem;
    letter-spacing: 0.08em;
    min-width: 88px;
    padding: 8px 22px;
    border-radius: 8px;
    border: 1px solid;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s, transform 0.12s;
}
.shu-no-pool-btn:active {
    transform: scale(0.97);
}
.shu-no-pool-yes {
    background: rgba(34, 197, 94, 0.25);
    color: #8fd4a8;
    border-color: rgba(34, 197, 94, 0.4);
}
.shu-no-pool-yes:hover {
    background: rgba(34, 197, 94, 0.35);
    border-color: rgba(34, 197, 94, 0.55);
}
.shu-no-pool-no {
    background: rgba(255, 255, 255, 0.06);
    color: #888;
    border-color: rgba(255, 255, 255, 0.15);
}
.shu-no-pool-no:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.22);
}

/* 4 columns × 3 rows */
.shu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

/* Each participant card */
.shu-card {
    position: relative;
    cursor: pointer;
    border-radius: 7px;
    overflow: hidden;
    border: 3px solid #4CAF50;
    transition: border-color 0.25s, opacity 0.25s, filter 0.25s, box-shadow 0.25s;
    background: #111;
}

.shu-card img {
    width: 100%;
    aspect-ratio: 80 / 110;
    object-fit: cover;
    display: block;
}

.shu-card .shu-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.72);
    font-size: 24px;
    text-align: center;
    padding: 4px 2px 5px;
    color: #fff;
    font-family: 'Mouse Memoirs', sans-serif;
    letter-spacing: 0.4px;
    pointer-events: none;
    text-shadow: 0 0 6px #000;
}

/* Overlay div inside each card — cubre la imagen con color */
.shu-card-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    z-index: 1;
    background: transparent;
}

/* ── ON: borde verde neon pulse ─────────────────────────────── */
.shu-card.on {
    border-color: #00ff55;
    animation: shu-border-green 2s ease-in-out infinite alternate;
}
@keyframes shu-border-green {
    from { box-shadow: 0 0 4px #00ff55,  0 0 10px #00cc44; }
    to   { box-shadow: 0 0 8px #00ff55,  0 0 18px #00dd55; }
}

/* ── OFF: gris oscuro + borde rojo neon pulse ───────────────── */
.shu-card.off {
    border-color: #ff2020;
    animation: shu-border-red 2s ease-in-out infinite alternate;
}
.shu-card.off .shu-card-overlay {
    background: rgba(0, 0, 0, 0.70);
}
@keyframes shu-border-red {
    from { box-shadow: 0 0 4px #ff2020,  0 0 10px #cc0000; }
    to   { box-shadow: 0 0 8px #ff3030,  0 0 18px #ff0000; }
}

/* ── NOMINATED: desaturado + 40% opacidad + borde gris glow ──── */
.shu-card.nominated {
    border-color: #888;
    animation: shu-border-grey 2s ease-in-out infinite alternate;
    cursor: default;
}
@keyframes shu-border-grey {
    from { box-shadow: 0 0 4px #888, 0 0 10px rgba(136,136,136,0.5); }
    to   { box-shadow: 0 0 10px #aaa, 0 0 20px rgba(136,136,136,0.7); }
}
.shu-card.nominated img {
    filter: saturate(0%) opacity(40%);
}
.shu-card.nominated .shu-card-overlay {
    background: transparent;
}

/* ── ELIMINATED: desaturado + 10% opacidad + borde gris ──────── */
.shu-card.eliminated {
    border-color: #666;
    box-shadow: none;
    cursor: default;
    animation: none;
}
.shu-card.eliminated img {
    filter: saturate(0%) opacity(10%);
}
.shu-card.eliminated .shu-card-overlay {
    background: transparent;
}

/* ── USED: oro tenue ─────────────────────────────────────────── */
.shu-card.used {
    border-color: goldenrod;
    box-shadow: 0 0 8px rgba(218,165,32,0.5);
    animation: none;
    opacity: 0.78;
}

/* ── USED-SELECT: amarillo — right-click Select, no participa ───── */
.shu-card.used-select {
    border-color: #FFD700;
    animation: shu-border-yellow 2s ease-in-out infinite alternate;
}
.shu-card.used-select .shu-card-overlay {
    background: rgba(255, 200, 0, 0.12);
}

/* ── SELECTED: amarillo — ya salió en el roll, no participa ───── */
.shu-card.selected {
    border-color: #FFD700;
    animation: shu-border-yellow 2s ease-in-out infinite alternate;
}
.shu-card.selected .shu-card-overlay {
    background: rgba(255, 200, 0, 0.12);
}
@keyframes shu-border-yellow {
    from { box-shadow: 0 0 4px #FFD700,  0 0 10px #FFA500; }
    to   { box-shadow: 0 0 8px #FFD700,  0 0 18px #FFA500; }
}

/* Context menu Used */
.shu-ctx-menu {
    position: fixed;
    display: none;
    z-index: 3000;
    min-width: 140px;
    background: #1e1e1e;
    border: 2px solid #FFD700;
    border-radius: 8px;
    padding: 4px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.6);
}
.shu-ctx-menu.visible { display: block; }
.shu-ctx-menu-title {
    padding: 8px 14px 4px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.08em;
    color: #FFD700;
    border-bottom: 1px solid #333;
    margin-bottom: 4px;
}
.shu-ctx-item {
    padding: 10px 14px;
    cursor: pointer;
    font-size: 1rem;
    color: #ddd;
    transition: background 0.15s;
}
.shu-ctx-item:hover { background: #333; color: #fff; }


/* ─── RIGHT panel ────────────────────────────────────────────── */
.shu-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
}

/* Scale inner content 90% */
.shu-right-content {
    --shu-announce-height: 6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    transform: scale(0.9);
    transform-origin: top center;
    width: 100%;
    max-width: 560px;
    box-sizing: border-box;
}

/* ── Shared multicolor gradient button style ─── */
.shu-roll-btn,
.shu-menu-btn,
.shu-back-btn {
    display: inline-block;
    font-family: 'Henny Penny', cursive;
    letter-spacing: 3px;
    text-decoration: none;
    color: #fff;
    background: #000;
    border-radius: 10px;
    cursor: pointer;
    text-align: center;
    text-shadow: 0 1px 4px rgba(0,0,0,0.8);
    transition: transform 0.15s, box-shadow 0.15s;
}

@keyframes shu-multicolor {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}


/* Menu button — neon azul */
.shu-menu-btn {
    padding: 12px 20px;
    font-size: 20px;
    flex: 0 0 auto;
    order: 3;
    border: 3px solid #00c8ff;
    box-shadow: 0 0 10px rgba(0,200,255,0.7), 0 0 25px rgba(0,200,255,0.3);
    animation: shu-btn-blue 2s ease-in-out infinite alternate;
}
@keyframes shu-btn-blue {
    from { box-shadow: 0 0 8px rgba(0,200,255,0.6), 0 0 20px rgba(0,200,255,0.25); }
    to   { box-shadow: 0 0 18px rgba(0,200,255,1),  0 0 45px rgba(0,200,255,0.5); }
}
.shu-menu-btn:hover { transform: scale(1.06); }

/* Back button — neon rojo */
.shu-back-btn {
    padding: 12px 20px;
    font-size: 20px;
    flex: 0 0 auto;
    order: 1;
    border: 3px solid #ff2020;
    box-shadow: 0 0 10px rgba(255,32,32,0.7), 0 0 25px rgba(255,32,32,0.3);
    animation: shu-btn-red 2s ease-in-out infinite alternate;
}
@keyframes shu-btn-red {
    from { box-shadow: 0 0 8px rgba(255,32,32,0.6), 0 0 20px rgba(255,32,32,0.25); }
    to   { box-shadow: 0 0 18px rgba(255,32,32,1),  0 0 45px rgba(255,32,32,0.5); }
}
.shu-back-btn:hover { transform: scale(1.06); }

/* ── Count selector row ───────────────────────────────────── */
.shu-count-row {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
}

.shu-count-box {
    width: 97px;
    height: 97px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1a1a;
    border: 3px solid #666;
    border-radius: 10px;
    font-family: 'Henny Penny', cursive;
    font-size: 2.7rem;
    color: #aaa;
    cursor: pointer;
    transition: all 0.2s;
    user-select: none;
    box-shadow: 0 0 8px rgba(255,215,0,0.2), 0 0 18px rgba(255,160,0,0.1);
}
.shu-count-box:hover {
    border-color: #FFD700;
    color: #FFD700;
    transform: scale(1.08);
    box-shadow: 0 0 16px rgba(255,215,0,0.6), 0 0 35px rgba(255,160,0,0.3);
}
.shu-count-box.active {
    border-color: #FFD700;
    color: #FFD700;
    background: rgba(255,215,0,0.1);
    animation: shu-box-pulse 1.4s ease-in-out infinite alternate;
}
@keyframes shu-box-pulse {
    from { box-shadow: 0 0 14px rgba(255,215,0,0.6), 0 0 30px rgba(255,160,0,0.2); }
    to   { box-shadow: 0 0 30px rgba(255,215,0,1),   0 0 60px rgba(255,180,0,0.5); }
}

.shu-clear-btn {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    padding: 10px 22px;
    border-radius: 8px;
    border: 1px solid #444;
    background: #222;
    color: #aaa;
    cursor: pointer;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
    margin-left: 8px;
}
.shu-clear-btn:hover { background: #333; color: #fff; border-color: #888; }

/* ── Results: 1 slot = tamaño de 1/4 (como 4); 2–4 = repartido en una línea ─── */
.shu-results {
    --shu-slot-count: 4;
    width: 100%;
    max-width: 100%;
    min-height: 10rem;
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
}
.shu-slot-dyn,
.shu-slot-placeholder-wrap {
    flex: 0 0 auto;
    width: calc((100% - 36px) / 4);
    max-width: calc((100% - 36px) / 4);
    min-width: 6.5rem;
    aspect-ratio: 80 / 110;
    border-radius: 10px;
    background: #111;
    border: 3px solid #444;
    box-sizing: border-box;
}
.shu-slot-placeholder-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.shu-slot-placeholder {
    width: 100%;
    height: 100%;
    font-family: 'Henny Penny', cursive;
    font-size: clamp(3rem, 8vw, 6rem);
    color: #FFD700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    background: #111;
    border: 3px solid #444;
    text-shadow: 0 0 20px rgba(255,215,0,0.6);
    box-sizing: border-box;
}
.shu-slot-dyn:not(.shu-slot-placeholder-wrap) {
    overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.shu-slot-dyn.shu-slot-spinning {
    animation: shu-slot-spin-pulse 0.18s ease-in-out infinite alternate;
}
@keyframes shu-slot-spin-pulse {
    from { box-shadow: 0 0 8px rgba(255, 215, 0, 0.35); transform: scale(1); }
    to   { box-shadow: 0 0 22px rgba(255, 215, 0, 0.75); transform: scale(1.03); }
}
.shu-slot-dyn img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}
.shu-slot-dyn.winner {
    position: relative;
    border-color: #FFD700;
    box-shadow: 0 0 30px rgba(255,215,0,0.9), 0 0 65px rgba(255,180,0,0.4);
    animation: shu-winner-glow 1.6s ease-in-out infinite alternate;
}
.shu-slot-dyn.winner .shu-winner-num {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
}
.shu-slot-dyn .shu-winner-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.4rem;
    color: #FFD700;
    text-align: center;
    letter-spacing: 0.05em;
    padding: 8px 4px 2px;
    background: rgba(0,0,0,0.8);
    text-shadow: 0 0 16px rgba(255,215,0,0.8);
    line-height: 1;
}
.shu-slot-dyn .shu-winner-name {
    font-family: 'Mouse Memoirs', sans-serif;
    font-size: 28px;
    color: #FFD700;
    text-align: center;
    padding: 2px 6px 8px;
    background: rgba(0,0,0,0.8);
    letter-spacing: 0.5px;
}
@keyframes shu-winner-glow {
    from { box-shadow: 0 0 20px rgba(255,215,0,0.6), 0 0 40px rgba(255,180,0,0.3); }
    to   { box-shadow: 0 0 40px rgba(255,215,0,1),   0 0 80px rgba(255,180,0,0.6); }
}

/* Result text */
.shu-result {
    font-family: 'Mouse Memoirs', sans-serif;
    font-size: 30px;
    font-weight: bold;
    letter-spacing: 2px;
    color: #FFD700;
    text-align: center;
    min-height: 40px;
    text-shadow: none;
}

/* Solo el título del secret, encima de la imagen */
.shu-result-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.25rem;
    letter-spacing: 0.08em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 12px;
    width: 100%;
}

.shu-pool-hint {
    width: 100%;
    margin: 10px 0 0;
    padding: 10px 14px;
    border-radius: 8px;
    background: rgba(250, 204, 21, 0.12);
    border: 1px solid rgba(250, 204, 21, 0.45);
    color: #fde68a;
    font-size: 0.92rem;
    line-height: 1.4;
    text-align: center;
    box-sizing: border-box;
}
.shu-pool-hint--ctx {
    margin: 0;
    padding: 6px 8px;
    font-size: 0.78rem;
    line-height: 1.25;
}
.shu-pool-hint[hidden] {
    display: none !important;
}

html.shu-from-context #shuCountRow {
    display: none !important;
}
html.shu-from-context #shuContextWrap {
    display: flex !important;
}
html.shu-from-context #shuResultTitle {
    display: block !important;
}
html.shu-from-context #shuResult {
    display: none !important;
}
#shuNoPoolOverlay,
.shu-no-pool-overlay,
.shu-left > .shu-no-pool-message {
    display: none !important;
}

/* Context assign panel: CLEAR | count | ROLL on one row */
.shu-context-panel {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    margin-top: 28px;
    box-sizing: border-box;
}

.shu-context-row {
    --shu-ctx-font-size: 0.95rem;
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 0;
    box-sizing: border-box;
    flex-wrap: nowrap;
}

.shu-clear-ctx-inline {
    flex: 0 0 22%;
    min-width: 0;
    width: auto;
    min-height: 0;
    height: auto;
    padding: 8px 6px;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    line-height: 1.1;
    white-space: normal;
    text-align: center;
    box-sizing: border-box;
}

.shu-clear-ctx-inline.is-hidden {
    display: none !important;
}

.shu-context-count-wrap {
    flex: 1 1 0;
    min-width: 0;
    padding: 8px 10px;
    background: rgba(0,0,0,0.35);
    border: 2px solid #FFD700;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.shu-context-count {
    font-family: 'Bebas Neue', sans-serif;
    font-size: var(--shu-ctx-font-size);
    color: #ccc;
    margin: 0;
    text-align: center;
    line-height: 1.15;
    letter-spacing: 0.04em;
}

.shu-context-roll-wrap {
    flex: 0 0 22%;
    min-width: 0;
    width: auto;
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.shu-roll-ctx-btn {
    font-family: 'Bebas Neue', sans-serif;
    font-size: var(--shu-ctx-font-size);
    letter-spacing: 0.1em;
    padding: 8px 6px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, #00cc44, #00aa33);
    color: #fff;
    box-shadow: 0 0 12px rgba(0,204,68,0.45);
    transition: transform 0.15s, box-shadow 0.15s;
    white-space: nowrap;
    width: 100%;
    box-sizing: border-box;
}
.shu-roll-ctx-btn:disabled {
    opacity: 0.55;
    cursor: wait;
    transform: none;
}
.shu-roll-ctx-btn:hover:not(:disabled) {
    transform: scale(1.05);
    box-shadow: 0 0 28px rgba(0,255,85,0.8);
}
#shuReturnBtn.shu-return-btn,
.shu-return-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: var(--shu-ctx-font-size, 0.95rem);
    letter-spacing: 0.1em;
    padding: 8px 6px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    width: 100%;
    box-sizing: border-box;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #111;
    box-shadow: 0 0 18px rgba(255, 215, 0, 0.45);
    transition: transform 0.15s, box-shadow 0.15s;
}
#shuReturnBtn.shu-return-btn:hover,
.shu-return-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 28px rgba(255, 215, 0, 0.75);
}
.shu-layout.shu-context-done .shu-card {
    pointer-events: none;
    opacity: 0.92;
}
.shu-result-text-block {
    font-family: 'Oswald', sans-serif;
    font-size: 1.25rem;
    color: #ddd;
    text-align: left;
    line-height: 1.5;
    margin-bottom: 14px;
    padding: 12px;
    background: rgba(0,0,0,0.3);
    border-radius: 8px;
}
.shu-result-images {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 10px;
}
.shu-result-images .shu-result-participant {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100px;
}
.shu-result-images .shu-result-participant img {
    width: 80px;
    height: auto;
    aspect-ratio: 80/110;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #FFD700;
}
.shu-result-images .shu-result-participant .shu-result-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    color: #FFD700;
    margin-top: 4px;
}
