html {
    height: 100%;
    width: 100%;
    background-color: #f8f9fa;
}
.stat-icon_b3.balance-icon_b3 i {
    color: #666666;
}

.stat-icon_b3.today-icon_b3 i {
    color: #666666;
}

.stats-container_b3 .stat-icon_b3 i {
    color: #666666;
}

.progress-ring-circle-bg_b3 {
    stroke: rgba(248, 125, 5, 0.2);
}
.progress-ring-circle_b3 {
    transition: stroke-dashoffset 0.5s ease;
    transform-origin: center;
}
.mining-button-container_b3 {
    position: relative;
    z-index: 15;
}
.mining-stats_b3 .value_b3 {
    color: #f87d05;
    font-weight: bold;
    transition: all 0.3s ease;
}

.dashboard-container_b3 {
    width: calc(100% - 260px);
    margin-left: 260px;
    min-height: 100vh;
    background-color: #ffffff;
    padding: 30px;
}

/* Main Content Styles */
.main-content_b3 {
    flex: 1;
    padding: 20px;
    background-color: #f8f9fa;
    overflow-y: auto;
}

/* Top Header Styles */
.top-header_b3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    background-color: white;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.user-info_b3 {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-avatar_b3 img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #1a2b5f;
}

.user-details_b3 h3 {
    font-weight: 600;
    color: #333;
    margin-bottom: 3px;
}

.user-details_b3 p {
    color: #666;
    font-size: 0.9rem;
}

.highlight_b3 {
    color: #ff7b00;
    font-weight: 600;
}

.notification-area_b3 {
    position: relative;
}

.icon-button_b3 {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #666;
    cursor: pointer;
    padding: 10px;
    position: relative;
}

