/* ===== BOARD.CSS - Premium Game Board Styles ===== */

/* Game Screen Layout */
#game-screen {
    display: none;
    flex-direction: column;
    height: 100vh;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 40%),
        radial-gradient(ellipse at 80% 80%, rgba(139, 92, 246, 0.05) 0%, transparent 40%),
        var(--bg-primary);
}

#game-screen.active {
    display: flex;
}

/* Game Header - Premium */
.game-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md) var(--spacing-xl);
    background: var(--glass-bg);
    border-bottom: 1px solid var(--border-gold);
    height: 70px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
}

.game-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--vn-gold-light), var(--vn-gold), var(--vn-gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.05em;
}

.header-buttons {
    display: flex;
    gap: var(--spacing-sm);
}

/* Game Main Layout */
.game-main {
    display: flex;
    flex: 1;
    overflow: hidden;
    background: transparent;
}

/* Board Container */
.board-container {
    flex: 1;
    padding: var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Game Board - Premium Design */
.game-board {
    position: relative;
    width: 98%;
    height: 98%;
    max-width: 1300px;
    max-height: 1300px;
    aspect-ratio: 1;
    background:
        linear-gradient(135deg, rgba(26, 54, 93, 0.9) 0%, rgba(13, 27, 42, 0.95) 100%);
    border-radius: var(--border-radius-xl);
    padding: 0;
    box-shadow:
        0 0 0 3px var(--vn-gold),
        0 0 0 6px rgba(212, 175, 55, 0.3),
        0 0 60px rgba(212, 175, 55, 0.2),
        inset 0 0 100px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

/* Fast Track (Outer Ring) */
.fast-track {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.fast-track-label {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--vn-gold), var(--vn-gold-dark));
    color: #0a0a0f;
    padding: 6px 20px;
    border-radius: 25px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: var(--font-size-xs);
    white-space: nowrap;
    z-index: 50;
    box-shadow:
        0 4px 15px rgba(212, 175, 55, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    letter-spacing: 0.05em;
}

.fast-track-spaces {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

/* Rat Race - Inner Square */
.rat-race {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 88%;
    height: 88%;
    border-radius: var(--border-radius-lg);
    overflow: visible;
}

.rat-race-label {
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #4a5568, #2d3748);
    color: var(--text-primary);
    padding: 6px 18px;
    border-radius: 20px;
    font-weight: 600;
    font-size: var(--font-size-xs);
    white-space: nowrap;
    z-index: 20;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Rat Race Spaces */
.rat-race-spaces {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

/* Board Spaces - Premium Base */
.board-space {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    box-sizing: border-box;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.board-space::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.board-space:hover {
    z-index: 100;
    transform: scale(1.2);
    box-shadow:
        0 0 30px rgba(255, 255, 255, 0.2),
        0 10px 30px rgba(0, 0, 0, 0.4);
}

.board-space .space-icon {
    font-size: 2.8rem;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.board-space:hover .space-label {
    opacity: 1;
    transform: translateY(-5px);
}

/* Tooltip for board spaces */
.space-tooltip {
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(10, 10, 15, 0.95);
    border: 1px solid var(--vn-gold);
    color: white;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.85rem;
    width: 220px;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.board-space:hover .space-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.space-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 8px;
    border-style: solid;
    border-color: var(--vn-gold) transparent transparent transparent;
}

.tooltip-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    font-weight: 700;
    color: var(--vn-gold);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 4px;
}

.tooltip-body {
    line-height: 1.4;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
}

/* Corner spaces */
.board-space.corner {
    width: 15%;
    height: 15%;
    border-radius: 10px;
}

/* Edge spaces */
.board-space.edge-horizontal {
    width: 14%;
    height: 15%;
    border-radius: 10px;
}

.board-space.edge-vertical {
    width: 15%;
    height: 14%;
    border-radius: 10px;
}

/* Corner positions */
.board-space[data-position="corner-tl"] {
    top: 0;
    left: 0;
}

.board-space[data-position="corner-tr"] {
    top: 0;
    right: 0;
}

.board-space[data-position="corner-br"] {
    bottom: 0;
    right: 0;
}

.board-space[data-position="corner-bl"] {
    bottom: 0;
    left: 0;
}

/* Space Types - Premium Gradients */
.space-opportunity {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.8), rgba(29, 78, 216, 0.9));
    border-color: rgba(96, 165, 250, 0.5);
}

.space-opportunity::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa, #3b82f6);
}

.space-market {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.8), rgba(109, 40, 217, 0.9));
    border-color: rgba(167, 139, 250, 0.5);
}

.space-market::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #8b5cf6, #a78bfa, #8b5cf6);
}

