.modal {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
}

.modal-content {
    background: var(--bg-panel);
    width: 90%;
    max-width: 400px;
    border-radius: 15px;
    padding: 20px;
    position: relative;
    animation: popIn 0.3s ease;
}

.close-btn {
    position: absolute;
    top: 10px; right: 15px;
    font-size: 2rem;
    cursor: pointer;
}

.profile-header {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.big-avatar img {
    width: 80px; height: 80px;
    border-radius: 10px;
    border: 2px solid var(--gold);
}

.social-stats {
    display: flex;
    gap: 10px;
    font-size: 0.75rem;
    margin-top: 5px;
    color: var(--text-gray);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
}

.stat-box {
    background: rgba(0,0,0,0.2);
    padding: 10px;
    border-radius: 8px;
    text-align: center;
}

.stat-box h3 { color: var(--accent-green); }
.win-high { color: var(--gold) !important; }

.mini-hero {
    display: inline-block;
    padding: 5px 10px;
    background: #444;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-right: 5px;
}
