/* Premium Profile Dashboard Styles */

.profile-dashboard-container {
    background-color: #f8fafc;
    min-height: 100vh;
    padding-bottom: 20px;
}

/* Premium Hero Section */
.profile-premium-hero {
    position: relative;
    padding: 40px 20px 60px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    text-align: center;
    border-radius: 0 0 30px 30px;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
    margin-bottom: -30px;
    overflow: hidden;
}

.profile-premium-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    animation: rotate 20s linear infinite;
    z-index: 1;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.hero-avatar-container {
    position: relative;
    z-index: 2;
    width: 110px;
    height: 110px;
    margin: 0 auto 16px;
}

.hero-avatar-large {
    width: 100%;
    height: 100%;
    font-size: 54px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.hero-info {
    position: relative;
    z-index: 2;
}

.hero-name {
    font-size: 26px;
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-cms {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.9;
    margin-top: 4px;
}

.hero-badge-container {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Quick Stats Row */
.profile-quick-stats {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    padding: 0 16px;
}

.stat-box {
    background: white;
    border-radius: 18px;
    padding: 15px 5px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease;
}

.stat-box:active {
    transform: scale(0.95);
}

.stat-icon-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    font-size: 18px;
}

.bg-blue-light {
    background: #eff6ff;
    color: #3b82f6;
}

.bg-green-light {
    background: #f0fdf4;
    color: #22c55e;
}

.bg-purple-light {
    background: #faf5ff;
    color: #a855f7;
}

.bg-orange-light {
    background: #fff7ed;
    color: #f97316;
}

.stat-value-sm {
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2px;
}

.stat-label-xs {
    font-size: 9px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Action Grid */
.profile-action-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 24px 16px;
}

.action-card {
    background: white;
    border-radius: 20px;
    padding: 20px 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.5s ease-out backwards;
}

.action-card:active {
    transform: scale(0.94);
    background: #f8fafc;
}

.action-icon {
    font-size: 28px;
    margin-bottom: 10px;
    display: block;
}

.action-label {
    font-size: 12px;
    font-weight: 700;
    color: #334155;
    line-height: 1.2;
}

.action-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #ef4444;
    color: white;
    font-size: 9px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 10px;
}

/* Recent Activity Section */
.profile-recent-section {
    padding: 0 16px;
    margin-top: 10px;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.section-title {
    font-size: 15px;
    font-weight: 800;
    color: #1e293b;
    margin: 0;
}

.view-all-link {
    font-size: 12px;
    font-weight: 700;
    color: #3b82f6;
    text-decoration: none;
}

.activity-list-premium {
    background: white;
    border-radius: 20px;
    padding: 10px 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.activity-item-premium {
    display: flex;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #f1f5f9;
}

.activity-item-premium:last-child {
    border-bottom: none;
}

.activity-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 14px;
    font-size: 20px;
}

.activity-content {
    flex: 1;
}

.activity-title-premium {
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2px;
}

.activity-desc-premium {
    font-size: 12px;
    color: #64748b;
}

.activity-time-premium {
    font-size: 11px;
    font-weight: 600;
    color: #94a3b8;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse-animation {
    0% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 35px rgba(255, 255, 255, 0.3);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    }
}

.pulse-animation {
    animation: pulse-animation 3s infinite ease-in-out;
}

.stagger-1 {
    animation-delay: 0.1s;
}

.stagger-2 {
    animation-delay: 0.2s;
}

.stagger-3 {
    animation-delay: 0.3s;
}

.stagger-4 {
    animation-delay: 0.4s;
}

.stagger-5 {
    animation-delay: 0.5s;
}

.stagger-6 {
    animation-delay: 0.6s;
}

.stagger-7 {
    animation-delay: 0.7s;
}

.stagger-8 {
    animation-delay: 0.8s;
}

.stagger-9 {
    animation-delay: 0.9s;
}