.space-doodad {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.8), rgba(194, 65, 12, 0.9));
    border-color: rgba(251, 146, 60, 0.5);
}

.space-doodad::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #f97316, #fb923c, #f97316);
}

.space-payday {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.8), rgba(5, 150, 105, 0.9));
    border-color: rgba(52, 211, 153, 0.5);
    animation: paydayGlowPremium 2.5s ease-in-out infinite;
}

@keyframes paydayGlowPremium {

    0%,
    100% {
        box-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
    }

    50% {
        box-shadow: 0 0 30px rgba(16, 185, 129, 0.6), 0 0 60px rgba(16, 185, 129, 0.3);
    }
}

.space-payday::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #10b981, #34d399, #10b981);
}

.space-baby {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.8), rgba(190, 24, 93, 0.9));
    border-color: rgba(244, 114, 182, 0.5);
}

.space-baby::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ec4899, #f472b6, #ec4899);
}

.space-charity {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.8), rgba(180, 83, 9, 0.9));
    border-color: rgba(251, 191, 36, 0.5);
}

.space-charity::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #f59e0b, #fbbf24, #f59e0b);
}

.space-downsized {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.8), rgba(185, 28, 28, 0.9));
    border-color: rgba(248, 113, 113, 0.5);
    animation: downsizedPulsePremium 2s ease-in-out infinite;
}

@keyframes downsizedPulsePremium {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 10px rgba(239, 68, 68, 0.3);
    }

    50% {
        opacity: 0.8;
        box-shadow: 0 0 25px rgba(239, 68, 68, 0.5);
    }
}

.space-downsized::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ef4444, #f87171, #ef4444);
}

.space-start {
    background: linear-gradient(135deg, var(--vn-gold), var(--vn-gold-dark));
    border-color: var(--vn-gold);
    font-weight: 700;
}

.space-start .space-icon {
    font-size: 2.2rem;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

/* Fast Track Spaces - Premium */
.fast-track-space {
    position: absolute;
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--vn-gold), var(--vn-gold-dark));
    border: 2px solid var(--vn-gold-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 5;
    box-shadow:
        0 0 20px rgba(212, 175, 55, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
    pointer-events: auto;
}

.fast-track-space:hover {
    transform: translate(-50%, -50%) scale(1.3) !important;
    background: linear-gradient(135deg, var(--vn-gold-light), var(--vn-gold));
    box-shadow:
        0 0 40px rgba(212, 175, 55, 0.8),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
    z-index: 10;
}

.fast-track-orbital-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 53%;
    height: 53%;
    border: 1px dashed rgba(212, 175, 55, 0.4);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}

/* Board Center - Premium Glass */
.board-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44%;
    height: 44%;
    background: var(--glass-bg);
    border-radius: var(--border-radius-xl);
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        inset 0 0 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(0, 0, 0, 0.3);
    z-index: 1;
    backdrop-filter: blur(20px);
}

.center-content {
    text-align: center;
    padding: var(--spacing-xl);
    width: 100%;
}

.center-content h3 {
    font-family: var(--font-display);
    color: var(--vn-gold);
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-lg);
    letter-spacing: 0.05em;
}

.quick-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
    font-size: 1.2rem;
}

