/**
 * Guess Who - Game Styles v2
 * 
 * Features:
 * - Lives system (❤️❤️❤️)
 * - 50/50 Power button
 * - Game Over with locked mystery
 * - Victory celebration
 */

/* ============================================
   ARENA CONTAINER
   ============================================ */
.guess-who-arena {
    padding: 0;
    overflow: hidden;
}

/* ============================================
   HEADER - Lives, Progress, Score, Powers
   ============================================ */
.guess-who-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
    border-bottom: 1px solid var(--color-border, rgba(255, 255, 255, 0.1));
    flex-wrap: wrap;
}

/* Lives Display */
.guess-who-lives {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 1.5rem;
    padding: 0.375rem 0.75rem;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 2rem;
    cursor: help;
}

.guess-who-lives__heart {
    transition: transform 0.3s ease, filter 0.3s ease;
}

.guess-who-lives__heart--lost {
    filter: grayscale(1);
    animation: heartBreak 0.5s ease;
}

.guess-who-lives__label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #ef4444;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-left: 0.25rem;
}

@keyframes heartBreak {
    0% { transform: scale(1); }
    25% { transform: scale(1.3); }
    50% { transform: scale(0.8) rotate(-10deg); }
    100% { transform: scale(1) rotate(0); }
}

/* Progress */
.guess-who-progress {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-family: var(--font-display, 'Space Grotesk', sans-serif);
}

