/* Bento Grid Dashboard Styles */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
    gap: 1.25rem;
    padding: 0 0 2rem 0;
}

.bento-card {
    background: #1b1d25;
    border-radius: 12px;
    padding: 1.1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.light .bento-card {
    background: #ececec;
}

.card-header {
    margin-bottom: 1rem;
}

.user-info-container {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.user-main-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.user-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: #fafafa;
}

.light .user-title {
    color: #18181b;
}

.rank-badge {
    font-size: 0.75rem;
    background: #27272a;
    padding: 2px 8px;
    border-radius: 999px;
    color: #a1a1aa;
}

.stats-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    color: #71717a;
}

.stat-num {
    font-size: 1.125rem;
    font-weight: 700;
}

/* Colors - Aesthetic and Muted */
.c-easy { color: #10b981; }
.c-medium { color: #f59e0b; }
.c-hard { color: #ef4444; }

.progress-track {
    height: 8px;
    background: #27272a;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
}

.light .progress-track {
    background: #f4f4f5;
}

.bar { height: 100%; border-radius: 4px; }
.bar-easy { background: #10b981; }
.bar-medium { background: #f59e0b; }
.bar-hard { background: #ef4444; }

.user-handle {
    font-size: 0.8rem;
    color: #71717a;
    font-weight: 400;
}

.socials-list {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.social-icon svg {
    width: 18px;
    height: 18px;
    color: #71717a;
    transition: none;
}

.light .social-icon svg {
    color: #a1a1aa;
}

.last-solved-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.25rem;
}

.active-badge {
    font-size: 0.7rem;
    color: #10b981;
    font-weight: 600;
    opacity: 0.9;
}

.total-summary {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: #71717a;
}

.last-solved {
    margin-top: 1rem;
    background: rgba(255, 255, 255, 0.02);
    padding: 0.75rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.light .last-solved {
    background: #f8f8f8;
    border-color: #ececec;
}

.problem-title {
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #eaeaea;
}

.light .problem-title {
    color: #18181b;
}

/* Disable Hover/Animation */
* {
    transition: none !important;
    animation: none !important;
}
a:hover {
    opacity: 1 !important;
}
.bento-card:hover {
    transform: none !important;
}