.quick-stat {
    display: flex;
    justify-content: space-between;
    gap: var(--spacing-md);
    padding: var(--spacing-sm) var(--spacing-md);
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--border-radius);
    border: 1px solid var(--glass-border);
}

.quick-stat-label {
    color: var(--text-muted);
}

.quick-stat-value {
    font-weight: 600;
}

.quick-stat-value.positive {
    color: var(--success-color);
}

.quick-stat-value.negative {
    color: var(--danger-color);
}

/* Player Token - Premium 3D */
.player-token {
    position: absolute;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: inset 0 -3px 6px rgba(0, 0, 0, 0.3),
        inset 0 3px 6px rgba(255, 255, 255, 0.3);
    z-index: 200;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
    cursor: pointer;
}

.player-token:hover {
    transform: scale(1.25) translateY(-2px);
    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.5),
        inset 0 -3px 6px rgba(0, 0, 0, 0.3),
        inset 0 3px 6px rgba(255, 255, 255, 0.3);
}

.player-token.active {
    animation: tokenPulsePremium 1.5s ease-in-out infinite;
}

@keyframes tokenPulsePremium {

    0%,
    100% {
        transform: scale(1);
        box-shadow:
            0 0 0 0 rgba(255, 255, 255, 0),
            0 4px 10px rgba(0, 0, 0, 0.4);
    }

    50% {
        transform: scale(1.1);
        box-shadow:
            0 0 0 8px rgba(255, 255, 255, 0.2),
            0 0 30px currentColor,
            0 8px 20px rgba(0, 0, 0, 0.4);
    }
}

.player-token.moving {
    animation: tokenMovePremium 0.35s ease-out;
}

@keyframes tokenMovePremium {
    0% {
        transform: scale(1);
    }

    30% {
        transform: scale(1.4) translateY(-15px);
    }

    100% {
        transform: scale(1);
    }
}

/* Player Panel - Premium Glass */
.player-panel {
    width: 340px;
    background: var(--glass-bg);
    border-left: 1px solid var(--border-gold);
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    overflow-y: auto;
    backdrop-filter: blur(20px);
}

.current-turn h3 {
    font-family: var(--font-display);
    color: var(--vn-gold);
    font-size: var(--font-size-base);
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.current-turn h3::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    background: var(--vn-gold);
    border-radius: 50%;
    animation: pulseDot 1.5s infinite;
    box-shadow: 0 0 10px var(--vn-gold);
}

@keyframes pulseDot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(0.8);
    }
}

.current-player-display {
    background: rgba(0, 0, 0, 0.3);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-gold);
    backdrop-filter: blur(10px);
}

.current-player-info {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.player-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-xl);
    color: white;
    font-weight: 700;
    border: 3px solid white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5),
        inset 0 -3px 6px rgba(0, 0, 0, 0.3),
        inset 0 3px 6px rgba(255, 255, 255, 0.3);
}

.player-details h4 {
    margin: 0;
    font-family: var(--font-display);
    font-size: var(--font-size-lg);
}

.player-profession {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
}

.player-money {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-sm);
    font-size: var(--font-size-sm);
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--border-color);
}

.money-item {
    text-align: center;
    padding: var(--spacing-sm);
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--border-radius);
    border: 1px solid var(--glass-border);
}

.money-label {
    color: var(--text-muted);
    font-size: var(--font-size-xs);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.money-value {
    font-weight: 700;
    font-size: var(--font-size-base);
}

.money-value.positive {
    color: var(--success-color);
}

.money-value.negative {
    color: var(--danger-color);
}

/* Dice Area - Premium */
.dice-area {
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--glass-border);
}

.dice-container {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
    perspective: 800px;
}