.notification-badge_b3 {
    position: absolute;
    top: 2px;
    right: 2px;
    background-color: #ff5100;
    color: white;
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.notification-dropdown_b3 {
    position: absolute;
    top: 100%;
    right: 0;
    width: 300px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 15px;
    display: none;
    z-index: 10;
}

.notification-dropdown_b3.active {
    display: block;
    animation: fadeIn_b3 0.3s ease;
}

.notification-dropdown_b3 h4 {
    margin-bottom: 10px;
    color: #333;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.notification-dropdown_b3 ul {
    list-style: none;
}

.notification-dropdown_b3 li {
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.notification-dropdown_b3 li:last-child {
    border-bottom: none;
}

.notification-dropdown_b3 i {
    color: #1a2b5f;
    background-color: rgba(26, 43, 95, 0.1);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.notification-dropdown_b3 li small {
    display: block;
    color: #999;
    font-size: 0.75rem;
    margin-top: 5px;
}

/* Announcements Banner */
.announcements-banner_b3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #1a2b5f 0%, #3a4b8f 100%);
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    animation: slideIn_b3 0.5s ease;
}

.announcement-content_b3 {
    display: flex;
    align-items: center;
    gap: 15px;
}

.announcement-content_b3 i {
    font-size: 1.5rem;
    color: #ff7b00;
}

.dismiss-btn_b3 {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.dismiss-btn_b3:hover {
    color: white;
}

/* Dashboard Widgets */
.dashboard-widgets_b3 {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
}

.widget-card_b3 {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.widget-card_b3:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.widget-card_b3 h2 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    border-bottom: 1px solid #f5f5f5;
    padding-bottom: 10px;
}

/* Mining Widget */
.mining-widget_b3 {
    grid-column: span 5;
    grid-row: span 2;
}

.mining-circle_b3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.progress-ring_b3 {
    position: relative;
    width: 280px;
    height: 280px;
    margin-bottom: 20px;
}

.progress-ring-svg_b3 {
    transform: rotate(-90deg);
}

.progress-ring-circle-bg_b3 {
    fill: transparent;
    stroke: #edf2f7;
    stroke-width: 15;
}

.progress-ring-circle_b3 {
    fill: transparent;
    stroke: url(#gradient);
    stroke-width: 15;
    stroke-linecap: round;
    stroke-dasharray: 753.98;
    stroke-dashoffset: 753.98;
    transition: stroke-dashoffset 1s ease;
}

.mining-button-container_b3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 160px;
}

.mining-button_b3 {
    background: linear-gradient(135deg, #dddddd 0%, #aaaaaa 100%);
    border: none;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    color: #666;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.mining-button_b3:hover {
    transform: scale(1.05);
}

.mining-button_b3 i {
    font-size: 2rem;
}

.mining-button_b3.active {
    background: linear-gradient(135deg, #ff7b00 0%, #ff5100 100%);
    color: white;
    animation: pulse_b3 2s infinite;
}

.mining-timer_b3 {
    margin-top: 15px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
}

.mining-status_b3 {
    margin-top: 5px;
    font-size: 0.9rem;
    color: #999;
}

.mining-status_b3.active {
    color: #ff7b00;
    font-weight: 600;
}

.mining-stats_b3 {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 10px;
}

.mining-stat_b3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f8f9fa;
    padding: 10px 15px;
    border-radius: 8px;
    width: 48%;
}

.mining-stat_b3 .label_b3 {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 5px;
}

.mining-stat_b3 .value_b3 {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
}

/* Quick Stats */
.quick-stats_b3 {
    grid-column: span 7;
}

.stats-grid_b3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.stat-card_b3 {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.stat-card_b3:hover {
    transform: translateY(-3px);
}

.stat-icon_b3 {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    color: white;
}

.balance-icon_b3 {
    background: linear-gradient(135deg, #ff7b00 0%, #ff5100 100%);
}

.today-icon_b3 {
    background: linear-gradient(135deg, #1a2b5f 0%, #3a4b8f 100%);
}

.referral-icon_b3 {
    background: linear-gradient(135deg, #00c6fb 0%, #005bea 100%);
}

.task-icon_b3 {
    background: linear-gradient(135deg, #6d4aff 0%, #b44aff 100%);
}

.stat-details_b3 {
    flex: 1;
}

.stat-details_b3 h3 {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
}

.stat-value_b3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
}

.task-progress_b3 {
    display: flex;
    align-items: center;
    gap: 10px;
}

.progress-bar_b3 {
    flex: 1;
    height: 10px;
    background-color: #edf2f7;
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill_b3 {
    height: 100%;
    background: linear-gradient(135deg, #6d4aff 0%, #b44aff 100%);
    border-radius: 10px;
    transition: width 0.5s ease;
}

.progress-text_b3 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    min-width: 40px;
    text-align: right;
}

/* Activity Feed */
.activity-feed_b3 {
    grid-column: span 12;
    max-height: 400px;
    overflow-y: auto;
}

.activity-list_b3 {
    list-style: none;
}

.activity-item_b3 {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f5f5f5;
}

.activity-item_b3:last-child {
    border-bottom: none;
}

.activity-icon_b3 {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1rem;
    color: white;
    flex-shrink: 0;
}

.mining-activity_b3 {
    background: linear-gradient(135deg, #ff7b00 0%, #ff5100 100%);
}

.referral-activity_b3 {
    background: linear-gradient(135deg, #00c6fb 0%, #005bea 100%);
}

.task-activity_b3 {
    background: linear-gradient(135deg, #6d4aff 0%, #b44aff 100%);
}

.bonus-activity_b3 {
    background: linear-gradient(135deg, #00b09b 0%, #96c93d 100%);
}

.activity-details_b3 {
    flex: 1;
}

.activity-details_b3 h4 {
    font-size: 1rem;
    color: #333;
    margin-bottom: 3px;
}

.activity-details_b3 p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
}

.activity-time_b3 {
    font-size: 0.8rem;
    color: #999;
}

/* Coin Animation Container */
.coin-animation-container_b3 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1000;
}

.coin_b3 {
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: #ff7b00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: scale(0);
    z-index: 1001;
}

/* Animations */
@keyframes fadeIn_b3 {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn_b3 {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse_b3 {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 123, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 123, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 123, 0, 0);
    }
}

@keyframes coinFly_b3 {
    0% {
        opacity: 1;
        transform: scale(1) translate(0, 0);
    }
    100% {
        opacity: 0;
        transform: scale(0.5) translate(var(--tx), var(--ty));
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .dashboard-widgets_b3 {
        grid-template-columns: repeat(1, 1fr);
    }
    
    .mining-widget_b3, .quick-stats_b3, .activity-feed_b3 {
        grid-column: span 1;
    }
}

@media (max-width: 992px) {
    .stats-grid_b3 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .dashboard-container_b3 {
        flex-direction: column;
            width: 100%;
            margin-left: 0px;
    }
    
    .main-content_b3 {
        margin-top: 70px;
    }
    
    
    
    .user-details_b3 h3 {
        font-size: 1rem;
    }
    
    .mining-circle_b3 {
        transform: scale(0.8);
        margin-top: 0;
    }
}

@media (max-width: 576px) {
    .user-info_b3 {
        gap: 10px;
    }
    
    .user-avatar_b3 img {
        width: 40px;
        height: 40px;
    }
    
    .user-details_b3 h3 {
        font-size: 0.9rem;
    }
    
    .mining-circle_b3 {
        transform: scale(0.7);
        margin: -20px 0;
    }
    
    .mining-stats_b3 {
        flex-direction: column;
        gap: 10px;
    }
    
    .mining-stat_b3 {
        width: 100%;
    }
}