.guess-who-progress__label {
    color: var(--color-text-muted, #a1a1aa);
    font-size: 0.875rem;
    font-weight: 600;
}

.guess-who-progress__current {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-accent, #a855f7);
}

.guess-who-progress__separator,
.guess-who-progress__total {
    color: var(--color-text-muted, #a1a1aa);
    font-size: 1rem;
}

/* Score */
.guess-who-score {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-family: var(--font-display, 'Space Grotesk', sans-serif);
}

.guess-who-score__icon {
    font-size: 1.125rem;
}

.guess-who-score__value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #f59e0b;
}

/* 50/50 Power Button */
.guess-who-power {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border: 2px solid rgba(59, 130, 246, 0.5);
    border-radius: 2rem;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.guess-who-power:hover:not(:disabled) {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.guess-who-power--disabled {
    opacity: 0.4;
    cursor: not-allowed;
    filter: grayscale(0.5);
}

.guess-who-power__icon {
    font-size: 1.125rem;
}

.guess-who-power__label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.guess-who-power__count {
    background: rgba(255, 255, 255, 0.25);
    padding: 0.125rem 0.5rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    min-width: 1.5rem;
    text-align: center;
}

/* Streak */
.guess-who-streak {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    background: linear-gradient(135deg, #f97316 0%, #ef4444 100%);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    color: white;
    font-weight: 600;
}

.guess-who-streak__icon {
    font-size: 1rem;
}

.guess-who-streak__value {
    font-size: 1rem;
}

/* ============================================
   MYSTERY IMAGE CONTAINER
   ============================================ */
.guess-who-mystery {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    min-height: 400px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.guess-who-image {
    position: relative;
    width: 300px;
    height: 400px;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 
        0 0 0 4px rgba(168, 85, 247, 0.3),
        0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transition: box-shadow 0.5s ease;
}

.guess-who-image--revealed {
    box-shadow: 
        0 0 0 4px rgba(16, 185, 129, 0.5),
        0 0 40px rgba(16, 185, 129, 0.3),
        0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.guess-who-image__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.8s ease-out;
    filter: blur(25px);
}

.guess-who-image__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    transition: opacity 0.5s ease;
}

.guess-who-image__question-mark {
    font-size: 8rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 
        0 0 20px rgba(168, 85, 247, 0.8),
        0 0 40px rgba(168, 85, 247, 0.5),
        0 4px 8px rgba(0, 0, 0, 0.5);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.9;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

/* Blur levels */
.guess-who-image--blur-0 .guess-who-image__photo { filter: blur(0); }
.guess-who-image--blur-5 .guess-who-image__photo { filter: blur(5px); }
.guess-who-image--blur-10 .guess-who-image__photo { filter: blur(10px); }
.guess-who-image--blur-15 .guess-who-image__photo { filter: blur(15px); }
.guess-who-image--blur-20 .guess-who-image__photo { filter: blur(20px); }
.guess-who-image--blur-25 .guess-who-image__photo { filter: blur(25px); }

/* Hide question mark when revealed */
.guess-who-image--blur-0 .guess-who-image__overlay,
.guess-who-image--blur-5 .guess-who-image__overlay {
    opacity: 0.3;
}

.guess-who-image--revealed .guess-who-image__overlay {
    opacity: 0;
    pointer-events: none;
}

/* Locked state (game over) */
.guess-who-image--locked {
    box-shadow: 
        0 0 0 4px rgba(239, 68, 68, 0.5),
        0 0 30px rgba(239, 68, 68, 0.3),
        0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.guess-who-image--locked .guess-who-image__photo {
    filter: blur(25px) !important;
    transition: filter 0.8s ease-out;
}

.guess-who-image--locked .guess-who-image__overlay {
    display: none !important;
}

/* Lock overlay that appears on game over */
.guess-who-lock-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    font-size: 5rem;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.5s ease;
    z-index: 10;
}

.guess-who-lock-overlay--animate {
    opacity: 1;
    transform: scale(1);
    animation: lockBounce 0.6s ease forwards;
}

@keyframes lockBounce {
    0% {
        opacity: 0;
        transform: scale(0.3) rotate(-20deg);
    }
    50% {
        opacity: 1;
        transform: scale(1.2) rotate(10deg);
    }
    70% {
        transform: scale(0.9) rotate(-5deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
    }
}

/* ============================================
   LOADING STATE
   ============================================ */
.guess-who-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 3rem;
}

.guess-who-loader__spinner {
    width: 48px;
    height: 48px;
    border: 4px solid rgba(168, 85, 247, 0.2);
    border-top-color: #a855f7;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.guess-who-loader__text {
    color: var(--color-text-muted, #a1a1aa);
    font-size: 1rem;
}

.guess-who-loader--hidden {
    display: none !important;
}

/* ============================================
   QUESTION AREA
   ============================================ */
.guess-who-question {
    padding: 2rem;
    background: var(--color-surface, rgba(39, 39, 42, 0.8));
    border-top: 1px solid var(--color-border, rgba(255, 255, 255, 0.1));
}

.guess-who-question__label {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--color-text, #fff);
}

.guess-who-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 600px) {
    .guess-who-options {
        grid-template-columns: 1fr;
    }
}

.guess-who-option {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(168, 85, 247, 0.15) 100%);
    border: 2px solid rgba(168, 85, 247, 0.3);
    border-radius: 0.75rem;
    color: var(--color-text, #fff);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.guess-who-option:hover:not(:disabled) {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.3) 0%, rgba(168, 85, 247, 0.3) 100%);
    border-color: #a855f7;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(168, 85, 247, 0.3);
}

.guess-who-option:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.guess-who-option--correct {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.3) 0%, rgba(5, 150, 105, 0.3) 100%) !important;
    border-color: #10b981 !important;
    animation: correct-pulse 0.5s ease;
}

.guess-who-option--wrong {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.3) 0%, rgba(220, 38, 38, 0.3) 100%) !important;
    border-color: #ef4444 !important;
    animation: wrong-shake 0.5s ease;
}

.guess-who-option--eliminated {
    background: rgba(0, 0, 0, 0.3) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
    text-decoration: line-through;
    opacity: 0.3;
}

@keyframes correct-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes wrong-shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

/* ============================================
   FEEDBACK TOAST
   ============================================ */
.guess-who-feedback {
    padding: 1rem 2rem;
    text-align: center;
}

.guess-who-feedback__content {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 2rem;
    font-weight: 600;
    animation: slide-up 0.3s ease;
}

@keyframes slide-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.guess-who-feedback--correct .guess-who-feedback__content {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(5, 150, 105, 0.2) 100%);
    border: 1px solid rgba(16, 185, 129, 0.5);
    color: #10b981;
}

