/* Dashboard stat cards */
.dashboard-stat-card {
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    padding: var(--space-lg);
}
.dashboard-stat-card::before {
    content: '';
    position: absolute;
    top: -90%; right: 90%;
    width: 500%; height: 200%;
    background: radial-gradient(circle, rgba(88, 87, 87, 0.342) 0%, transparent 40%);
    transition: all 0.6s ease;
    transform: scale(1);
}
.dashboard-stat-card:hover::before { transform: scale(3); }
.dashboard-stat-card .stat-icon { 
    font-size: 1.5rem; 
    margin-bottom: var(--space-md); 
    color: var(--text-on-accent);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gradient-button);
}
.dashboard-stat-card .stat-value { font-size: 2.25rem; font-weight: 700; color: var(--text-primary); }
.dashboard-stat-card .stat-label { font-size: 0.875rem; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.5px; }

/* ===== MODERN DASHBOARD STYLES ===== */
/* Dashboard Layout */
.dashboard-modern {
    padding: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Dashboard Empty State */
.dashboard-empty-state {
    text-align: center;
    padding: 4rem 2rem;
    max-width: 500px;
    margin: 0 auto;
}

.empty-state-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff9f1c, #ffb347);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px rgba(255, 159, 28, 0.3);
}

.empty-state-icon i {
    font-size: 3rem;
    color: white;
}

.dashboard-empty-state h2 {
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 600;
}

.dashboard-empty-state .btn {
    margin-top: 1.5rem;
    padding: 0.75rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    text-transform: none;
    box-shadow: 0 4px 15px rgba(255, 159, 28, 0.3);
}

/* Dashboard Header */
.dashboard-header {
    margin-bottom: 2rem;
}

.welcome-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
    background: rgba(30, 30, 30, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.welcome-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 159, 28, 0.3);
}

.welcome-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.welcome-section:hover .welcome-banner-bg {
    opacity: 0.4;
}

.welcome-banner-fallback {
    background: linear-gradient(135deg, rgba(255, 159, 28, 0.1) 0%, rgba(255, 179, 71, 0.05) 100%);
    opacity: 0.3;
}

.welcome-section:hover .welcome-banner-fallback {
    opacity: 0.4;
}

.welcome-section::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(18,18,18,0.9) 0%, rgba(30,30,30,0.7) 100%);
    z-index: 2;
    pointer-events: none;
}

.welcome-section > * {
    position: relative;
    z-index: 3;
}

.welcome-text h1 {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.team-name {
    color: #ff9f1c;
    text-shadow: 0 2px 10px rgba(255, 159, 28, 0.3);
}

.welcome-text p {
    color: #e9ecef;
    font-size: 1.1rem;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.6);
}

.team-logo-section {
    flex-shrink: 0;
}

.team-logo-dashboard {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid rgba(255, 159, 28, 0.3);
    object-fit: cover;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Dashboard Content Layout */
.dashboard-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 2rem;
}

.dashboard-main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.dashboard-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Dashboard Cards */
.dashboard-card {
    background: rgba(30, 30, 30, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    overflow: hidden;
    transition: all 0.3s ease;
}

.dashboard-card:hover {
    border-color: rgba(255, 159, 28, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.card-header-modern {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-info h3 {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
}

.header-info p {
    color: #6c757d;
    font-size: 0.875rem;
    margin: 0;
}

.header-actions .form-select {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    min-width: 200px;
}

.header-actions .form-select:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 159, 28, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(255, 159, 28, 0.25);
}

.card-content {
    padding: 1.5rem;
}

/* Chart Container */
.chart-container {
    height: 350px;
    position: relative;
    overflow-y: auto;
    overflow-x: hidden;
}

/* Performance Overview chart area (50% bigger) */
.performance-overview .chart-container {
    height: 525px;
}

.chart-container::-webkit-scrollbar {
    width: 8px;
}

.chart-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.chart-container::-webkit-scrollbar-thumb {
    background: rgba(255, 159, 28, 0.5);
    border-radius: 4px;
}

.chart-container::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 159, 28, 0.7);
}

/* Quick Actions Grid */
.actions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.action-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    text-align: left;
    color: #fff;
    text-decoration: none;
}

