/* Styles for ArabicDiscord User Dashboard */

.stat-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease, box-shadow 0.25s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
    border-color: rgba(102, 121, 216, 0.3);
    background: rgba(255, 255, 255, 0.04);
}

.welcome-card {
    background: linear-gradient(135deg, rgba(65, 86, 189, 0.12) 0%, rgba(13, 18, 40, 0.6) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem 1rem;
    border-radius: 0.85rem;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.2s ease, border-color 0.2s ease;
}

.activity-item:hover {
    background: rgba(255, 255, 255, 0.035);
    border-color: rgba(255, 255, 255, 0.1);
}

.activity-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.85rem;
}

.insight-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.85rem;
    padding: 0.85rem 1rem;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.insight-card:hover {
    border-color: rgba(102, 121, 216, 0.25);
    background: rgba(255, 255, 255, 0.035);
}

.dash-server-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.25rem;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.dash-server-card:hover {
    transform: translateY(-3px);
    border-color: rgba(102, 121, 216, 0.4);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
}

.dash-banner-wrapper {
    position: relative;
    height: 90px;
    width: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, #101631 0%, #1e295d 100%);
}

.dash-banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dash-icon-wrapper {
    position: relative;
    margin-top: -30px;
    margin-inline-start: 1.25rem;
    width: 60px;
    height: 60px;
    border-radius: 1rem;
    overflow: hidden;
    border: 3px solid #050816;
    background: #101631;
    z-index: 5;
    flex-shrink: 0;
}

.dash-icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Animations */
@keyframes dashboardFadeUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-dash-fade {
    animation: dashboardFadeUp 0.4s ease-out forwards;
}

/* Remove background hero glow on dashboard */
.hero-glow {
    display: none !important;
}