.dice {
    width: 64px;
    height: 64px;
    background: linear-gradient(145deg, #ffffff, #e8e8e8);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: 700;
    color: #0a0a0f;
    box-shadow:
        0 6px 0 #c0c0c0,
        0 10px 20px rgba(0, 0, 0, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.9),
        inset 0 -2px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
    user-select: none;
    transform-style: preserve-3d;
}

.dice:hover {
    transform: translateY(-3px);
    box-shadow:
        0 9px 0 #c0c0c0,
        0 15px 25px rgba(0, 0, 0, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.9),
        inset 0 -2px 0 rgba(0, 0, 0, 0.1);
}

.dice.rolling {
    animation: diceRollPremium 1s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes diceRollPremium {
    0% {
        transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1);
    }

    15% {
        transform: rotateX(180deg) rotateY(90deg) rotateZ(45deg) scale(0.85);
    }

    30% {
        transform: rotateX(360deg) rotateY(180deg) rotateZ(90deg) scale(1.1);
    }

    45% {
        transform: rotateX(540deg) rotateY(270deg) rotateZ(135deg) scale(0.9);
    }

    60% {
        transform: rotateX(720deg) rotateY(360deg) rotateZ(180deg) scale(1.05);
    }

    75% {
        transform: rotateX(810deg) rotateY(405deg) rotateZ(200deg) scale(0.95);
    }

    90% {
        transform: rotateX(720deg) rotateY(360deg) rotateZ(180deg) scale(1.02);
    }

    100% {
        transform: rotateX(720deg) rotateY(360deg) rotateZ(0deg) scale(1);
    }
}

.btn-roll {
    width: 100%;
    font-size: var(--font-size-lg);
    padding: var(--spacing-md) var(--spacing-lg);
    background: linear-gradient(135deg, var(--vn-gold), var(--vn-gold-dark));
    color: #0a0a0f;
    position: relative;
    overflow: hidden;
}

.btn-roll:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-roll.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    margin: auto;
    border: 3px solid transparent;
    border-radius: 50%;
    border-top-color: #0a0a0f;
    animation: spin 0.8s linear infinite;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

@keyframes spin {
    to { transform: translateY(-50%) rotate(360deg); }
}
    border-radius: var(--border-radius-lg);
    font-weight: 700;
    letter-spacing: 0.03em;
    box-shadow:
        0 4px 20px rgba(212, 175, 55, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-roll:hover:not(:disabled) {
    background: linear-gradient(135deg, var(--vn-gold-light), var(--vn-gold));
    box-shadow:
        0 8px 30px rgba(212, 175, 55, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-roll:disabled {
    background: var(--bg-tertiary);
    color: var(--text-muted);
    box-shadow: none;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.btn-action {
    background: rgba(0, 0, 0, 0.3);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
}

.btn-action:hover:not(:disabled) {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--vn-gold);
    transform: translateX(8px);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

/* All Players List */
.all-players {
    margin-top: auto;
}

.all-players h4 {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.players-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.player-mini-card {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--border-radius);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.player-mini-card:hover {
    border-color: var(--vn-gold);
    background: rgba(212, 175, 55, 0.1);
    transform: translateX(5px);
}

.player-mini-card.current {
    border-color: var(--vn-gold);
    background: rgba(212, 175, 55, 0.15);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.player-mini-card.escaped {
    border-color: var(--success-color);
    background: rgba(16, 185, 129, 0.15);
}

.player-mini-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-md);
    color: white;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.player-mini-info {
    flex: 1;
    min-width: 0;
}

.player-mini-name {
    font-size: var(--font-size-sm);
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.player-mini-cashflow {
    font-size: var(--font-size-xs);
    color: var(--text-muted);
}

.player-mini-status {
    font-size: 1.3rem;
}

/* Player status badges */
.player-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: var(--font-size-xs);
    padding: 3px 10px;
    border-radius: 12px;
    margin-top: var(--spacing-xs);
    font-weight: 500;
}

.player-status-badge.escaped {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.player-status-badge.unemployed {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.player-status-badge.charity {
    background: rgba(212, 175, 55, 0.2);
    color: var(--vn-gold);
    border: 1px solid rgba(212, 175, 55, 0.3);
}