.action-btn:hover {
    background: rgba(255, 159, 28, 0.1);
    border-color: rgba(255, 159, 28, 0.3);
    transform: translateY(-2px);
    color: #fff;
    text-decoration: none;
}

.action-btn.primary:hover {
    border-color: #f39c12;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.2);
}

.action-btn.secondary:hover {
    border-color: #9b59b6;
    box-shadow: 0 4px 15px rgba(155, 89, 182, 0.2);
}

.action-btn.info:hover {
    border-color: #3498db;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.2);
}

.action-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.action-btn.primary .action-icon {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
}

.action-btn.secondary .action-icon {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
    color: white;
}

.action-btn.accent .action-icon {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
}

.action-btn.info .action-icon {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
}

.action-text {
    display: flex;
    flex-direction: column;
}

.action-title {
    font-weight: 600;
    font-size: 1rem;
    color: #fff;
    margin-bottom: 0.25rem;
}

.action-subtitle {
    font-size: 0.875rem;
    color: #6c757d;
}

/* Activity List */
.activity-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
}

.activity-item .activity-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 159, 28, 0.1);
    flex-shrink: 0;
}

.activity-item .activity-icon i {
    font-size: 0.875rem;
}

.activity-content {
    flex: 1;
}

.activity-title {
    color: #fff;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.activity-date {
    color: #6c757d;
    font-size: 0.875rem;
}

/* Clickable match activity items */
.activity-item-clickable {
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
    border-radius: 8px;
    padding: 0.75rem !important;
    margin: 0 -0.75rem;
}

.activity-item-clickable:hover {
    background-color: rgba(255, 159, 28, 0.1);
    transform: translateX(4px);
}

.activity-item-clickable:active {
    transform: translateX(2px);
}

/* Events List */
.events-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.event-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
    cursor: pointer;
}

.event-item:hover {
    background: rgba(255, 159, 28, 0.1);
    transform: translateX(4px);
}

.event-date {
    width: 50px;
    text-align: center;
    flex-shrink: 0;
}

.event-day {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ff9f1c;
    line-height: 1;
}

