/* ==========================================================================
   Card Styles
   Stat cards, card badges (yellow/red), gradient headers
   ========================================================================== */

/* Player Modal Stat Cards */
.stat-card {
    border-radius: 12px;
    width: 108px;
    height: 108px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.stat-card-label {
    font-size: 14px;
    text-transform: uppercase;
    opacity: 0.7;
}

.stat-card-value {
    font-size: 28px;
    font-weight: bold;
}

/* ==========================================================================
   Card Badges (Yellow/Red Cards)
   ========================================================================== */

.card-badge {
    display: inline-block;
    width: 14px;
    height: 20px;
    border-radius: 2px;
    margin-right: 2px;
    vertical-align: middle;
}

.card-badge--yellow {
    background: #ffc107;
    position: relative;
}

.card-badge--red {
    background: #dc3545;
}

.card-badge__count {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12px;
    font-weight: bold;
    color: #000;
}

/* ==========================================================================
   Event Ticker Card Icon (Match Events)
   ========================================================================== */

.event-ticker-icon {
    font-size: 1.2em;
}

.event-ticker-body {
    max-height: 200px;
    overflow-y: auto;
}

/* ==========================================================================
   Tutorial List
   ========================================================================== */

.tutorial-list {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.tutorial-list li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}
