.dashboard-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.char-card {
    text-align: center;
}

.avatar-container {
    width: 150px;
    height: 150px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    padding: 5px;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.avatar-container img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    background: var(--bg-dark);
}

.exp-bar {
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    margin: 1rem 0;
    overflow: hidden;
}

.exp-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    width: 45%; /* Dynamic */
    box-shadow: 0 0 10px var(--secondary);
}

.stat-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.stat-item {
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
    padding: 0.5rem;
    border-bottom: 1px solid var(--glass-border);
}

.stat-value {
    color: var(--secondary);
    font-weight: bold;
}

.quest-log {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quest-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    animation: slideIn 0.5s ease forwards;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.difficulty-badge {
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: bold;
}

.diff-easy { background: #4caf50; color: #fff; }
.diff-medium { background: #ff9800; color: #fff; }
.diff-hard { background: #f44336; color: #fff; }
.diff-epic { background: #9c27b0; color: #fff; box-shadow: 0 0 10px #9c27b0; }