.guess-who-feedback--wrong .guess-who-feedback__content {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(220, 38, 38, 0.2) 100%);
    border: 1px solid rgba(239, 68, 68, 0.5);
    color: #ef4444;
}

/* ============================================
   GAME OVER SCREEN (Overlay on blurred image)
   ============================================ */
.guess-who-gameover {
    padding: 2rem;
    text-align: center;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.guess-who-gameover__content {
    max-width: 400px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 1rem;
    border: 2px solid rgba(239, 68, 68, 0.3);
    backdrop-filter: blur(10px);
}

.guess-who-gameover__title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ef4444;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(239, 68, 68, 0.5);
    animation: shake 0.5s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-10px); }
    40% { transform: translateX(10px); }
    60% { transform: translateX(-10px); }
    80% { transform: translateX(10px); }
}

.guess-who-gameover__question {
    font-size: 1rem;
    color: var(--color-text-muted, #a1a1aa);
    margin-bottom: 1rem;
}

.guess-who-gameover__teaser {
    font-size: 1.125rem;
    font-weight: 600;
    color: #f472b6;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(244, 114, 182, 0.15) 0%, rgba(168, 85, 247, 0.15) 100%);
    border-radius: 0.75rem;
    border: 1px solid rgba(244, 114, 182, 0.3);
    margin-bottom: 1.5rem;
    animation: teaserGlow 2s ease-in-out infinite;
}

@keyframes teaserGlow {
    0%, 100% { box-shadow: 0 0 10px rgba(244, 114, 182, 0.2); }
    50% { box-shadow: 0 0 20px rgba(244, 114, 182, 0.4); }
}

.guess-who-gameover__score {
    font-size: 0.9rem;
    color: var(--color-text-muted, #a1a1aa);
    margin-bottom: 1.5rem;
}

.guess-who-gameover__score strong {
    color: #f59e0b;
    font-size: 1.125rem;
}

.guess-who-gameover__actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.guess-who-gameover__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.guess-who-gameover__btn--new {
    background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
    color: white;
}

.guess-who-gameover__btn--new:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(168, 85, 247, 0.4);
}

/* ============================================
   VICTORY SCREEN
   ============================================ */
.guess-who-victory {
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: fadeIn 0.5s ease;
}

.guess-who-victory__content {
    max-width: 400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.guess-who-victory__title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #10b981;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
    animation: bounce-in 0.6s ease;
}

@keyframes bounce-in {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.guess-who-victory__model {
    margin-bottom: 1.5rem;
}

.guess-who-victory__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--color-surface, rgba(39, 39, 42, 0.8));
    border-radius: 1rem;
    border: 2px solid rgba(16, 185, 129, 0.3);
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.2);
}

.guess-who-victory__photo {
    width: 150px;
    height: 200px;
    border-radius: 0.75rem;
    object-fit: cover;
    border: 3px solid #10b981;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.guess-who-victory__name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text, #fff);
}

.guess-who-victory__meta {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--color-text-muted, #a1a1aa);
}

.guess-who-victory__score {
    font-size: 1.125rem;
    color: var(--color-text-muted, #a1a1aa);
    margin-bottom: 2rem;
}

.guess-who-victory__score strong {
    color: #f59e0b;
    font-size: 1.5rem;
}

.guess-who-victory__bonus {
    color: #10b981;
    font-size: 0.875rem;
}

.guess-who-victory__actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.guess-who-victory__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
}

.guess-who-victory__btn--visit {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.guess-who-victory__btn--visit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
}

.guess-who-victory__btn--play {
    background: transparent;
    border: 2px solid rgba(168, 85, 247, 0.5);
    color: #a855f7;
}

.guess-who-victory__btn--play:hover {
    background: rgba(168, 85, 247, 0.1);
    border-color: #a855f7;
}

/* Confetti Animation */
.guess-who-confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 2px;
    animation: confetti-fall 3s ease-out forwards;
    pointer-events: none;
    z-index: 0;
}

