/**
 * Beauty Swap - Achievement System Styles
 * Version: 2.0
 */

:root {
    --bs-primary: #DE2049;
    --bs-secondary: #FF6B9D;
    --bs-dark: #1A1A2E;
    --bs-light: #F8F9FA;
    --bs-bronze: #CD7F32;
    --bs-silver: #C0C0C0;
    --bs-gold: #FFD700;
}

/* ========== PROFILE HEADER BADGES ========== */
.bs-profile-badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    border-radius: 25px;
    margin: 10px 0;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.bs-profile-badge.bronze-badge {
    background: linear-gradient(135deg, var(--bs-bronze) 0%, #B8860B 100%);
    color: white;
}

.bs-profile-badge.silver-badge {
    background: linear-gradient(135deg, var(--bs-silver) 0%, #A8A8A8 100%);
    color: #333;
}

.bs-profile-badge.gold-badge {
    background: linear-gradient(135deg, var(--bs-gold) 0%, #FFA500 100%);
    color: #333;
}

.bs-profile-badge .badge-icon {
    margin-right: 8px;
    font-size: 20px;
}

.bs-verified-badge {
    display: inline-flex;
    align-items: center;
    background: #4CAF50;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    margin-left: 10px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.bs-verified-badge .verified-icon {
    margin-right: 6px;
    font-weight: bold;
}

/* ========== ACHIEVEMENTS PAGE ========== */
.bs-achievements-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.bs-achievements-hero {
    background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-secondary) 100%);
    color: white;
    padding: 60px 40px;
    border-radius: 25px;
    text-align: center;
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(222, 32, 73, 0.3);
}

.hero-badge-display {
    margin-bottom: 30px;
}

.badge-icon-huge {
    font-size: 100px;
    margin-bottom: 15px;
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.2));
}

.badge-icon-huge.bronze { filter: drop-shadow(0 8px 16px rgba(205, 127, 50, 0.4)); }
.badge-icon-huge.silver { filter: drop-shadow(0 8px 16px rgba(192, 192, 192, 0.4)); }
.badge-icon-huge.gold { filter: drop-shadow(0 8px 16px rgba(255, 215, 0, 0.4)); }

.hero-badge-title {
    font-size: 36px;
    font-weight: 800;
    margin: 0 0 20px 0;
    color: white;
}

.hero-points-display {
    margin: 20px 0;
}

.points-number {
    font-size: 56px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 5px;
}

.points-label {
    font-size: 18px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-progress-section {
    background: rgba(255,255,255,0.15);
    padding: 25px;
    border-radius: 15px;
    margin-top: 30px;
    backdrop-filter: blur(10px);
}

.progress-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: 600;
}

.progress-percentage {
    font-size: 20px;
    font-weight: 800;
}

.progress-bar-wrapper {
    background: rgba(255,255,255,0.2);
    height: 14px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-bar-fill {
    background: linear-gradient(90deg, #4CAF50 0%, #8BC34A 100%);
    height: 100%;
    border-radius: 10px;
    transition: width 0.6s ease;
    box-shadow: 0 2px 10px rgba(76, 175, 80, 0.5);
}

.progress-remaining {
    font-size: 14px;
    opacity: 0.9;
}

.hero-max-level {
    margin-top: 30px;
    padding: 20px;
    background: rgba(255,255,255,0.15);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.max-level-icon {
    font-size: 50px;
    display: block;
    margin-bottom: 10px;
}

.max-level-text {
    font-size: 18px;
    font-weight: 600;
}

.hero-stats-mini {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
}

.mini-stat {
    text-align: center;
}

.mini-stat-value {
    display: block;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 5px;
}

.mini-stat-label {
    font-size: 13px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========== STATS GRID ========== */
.bs-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    border-color: var(--bs-primary);
}

.stat-icon {
    font-size: 50px;
    margin-bottom: 15px;
}

.stat-value {
    font-size: 42px;
    font-weight: 900;
    color: var(--bs-primary);
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

/* ========== SECTIONS ========== */
.bs-section {
    margin-bottom: 40px;
}

.section-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--bs-dark);
    display: flex;
    align-items: center;
    gap: 12px;
}

.title-icon {
    font-size: 32px;
}

/* ========== ACHIEVEMENT CARDS ========== */
.milestone-grid,
.streak-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
}

.achievement-card {
    background: white;
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    border: 3px solid #e9ecef;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.achievement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-secondary) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.achievement-card.earned {
    border-color: var(--bs-primary);
    box-shadow: 0 8px 25px rgba(222, 32, 73, 0.25);
    transform: scale(1.05);
}

.achievement-card.earned::before {
    opacity: 1;
}

.achievement-card.earned * {
    color: white !important;
    position: relative;
    z-index: 1;
}

.achievement-card.locked {
    opacity: 0.5;
    background: #f8f9fa;
}

.achievement-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.achievement-number {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 5px;
    color: var(--bs-primary);
}

.achievement-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #666;
}