.event-month {
    font-size: 0.75rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event-content {
    flex: 1;
}

.event-title {
    color: #fff;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.event-time {
    color: #6c757d;
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .dashboard-content {
        grid-template-columns: 1fr;
    }
    
    .dashboard-sidebar {
        order: -1;
    }
}

@media (max-width: 768px) {
    .welcome-section {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .welcome-text h1 {
        font-size: 1.5rem;
    }
    
    .welcome-banner-bg {
        opacity: 0.2;
    }
    
    .actions-grid {
        grid-template-columns: 1fr;
    }
    
    .card-header-modern {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .header-actions .form-select {
        min-width: 100%;
    }
    
    .chart-container {
        height: 250px;
    }

    .performance-overview .chart-container {
        height: 375px;
    }
}

@media (max-width: 480px) {
    .dashboard-modern {
        padding: 0 0.5rem;
    }
    
    .dashboard-header {
        margin-bottom: 1rem;
    }
    
    .welcome-section {
        padding: 1rem;
    }
    
    .card-content {
        padding: 1rem;
    }
    
    .card-header-modern {
        padding: 1rem;
    }
    
    .action-btn {
        padding: 1rem;
    }
    
    .action-icon {
        width: 40px;
        height: 40px;
    }
}/* ===== WELCOME USERNAME HIGHLIGHT ===== */
.welcome-username {
    color: #ff9f1c;
    text-shadow: 0 2px 10px rgba(255, 159, 28, 0.4);
}

/* ===== SIDEBAR STATS GRID ===== */
.sidebar-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.sidebar-stat-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.65rem 0.75rem;
    border-radius: 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    cursor: pointer;
    transition: all 0.2s ease;
}

.sidebar-stat-item:hover {
    background: rgba(255,159,28,0.1);
    border-color: rgba(255,159,28,0.3);
    transform: translateY(-2px);
}

.sidebar-stat-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.sidebar-stat-item.personnel .sidebar-stat-icon { background: linear-gradient(135deg, #f39c12, #e67e22); color: #fff; }
.sidebar-stat-item.matches .sidebar-stat-icon   { background: linear-gradient(135deg, #9b59b6, #8e44ad); color: #fff; }
.sidebar-stat-item.strategies .sidebar-stat-icon { background: linear-gradient(135deg, #e74c3c, #c0392b); color: #fff; }
.sidebar-stat-item.vods .sidebar-stat-icon      { background: linear-gradient(135deg, #3498db, #2980b9); color: #fff; }

.sidebar-stat-content { display: flex; flex-direction: column; }
.sidebar-stat-number  { font-size: 1.25rem; font-weight: 700; color: #fff; line-height: 1; }
.sidebar-stat-label   { font-size: 0.7rem; color: #6c757d; text-transform: uppercase; letter-spacing: 0.5px; margin-top: 2px; }

/* ===== RECENT CONTENT SECTION ===== */
.recent-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .recent-content-grid { grid-template-columns: 1fr; }
}

.recent-content-col {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.recent-content-col-header {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: #fff;
}

.recent-content-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0.75rem;
    border-radius: 8px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    cursor: pointer;
    transition: all 0.2s ease;
}

.recent-content-item:hover {
    background: rgba(255,159,28,0.08);
    border-color: rgba(255,159,28,0.2);
    transform: translateX(3px);
}

.recent-content-icon {
    width: 32px;
    height: 32px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.recent-content-info    { flex: 1; min-width: 0; }
.recent-content-title   { color: #fff; font-size: 0.85rem; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.recent-content-meta    { color: #6c757d; font-size: 0.72rem; margin-top: 2px; display: flex; align-items: center; flex-wrap: wrap; gap: 2px; }

/* ===== EMPTY STATE (small, inline) ===== */
.empty-state-small {
    color: #6c757d;
    font-size: 0.825rem;
    padding: 0.75rem 0;
    text-align: center;
    font-style: italic;
}

/* ===== PREMIUM DASHBOARD LAYOUT ===== */
.premium-dashboard {
    padding: 0;
    max-width: 1400px;
    margin: 0 auto;
}

.dashboard-top-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

/* Premium Welcome Card */
.premium-welcome {
    flex: 1;
    min-width: 320px;
    height: 304px;
    margin-bottom: 0;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.premium-welcome:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(255, 159, 28, 0.15);
}

.premium-glass-fx {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(20, 20, 25, 0.8) 0%, rgba(10, 10, 15, 0.6) 100%);
    backdrop-filter: blur(4px);
    z-index: 1;
    pointer-events: none;
}

.welcome-content {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2.5rem;
    height: 100%;
}

.premium-shadow {
    box-shadow: 0 8px 25px rgba(255, 159, 28, 0.4);
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 96px;
    height: 96px;
    object-fit: cover;
    transition: transform 0.3s;
}

.premium-welcome:hover .premium-shadow {
    transform: scale(1.05) rotate(-5deg);
    border-color: rgba(255, 159, 28, 0.4);
}

.premium-heading {
    font-size: 2.25rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
    line-height: 1.1;
    letter-spacing: -0.5px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.premium-text-gradient {
    background: linear-gradient(135deg, #ff9f1c, #ff4757);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

.premium-subtext {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    margin: 0;
}

/* Premium Card Panels */
.premium-card {
    background: rgba(25, 25, 30, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    overflow: hidden;
}

.premium-card:hover {
    border-color: rgba(255, 159, 28, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.recent-content-widget {
    flex: 0 0 250px;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    min-width: 220px;
}

.widget-header {
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.widget-header h3 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
    color: #fff;
    display: flex;
    align-items: center;
}

.widget-content {
    flex: 1;
    padding: 1rem 1.25rem;
}

.recent-widget-section {
    margin-bottom: 1.5rem;
}

.recent-widget-section:last-child {
    margin-bottom: 0;
}

.recent-widget-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.header-icon-wrap {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.bg-warning-glow { background: rgba(243, 156, 18, 0.15); color: #f39c12; box-shadow: 0 0 15px rgba(243, 156, 18, 0.2); }
.bg-info-glow { background: rgba(52, 152, 219, 0.15); color: #3498db; box-shadow: 0 0 15px rgba(52, 152, 219, 0.2); }
.bg-success-glow { background: rgba(46, 204, 113, 0.15); color: #2ecc71; box-shadow: 0 0 15px rgba(46, 204, 113, 0.2); }
.bg-secondary-glow { background: rgba(155, 89, 182, 0.15); color: #9b59b6; box-shadow: 0 0 15px rgba(155, 89, 182, 0.2); }

.premium-glass-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    margin-bottom: 0.5rem;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.premium-glass-item:hover {
    background: rgba(255, 159, 28, 0.08);
    border-color: rgba(255, 159, 28, 0.3);
    transform: translateX(4px);
}

.item-indicator {
    width: 4px;
    height: 16px;
    border-radius: 4px;
    flex-shrink: 0;
}

.recent-widget-title {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Activity Row Styling */
.dashboard-content-single {
    display: block !important;
}

.activity-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.info-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.info-card .card-header-modern {
    padding: 1.25rem 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.info-card .card-header-modern h3 {
    font-size: 1.1rem;
    margin: 0;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.btn-pill-primary {
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    background: rgba(52, 152, 219, 0.15);
    color: #3498db;
    transition: all 0.2s ease;
}

.btn-pill-primary:hover {
    background: #3498db;
    color: #fff;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.4);
}

.btn-pill-success {
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    background: rgba(46, 204, 113, 0.15);
    color: #2ecc71;
    transition: all 0.2s ease;
}

.btn-pill-success:hover {
    background: #2ecc71;
    color: #fff;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.4);
}

.info-card-content {
    padding: 1.5rem;
    flex: 1;
}

/* Interactive List Items */
.premium-list-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem !important;
    margin-bottom: 0.75rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 14px;
    transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.premium-list-item:last-child {
    margin-bottom: 0;
}

.premium-list-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.activity-item-clickable:hover {
    background: rgba(255, 159, 28, 0.06);
    border-color: rgba(255, 159, 28, 0.2);
}

.activity-icon-mini {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.05);
}

.small-text {
    color: #8b9298;
    font-size: 0.8rem;
    margin-top: 0.2rem;
}

/* Empty States Polish */
.empty-state-small, .empty-state-mini {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    color: #6c757d;
    font-size: 0.85rem;
    font-style: italic;
    text-align: center;
    width: 100%;
}

/* Scrollbars */
.custom-scrollbar {
    max-height: 250px;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 159, 28, 0.5) rgba(0,0,0,0.1);
    padding-right: 0.5rem;
}

.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
}
.custom-scrollbar::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.1);
    border-radius: 10px;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
    background: rgba(255, 159, 28, 0.5);
    border-radius: 10px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 159, 28, 0.8);
}

/* Base Responsive */
@media (max-width: 1200px) {
    .premium-heading { font-size: 1.8rem; }
    .welcome-content { gap: 1.5rem; padding: 1.5rem; }
    .premium-shadow { width: 80px; height: 80px; }
}

@media (max-width: 992px) {
    .dashboard-top-row { flex-direction: column; gap: 1.5rem; }
    .premium-welcome { height: auto; min-height: 200px; width: 100%; }
    .recent-content-widget { flex: 1 1 auto; width: 100%; }
    .activity-row { grid-template-columns: 1fr; }
}

@media (max-width: 576px) {
    .welcome-content { flex-direction: column; text-align: center; }
    .dashboard-top-row { margin-bottom: 1.5rem; }
    .premium-heading { font-size: 1.5rem; }
    .premium-shadow { width: 70px; height: 70px; }
    .activity-row { gap: 1rem; }
    .premium-list-item { padding: 0.75rem !important; }
}

/* =============================================
   REDESIGNED DASHBOARD — NEW COMPONENTS
   ============================================= */

/* --- HERO BANNER --- */
.db-hero {
    position: relative;
    min-height: 180px;
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    background-size: cover;
    background-position: center;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}
.db-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.45) 100%);
    z-index: 1;
}
.db-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 2.5rem;
    width: 100%;
    flex-wrap: wrap;
}
.db-hero-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid rgba(255,159,28,0.7);
    object-fit: cover;
    box-shadow: 0 0 20px rgba(255,159,28,0.4);
    flex-shrink: 0;
}
.db-hero-text { flex: 1; min-width: 200px; }
.db-hero-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.25rem;
}
.db-hero-name { color: #ff9f1c; }
.db-hero-sub { color: rgba(255,255,255,0.7); margin: 0; font-size: 0.95rem; }
.db-hero-pill-stats {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.db-hero-pill {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 700;
    backdrop-filter: blur(10px);
}
.db-hero-pill-win  { background: rgba(34,197,94,0.25);  color: #4ade80; border: 1px solid rgba(74,222,128,0.3); }
.db-hero-pill-loss { background: rgba(239,68,68,0.25);  color: #f87171; border: 1px solid rgba(248,113,113,0.3); }
.db-hero-pill-wr   { background: rgba(255,159,28,0.25); color: #fbbf24; border: 1px solid rgba(251,191,36,0.3); }

/* --- STAT CARDS ROW --- */
.db-stat-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.db-stat-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.25rem;
    border-radius: 14px;
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.db-stat-card:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(0,0,0,0.4); }
.db-stat-glow {
    position: absolute;
    inset: 0;
    opacity: 0;
    border-radius: inherit;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
.db-stat-card:hover .db-stat-glow { opacity: 1; }

.db-stat-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.db-stat-value { font-size: 1.55rem; font-weight: 800; color: #fff; line-height: 1; }
.db-stat-unit  { font-size: 0.95rem; font-weight: 500; color: rgba(255,255,255,0.6); }
.db-stat-label { font-size: 0.7rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.5px; margin-top: 2px; }

.db-stat-win   { border-color: rgba(34,197,94,0.25); }
.db-stat-win   .db-stat-icon { background: rgba(34,197,94,0.2); color: #4ade80; }
.db-stat-win   .db-stat-glow { background: radial-gradient(circle at top left, rgba(34,197,94,0.1), transparent 70%); }

.db-stat-loss  { border-color: rgba(239,68,68,0.25); }
.db-stat-loss  .db-stat-icon { background: rgba(239,68,68,0.2); color: #f87171; }
.db-stat-loss  .db-stat-glow { background: radial-gradient(circle at top left, rgba(239,68,68,0.1), transparent 70%); }

.db-stat-draw  { border-color: rgba(148,163,184,0.2); }
.db-stat-draw  .db-stat-icon { background: rgba(148,163,184,0.15); color: #94a3b8; }

.db-stat-wr    { border-color: rgba(255,159,28,0.3); }
.db-stat-wr    .db-stat-icon { background: rgba(255,159,28,0.2); color: #ff9f1c; }
.db-stat-wr    .db-stat-glow { background: radial-gradient(circle at top left, rgba(255,159,28,0.1), transparent 70%); }

.db-stat-recent { border-color: rgba(251,113,133,0.25); }
.db-stat-recent .db-stat-icon { background: rgba(251,113,133,0.2); color: #fb7185; }

.db-stat-total  { border-color: rgba(139,92,246,0.25); }
.db-stat-total  .db-stat-icon { background: rgba(139,92,246,0.2); color: #a78bfa; }

/* --- MAIN GRID (2-column) --- */
.db-main-grid {
    display: grid;
    grid-template-columns: 1fr 370px;
    gap: 1.5rem;
    align-items: start;
}

.db-col-left, .db-col-right { display: flex; flex-direction: column; gap: 1.5rem; }

/* --- MATCH LIST --- */
.db-match-list {
    display: flex;
    flex-direction: column;
    max-height: 330px;
    overflow-y: auto;
}
.db-match-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    cursor: pointer;
    transition: background 0.15s ease;
    border-left: 3px solid transparent;
}
.db-match-item:hover { background: rgba(255,255,255,0.04); }
.db-match-item:last-child { border-bottom: none; }
.match-win  { border-left-color: #22c55e; }
.match-loss { border-left-color: #ef4444; }
.match-draw { border-left-color: #64748b; }

.db-match-result-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    gap: 2px;
    flex-shrink: 0;
}
.db-match-result-badge i { font-size: 1rem; }
.match-win  .db-match-result-badge { background: rgba(34,197,94,0.18); color: #4ade80; border: 1px solid rgba(74,222,128,0.25); }
.match-loss .db-match-result-badge { background: rgba(239,68,68,0.18); color: #f87171; border: 1px solid rgba(248,113,113,0.25); }
.match-draw .db-match-result-badge { background: rgba(148,163,184,0.15); color: #94a3b8; border: 1px solid rgba(148,163,184,0.2); }

.db-match-info { flex: 1; min-width: 0; }
.db-match-opponent { font-size: 0.9rem; color: #e2e8f0; }
.db-match-meta { display: flex; align-items: center; gap: 0.5rem; margin-top: 2px; }
.db-match-type-badge {
    font-size: 0.62rem;
    padding: 1px 7px;
    border-radius: 999px;
    background: rgba(255,159,28,0.15);
    color: #fbbf24;
    font-weight: 600;
    text-transform: uppercase;
}
.db-match-date { font-size: 0.72rem; color: rgba(255,255,255,0.4); }
.db-match-arrow { color: rgba(255,255,255,0.2); font-size: 0.72rem; }

/* --- NAVIGATION TILES --- */
.db-nav-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
}
.db-nav-tile {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.8rem 0.9rem;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.07);
    background: rgba(255,255,255,0.035);
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
    width: 100%;
}
.db-nav-tile:hover { transform: translateY(-2px); }
.db-nav-tile-icon {
    width: 34px; height: 34px;
    border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
}
.db-nav-tile-content { flex: 1; min-width: 0; }
.db-nav-tile-title { display: block; font-size: 0.82rem; font-weight: 600; color: #e2e8f0; }
.db-nav-tile-count { display: block; font-size: 0.7rem; color: rgba(255,255,255,0.4); margin-top: 1px; }
.db-nav-tile-arrow { color: rgba(255,255,255,0.2); font-size: 0.7rem; }

.tile-orange { border-color: rgba(255,159,28,0.2); }
.tile-orange:hover { background: rgba(255,159,28,0.08); box-shadow: 0 5px 18px rgba(255,159,28,0.18); }
.tile-orange .db-nav-tile-icon { background: rgba(255,159,28,0.18); color: #ff9f1c; }

.tile-purple { border-color: rgba(139,92,246,0.2); }
.tile-purple:hover { background: rgba(139,92,246,0.08); box-shadow: 0 5px 18px rgba(139,92,246,0.18); }
.tile-purple .db-nav-tile-icon { background: rgba(139,92,246,0.18); color: #a78bfa; }

.tile-red { border-color: rgba(239,68,68,0.2); }
.tile-red:hover { background: rgba(239,68,68,0.08); box-shadow: 0 5px 18px rgba(239,68,68,0.15); }
.tile-red .db-nav-tile-icon { background: rgba(239,68,68,0.18); color: #f87171; }

.tile-blue { border-color: rgba(59,130,246,0.2); }
.tile-blue:hover { background: rgba(59,130,246,0.08); box-shadow: 0 5px 18px rgba(59,130,246,0.15); }
.tile-blue .db-nav-tile-icon { background: rgba(59,130,246,0.18); color: #60a5fa; }

.tile-teal { border-color: rgba(20,184,166,0.2); }
.tile-teal:hover { background: rgba(20,184,166,0.08); box-shadow: 0 5px 18px rgba(20,184,166,0.15); }
.tile-teal .db-nav-tile-icon { background: rgba(20,184,166,0.18); color: #2dd4bf; }

.tile-gold { border-color: rgba(234,179,8,0.2); }
.tile-gold:hover { background: rgba(234,179,8,0.08); box-shadow: 0 5px 18px rgba(234,179,8,0.15); }
.tile-gold .db-nav-tile-icon { background: rgba(234,179,8,0.18); color: #facc15; }

/* --- ANNOUNCEMENT ITEMS --- */
.db-announce-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.65rem 0.75rem;
    border-radius: 10px;
    margin-bottom: 0.45rem;
    cursor: pointer;
    transition: background 0.15s ease;
    border-left: 3px solid transparent;
}
.db-announce-item:hover { background: rgba(255,255,255,0.05); }
.db-announce-icon {
    width: 30px; height: 30px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
    background: rgba(255,255,255,0.07);
}
.announce-high   { border-left-color: #ef4444; }
.announce-medium { border-left-color: #f59e0b; }
.announce-low    { border-left-color: #3b82f6; }

/* --- EVENT ITEMS --- */
.db-event-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.6rem 0.7rem;
    border-radius: 10px;
    margin-bottom: 0.45rem;
    cursor: pointer;
    transition: background 0.15s ease;
}
.db-event-item:hover { background: rgba(255,255,255,0.05); }
.db-event-cal {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border-radius: 10px;
    background: rgba(20,184,166,0.15);
    border: 1px solid rgba(20,184,166,0.25);
    flex-shrink: 0;
}
.db-event-day   { font-size: 1.05rem; font-weight: 800; color: #2dd4bf; line-height: 1; }
.db-event-month { font-size: 0.58rem; text-transform: uppercase; color: rgba(45,212,191,0.7); letter-spacing: 0.5px; }

/* --- PILL BUTTONS --- */
.btn-pill-accent, .btn-pill-primary, .btn-pill-success {
    padding: 0.28rem 0.85rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}
.btn-pill-accent   { background: rgba(255,159,28,0.2); color: #ff9f1c; }
.btn-pill-accent:hover   { background: rgba(255,159,28,0.35); }
.btn-pill-primary  { background: rgba(59,130,246,0.2);  color: #60a5fa; }
.btn-pill-primary:hover  { background: rgba(59,130,246,0.35); }
.btn-pill-success  { background: rgba(34,197,94,0.2);   color: #4ade80; }
.btn-pill-success:hover  { background: rgba(34,197,94,0.35); }

/* --- EMPTY STATES --- */
.empty-state-small { color: rgba(255,255,255,0.4); font-size: 0.875rem; text-align: center; }
.empty-state-mini  { color: rgba(255,255,255,0.35); font-size: 0.8rem; padding: 0.5rem 0; }

/* --- RESPONSIVE --- */
@media (max-width: 1200px) {
    .db-stat-row { grid-template-columns: repeat(3, 1fr); }
    .db-main-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .db-stat-row { grid-template-columns: repeat(2, 1fr); }
    .db-nav-grid { grid-template-columns: 1fr; }
}
@media (max-width: 576px) {
    .db-hero-content { padding: 1.25rem; gap: 1rem; }
    .db-hero-title   { font-size: 1.25rem; }
    .db-stat-row     { grid-template-columns: 1fr 1fr; }
}