@keyframes confetti-fall {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(500px) rotate(720deg);
        opacity: 0;
    }
}

/* ============================================
   INFO SECTION
   ============================================ */
.guess-who-info {
    padding: 0.5rem 0;
}

.guess-who-info h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.guess-who-info ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.guess-who-info li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
}

.guess-who-info li::before {
    content: "✨";
    position: absolute;
    left: 0;
}

.guess-who-info__tip {
    padding: 1rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
    border-radius: 0.5rem;
    margin-top: 1rem;
}

/* ============================================
   LEADERBOARD
   ============================================ */
.guess-who-leaderboard {
    padding: 1.5rem;
}

.guess-who-leaderboard__header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.guess-who-leaderboard__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.guess-who-leaderboard__subtitle {
    color: var(--color-text-muted, #a1a1aa);
    font-size: 0.9rem;
}

.guess-who-leaderboard__tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.guess-who-tab {
    padding: 0.625rem 1.25rem;
    background: rgba(39, 39, 42, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    color: var(--color-text-muted, #a1a1aa);
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.guess-who-tab:hover {
    background: rgba(168, 85, 247, 0.1);
    border-color: rgba(168, 85, 247, 0.3);
}

.guess-who-tab--active {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(168, 85, 247, 0.2) 100%);
    border-color: #a855f7;
    color: #a855f7;
}

.guess-who-leaderboard__content {
    min-height: 200px;
}

.guess-who-leaderboard__loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    color: var(--color-text-muted, #a1a1aa);
}

.guess-who-leaderboard__list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.guess-who-leaderboard__item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: rgba(39, 39, 42, 0.5);
    border-radius: 0.5rem;
    text-decoration: none;
    color: inherit;
    transition: background 0.2s ease;
}

.guess-who-leaderboard__item:hover {
    background: rgba(168, 85, 247, 0.1);
}

.guess-who-leaderboard__rank {
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(168, 85, 247, 0.2) 100%);
    border-radius: 50%;
    font-size: 0.875rem;
    font-weight: 700;
    color: #a855f7;
    flex-shrink: 0;
}

.guess-who-leaderboard__rank--top {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, rgba(234, 179, 8, 0.2) 100%);
    font-size: 1.25rem;
    animation: medalPulse 2s ease-in-out infinite;
}

@keyframes medalPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.guess-who-leaderboard__photo {
    width: 50px;
    height: 65px;
    border-radius: 0.375rem;
    object-fit: cover;
}

.guess-who-leaderboard__info {
    flex: 1;
    min-width: 0;
}