.achievement-reward {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50 !important;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
    margin-top: 10px;
}

.achievement-card.earned .achievement-reward {
    background: rgba(255,255,255,0.3);
    color: white !important;
}

.achievement-progress {
    font-size: 13px;
    color: #999;
    font-weight: 600;
    margin-top: 10px;
}

/* ========== ACTIVITY TIMELINE ========== */
.activity-timeline {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border-bottom: 2px solid #f0f0f0;
    transition: all 0.3s ease;
}

.activity-item:last-child {
    border-bottom: none;
}

.activity-item:hover {
    background: #f8f9fa;
    transform: translateX(5px);
}

.activity-points {
    background: linear-gradient(135deg, #4CAF50 0%, #8BC34A 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 800;
    font-size: 16px;
    min-width: 60px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.activity-content {
    flex: 1;
}

.activity-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--bs-dark);
    margin-bottom: 5px;
}

.activity-time {
    font-size: 13px;
    color: #999;
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-icon {
    font-size: 80px;
    margin-bottom: 20px;
    opacity: 0.5;
}

.empty-state p {
    color: #999;
    font-size: 16px;
}

/* ========== MEMBER DIRECTORY ========== */
.member-badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin: 5px 5px 5px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.member-badge-tag.bronze {
    background: var(--bs-bronze);
    color: white;
}

.member-badge-tag.silver {
    background: var(--bs-silver);
    color: #333;
}

.member-badge-tag.gold {
    background: var(--bs-gold);
    color: #333;
}

.member-verified-tag {
    display: inline-flex;
    align-items: center;
    background: #4CAF50;
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin: 5px 0;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

/* ========== DASHBOARD ========== */
.bs-dashboard {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.dashboard-hero {
    background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-secondary) 100%);
    color: white;
    padding: 50px 40px;
    border-radius: 25px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 40px rgba(222, 32, 73, 0.3);
}

.hero-greeting {
    font-size: 42px;
    font-weight: 900;
    margin: 0 0 10px 0;
    color: white;
}

.hero-subtitle {
    font-size: 18px;
    opacity: 0.95;
    margin: 0;
}

.badge-display {
    background: rgba(255,255,255,0.2);
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    min-width: 150px;
}

.badge-icon-large {
    font-size: 60px;
    display: block;
    margin-bottom: 10px;
}

.badge-name {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-box {
    background: white;
    padding: 30px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 5px solid transparent;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.stat-box.stat-points { border-left-color: var(--bs-primary); }
.stat-box.stat-swaps { border-left-color: #9C27B0; }
.stat-box.stat-streak { border-left-color: #FF9800; }
.stat-box.stat-pending { border-left-color: #2196F3; }

.stat-box .stat-icon {
    font-size: 48px;
}

.stat-details {
    flex: 1;
}

.stat-box .stat-value {
    font-size: 36px;
    font-weight: 900;
    color: var(--bs-dark);
    margin: 0 0 5px 0;
    line-height: 1;
}

.stat-box .stat-label {
    font-size: 13px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin: 0;
}

.stat-box .stat-link {
    color: var(--bs-primary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 30px;
}

.dashboard-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

.card-title {
    font-size: 22px;
    font-weight: 800;
    margin: 0 0 25px 0;
    color: var(--bs-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.quick-actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 25px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: var(--bs-dark);
    text-decoration: none;
    border-radius: 15px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.action-btn:hover {
    background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-secondary) 100%);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(222, 32, 73, 0.3);
    border-color: var(--bs-primary);
}

.action-icon {
    font-size: 32px;
}

.action-text {
    font-size: 14px;
}

.activity-list {
    max-height: 400px;
    overflow-y: auto;
}

.activity-row {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s ease;
}

.activity-row:last-child {
    border-bottom: none;
}

.activity-row:hover {
    background: #f8f9fa;
}

.activity-badge {
    background: linear-gradient(135deg, #4CAF50 0%, #8BC34A 100%);
    color: white;
    padding: 8px 14px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 14px;
    min-width: 55px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.activity-info {
    flex: 1;
}

.activity-desc {
    font-size: 14px;
    font-weight: 600;
    color: var(--bs-dark);
    margin-bottom: 4px;
}

.activity-date {
    font-size: 12px;
    color: #999;
}

.empty-activity {
    text-align: center;
    padding: 50px 20px;
}

.empty-activity .empty-icon {
    font-size: 60px;
    margin-bottom: 15px;
    opacity: 0.3;
}

.empty-activity p {
    color: #999;
    font-size: 15px;
}

.progress-widget {
    padding: 20px 0;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.progress-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--bs-dark);
}

.progress-percentage {
    font-size: 20px;
    font-weight: 800;
    color: var(--bs-primary);
}

.progress-bar-container {
    margin-bottom: 10px;
}

.progress-bar-track {
    background: #e9ecef;
    height: 12px;
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar-value {
    background: linear-gradient(90deg, var(--bs-primary) 0%, var(--bs-secondary) 100%);
    height: 100%;
    border-radius: 10px;
    transition: width 0.6s ease;
    box-shadow: 0 2px 8px rgba(222, 32, 73, 0.3);
}

.progress-footer {
    font-size: 13px;
    color: #666;
    text-align: right;
}

.max-level-widget {
    text-align: center;
    padding: 30px;
}

.max-icon {
    font-size: 60px;
    margin-bottom: 15px;
}

.milestone-list {
    padding: 10px 0;
}

.milestone-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px;
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.milestone-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.milestone-icon {
    font-size: 28px;
}

.milestone-details {
    flex: 1;
}

.milestone-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--bs-dark);
    margin-bottom: 4px;
}

.milestone-progress {
    font-size: 13px;
    color: #666;
}

.milestone-complete {
    text-align: center;
    padding: 30px;
}

.complete-icon {
    font-size: 50px;
    display: block;
    margin-bottom: 10px;
}

.help-card {
    background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-secondary) 100%);
    color: white;
    text-align: center;
}

.help-card .card-title {
    color: white;
}

.help-card p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
}

.bs-btn-primary,
.bs-btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
}

.bs-btn-primary {
    background: var(--bs-primary);
    color: white;
}

.bs-btn-primary:hover {
    background: var(--bs-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.bs-btn-secondary {
    background: white;
    color: var(--bs-primary);
}

.bs-btn-secondary:hover {
    background: var(--bs-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.bs-login-prompt {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.bs-login-prompt h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--bs-dark);
}

.bs-login-prompt p {
    color: #666;
    margin-bottom: 25px;
    font-size: 16px;
}

/* ========== MOBILE RESPONSIVE ========== */
@media (max-width: 1024px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .dashboard-hero {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .bs-achievements-wrapper,
    .bs-dashboard {
        padding: 15px;
    }
    
    .bs-achievements-hero,
    .dashboard-hero {
        padding: 40px 25px;
    }
    
    .hero-greeting {
        font-size: 32px;
    }
    
    .hero-badge-title {
        font-size: 28px;
    }
    
    .points-number {
        font-size: 42px;
    }
    
    .badge-icon-huge {
        font-size: 70px;
    }
    
    .hero-stats-mini {
        flex-direction: column;
        gap: 20px;
    }
    
    .bs-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .stat-card {
        padding: 20px;
    }
    
    .stat-icon {
        font-size: 40px;
    }
    
    .stat-value {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .milestone-grid,
    .streak-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .achievement-card {
        padding: 20px 15px;
    }
    
    .achievement-icon {
        font-size: 32px;
    }
    
    .achievement-number {
        font-size: 26px;
    }
    
    .dashboard-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-box {
        padding: 20px;
    }
    
    .quick-actions {
        grid-template-columns: 1fr;
    }
    
    .bs-profile-badge,
    .bs-verified-badge {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .activity-timeline {
        padding: 15px;
    }
    
    .activity-item {
        padding: 15px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .hero-greeting {
        font-size: 24px;
    }
    
    .hero-subtitle {
        font-size: 15px;
    }
    
    .points-number {
        font-size: 36px;
    }
    
    .points-label {
        font-size: 14px;
    }
    
    .bs-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .milestone-grid,
    .streak-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-box .stat-value {
        font-size: 28px;
    }
}

/* ========== GAMIPRESS SHORTCODE STYLING ========== */

/* Dashboard Points Display Widget */
.current-points-display-widget {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-secondary) 100%);
    border-radius: 20px;
    margin-bottom: 25px;
}

.current-points-display-widget .gamipress-user-points {
    color: white;
}

.current-points-display-widget .gamipress-user-points-label {
    display: none;
}

.current-points-display-widget .gamipress-user-points-amount {
    font-size: 56px;
    font-weight: 900;
    color: white;
    line-height: 1;
    margin-bottom: 10px;
    display: block;
}

.current-points-display-widget .gamipress-user-points::after {
    content: 'Beauty Points';
    display: block;
    font-size: 16px;
    color: white;
    opacity: 0.95;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 10px;
}

/* Achievements Hero Points Display */
.hero-points-display .gamipress-user-points {
    text-align: center;
}

.hero-points-display .gamipress-user-points-label {
    display: none;
}

.hero-points-display .gamipress-user-points-amount {
    font-size: 56px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 5px;
    color: white;
    display: block;
}

.hero-points-display .gamipress-user-points::after {
    content: 'Beauty Points';
    display: block;
    font-size: 18px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 10px;
    color: white;
}

/* Points Breakdown Custom */
.points-breakdown-custom {
    padding: 10px 0;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
    margin-bottom: 15px;
    border-left: 4px solid var(--bs-primary);
    transition: all 0.3s ease;
}

.breakdown-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.breakdown-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--bs-dark);
}

.breakdown-value {
    font-size: 28px;
    font-weight: 900;
    color: var(--bs-primary);
}

/* All Points Wrapper */
.all-points-wrapper {
    padding: 15px 0;
}

.all-points-wrapper .gamipress-points-types {
    display: grid;
    gap: 15px;
}

.all-points-wrapper .gamipress-points-type {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: 4px solid var(--bs-primary);
}

.all-points-wrapper .gamipress-points-type-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--bs-dark);
}

.all-points-wrapper .gamipress-points-type-amount {
    font-size: 28px;
    font-weight: 900;
    color: var(--bs-primary);
}

/* GamiPress Points Widget (in Recent Activity) */
.gamipress-activity-wrapper .gamipress-points {
    padding: 20px;
    background: white;
    border-radius: 15px;
}

.gamipress-activity-wrapper .gamipress-points-heading {
    font-size: 18px;
    font-weight: 700;
    color: var(--bs-dark);
    margin-bottom: 15px;
}

.gamipress-activity-wrapper .gamipress-points-amount {
    font-size: 42px;
    font-weight: 900;
    color: var(--bs-primary);
    margin-bottom: 10px;
}

/* GamiPress Logs Styling */
.gamipress-activity-wrapper .gamipress-log {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s ease;
}

.gamipress-activity-wrapper .gamipress-log:last-child {
    border-bottom: none;
}

.gamipress-activity-wrapper .gamipress-log:hover {
    background: #f8f9fa;
}

.gamipress-activity-wrapper .gamipress-log-points {
    background: linear-gradient(135deg, #4CAF50 0%, #8BC34A 100%);
    color: white;
    padding: 8px 14px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 14px;
    min-width: 55px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.gamipress-activity-wrapper .gamipress-log-title {
    flex: 1;
    font-size: 14px;
    font-weight: 600;
    color: var(--bs-dark);
}

.gamipress-activity-wrapper .gamipress-log-date {
    font-size: 12px;
    color: #999;
}

/* GamiPress Achievements Grid */
.gamipress-achievements-grid {
    margin-top: 20px;
}

.gamipress-achievements-grid .gamipress-achievement {
    background: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.gamipress-achievements-grid .gamipress-achievement:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    border-color: var(--bs-primary);
}

.gamipress-achievements-grid .gamipress-achievement-earned {
    border-color: var(--bs-primary);
    background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-secondary) 100%);
    color: white;
}

.gamipress-achievements-grid .gamipress-achievement-image {
    margin-bottom: 10px;
}

.gamipress-achievements-grid .gamipress-achievement-image img {
    max-width: 80px;
    height: auto;
}

.gamipress-achievements-grid .gamipress-achievement-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}

.gamipress-achievements-grid .gamipress-achievement-description {
    font-size: 13px;
    opacity: 0.9;
}

/* GamiPress Earnings Widget */
.earnings-widget {
    padding: 0;
}

.earnings-widget .gamipress-earnings {
    padding: 0;
}

.earnings-breakdown {
    margin-top: 25px;
}

.earnings-widget .gamipress-earnings-heading {
    font-size: 15px;
    font-weight: 700;
    color: var(--bs-dark);
    margin-bottom: 15px;
    display: none; /* Hide default heading */
}

.earnings-widget .gamipress-earnings-total {
    display: none; /* Hide as we show it above in current-points-big */
}

.earnings-widget .gamipress-earnings-label {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.earnings-widget .gamipress-earnings-list {
    margin-top: 0;
}

.earnings-widget .gamipress-earnings-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.earnings-widget .gamipress-earnings-item:last-child {
    border-bottom: none;
}

.earnings-widget .gamipress-earnings-item-label {
    font-size: 15px;
    color: var(--bs-dark);
    font-weight: 600;
}

.earnings-widget .gamipress-earnings-item-amount {
    font-size: 20px;
    font-weight: 800;
    color: var(--bs-primary);
}

/* Empty GamiPress Logs State */
.gamipress-activity-wrapper .gamipress-no-results,
.gamipress-achievements-grid .gamipress-no-results,
.all-points-wrapper .gamipress-no-results {
    text-align: center;
    padding: 40px 20px;
    color: #999;
}

.gamipress-activity-wrapper .gamipress-no-results::before,
.gamipress-achievements-grid .gamipress-no-results::before,
.all-points-wrapper .gamipress-no-results::before {
    content: '📊';
    display: block;
    font-size: 50px;
    margin-bottom: 10px;
    opacity: 0.5;
}