.guess-who-leaderboard__name {
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.guess-who-leaderboard__meta {
    font-size: 0.75rem;
    color: var(--color-text-muted, #a1a1aa);
}

.guess-who-leaderboard__stat {
    text-align: right;
    font-size: 0.875rem;
    min-width: 70px;
}

.guess-who-leaderboard__stat-value {
    font-weight: 700;
    color: #f59e0b;
    font-size: 1rem;
}

.guess-who-leaderboard__stat-label {
    font-size: 0.7rem;
    color: var(--color-text-muted, #a1a1aa);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.guess-who-leaderboard__empty {
    text-align: center;
    padding: 2rem;
    color: var(--color-text-muted, #a1a1aa);
}

/* ============================================
   PODIUM (Top 3)
   ============================================ */
.guess-who-podium {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding: 1rem 0.5rem;
}

.guess-who-podium__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease;
    position: relative;
}

.guess-who-podium__item:hover {
    transform: translateY(-5px);
}

.guess-who-podium__medal {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
    animation: medalPulse 2s ease-in-out infinite;
}

.guess-who-podium__photo {
    width: 70px;
    height: 90px;
    object-fit: cover;
    border-radius: var(--radius-md, 0.5rem);
    border: 2px solid var(--color-border, rgba(255, 255, 255, 0.1));
    transition: border-color 0.2s ease;
}

.guess-who-podium__place--1 .guess-who-podium__photo {
    width: 85px;
    height: 110px;
    border-color: var(--color-gold, #fbbf24);
    box-shadow: 0 0 20px var(--color-gold-glow, rgba(251, 191, 36, 0.4));
}

.guess-who-podium__place--2 .guess-who-podium__photo {
    border-color: var(--color-silver, #9ca3af);
    box-shadow: 0 0 15px var(--color-silver-glow, rgba(156, 163, 175, 0.3));
}

.guess-who-podium__place--3 .guess-who-podium__photo {
    border-color: var(--color-bronze, #cd7f32);
    box-shadow: 0 0 15px var(--color-bronze-glow, rgba(205, 127, 50, 0.3));
}

.guess-who-podium__name {
    font-size: 0.7rem;
    font-weight: 600;
    margin-top: 0.5rem;
    text-align: center;
    max-width: 80px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--color-text, #fff);
}

.guess-who-podium__stat {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-accent, #a855f7);
    margin-top: 0.25rem;
}

.guess-who-podium__bar {
    width: 100%;
    margin-top: 0.5rem;
    border-radius: var(--radius-sm, 0.25rem) var(--radius-sm, 0.25rem) 0 0;
    background: linear-gradient(to top, var(--color-accent-dim, rgba(168, 85, 247, 0.3)), var(--color-accent-subtle, rgba(168, 85, 247, 0.1)));
}

.guess-who-podium__place--1 .guess-who-podium__bar {
    height: 60px;
    background: linear-gradient(to top, var(--color-gold-dim, rgba(251, 191, 36, 0.4)), var(--color-gold-subtle, rgba(251, 191, 36, 0.1)));
}

.guess-who-podium__place--2 .guess-who-podium__bar {
    height: 45px;
    background: linear-gradient(to top, var(--color-silver-dim, rgba(156, 163, 175, 0.4)), var(--color-silver-subtle, rgba(156, 163, 175, 0.1)));
}

.guess-who-podium__place--3 .guess-who-podium__bar {
    height: 30px;
    background: linear-gradient(to top, var(--color-bronze-dim, rgba(205, 127, 50, 0.4)), var(--color-bronze-subtle, rgba(205, 127, 50, 0.1)));
}

/* ============================================
   LEADERBOARD GRID (Rest of models)
   ============================================ */
.guess-who-leaderboard-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color-border, rgba(255, 255, 255, 0.1));
}

@media (max-width: 768px) {
    .guess-who-leaderboard-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.guess-who-leaderboard-grid__item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: var(--color-surface-dim, rgba(39, 39, 42, 0.3));
    border-radius: var(--radius-md, 0.5rem);
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

.guess-who-leaderboard-grid__item:hover {
    background: var(--color-accent-subtle, rgba(168, 85, 247, 0.15));
    transform: translateY(-2px);
}

.guess-who-leaderboard-grid__rank {
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--color-text-muted, #a1a1aa);
    background: var(--color-surface-darker, rgba(0, 0, 0, 0.3));
    border-radius: var(--radius-sm, 0.25rem);
    flex-shrink: 0;
}

.guess-who-leaderboard-grid__photo {
    width: 36px;
    height: 48px;
    border-radius: var(--radius-sm, 0.25rem);
    object-fit: cover;
    flex-shrink: 0;
}

.guess-who-leaderboard-grid__info {
    flex: 1;
    min-width: 0;
}

.guess-who-leaderboard-grid__name {
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--color-text, #fff);
}

.guess-who-leaderboard-grid__stat {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--color-accent, #a855f7);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .guess-who-header {
        gap: 1rem;
        padding: 1rem;
    }

    .guess-who-lives {
        font-size: 1.25rem;
    }

    .guess-who-mystery {
        padding: 1.5rem;
        min-height: 350px;
    }

    .guess-who-image {
        width: 250px;
        height: 330px;
    }

    .guess-who-image__question-mark {
        font-size: 5rem;
    }

    .guess-who-question {
        padding: 1.5rem;
    }

    .guess-who-gameover__title,
    .guess-who-victory__title {
        font-size: 2rem;
    }

    .guess-who-gameover__locked-image {
        width: 160px;
        height: 210px;
    }
}
