        /* Dashboard Layout */
        .dashboard-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 120px 5% 40px;
        }

        .dashboard-header {
            margin-bottom: 3rem;
        }

        .dashboard-title {
            font-size: 2.5rem;
            font-weight: 900;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 0.5rem;
        }

        .dashboard-subtitle {
            color: var(--text-secondary);
            font-size: 1.1rem;
        }

        /* Stats Cards Grid */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .stat-card-big {
            background: var(--card-bg);
            padding: 2rem;
            border-radius: 16px;
            border: 1px solid rgba(0, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .stat-card-big:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
        }

        .stat-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 1rem;
        }

        .stat-icon-big {
            width: 60px;
            height: 60px;
            background: var(--gradient-primary);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: var(--dark-bg);
        }

        .stat-label-big {
            font-size: 0.9rem;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .stat-value-big {
            font-size: 3rem;
            font-weight: 900;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1;
            margin: 1rem 0;
        }

        .stat-change {
            font-size: 0.85rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .stat-change.positive {
            color: #00ff88;
        }

        .stat-change.negative {
            color: #ff4444;
        }

        /* Charts Section */
        .charts-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .chart-card {
            background: var(--card-bg);
            padding: 2rem;
            border-radius: 16px;
            border: 1px solid rgba(0, 255, 255, 0.1);
        }

        .chart-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--primary-cyan);
        }

        .chart-container {
            position: relative;
            height: 300px;
        }

        /* Tables Section */
        .tables-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .table-card {
            background: var(--card-bg);
            padding: 2rem;
            border-radius: 16px;
            border: 1px solid rgba(0, 255, 255, 0.1);
        }

        .table-title {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--primary-cyan);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .dashboard-table {
            width: 100%;
            border-collapse: collapse;
        }

        .dashboard-table thead {
            background: rgba(0, 255, 255, 0.05);
        }

        .dashboard-table th {
            padding: 1rem;
            text-align: left;
            font-weight: 600;
            color: var(--primary-cyan);
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .dashboard-table td {
            padding: 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .dashboard-table tr:hover {
            background: rgba(0, 255, 255, 0.05);
        }

        .player-cell {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .player-avatar-small {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            background: var(--gradient-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.9rem;
            color: var(--dark-bg);
        }

        /* Loading States */
        .loading-spinner {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 3rem;
            font-size: 2rem;
            color: var(--primary-cyan);
        }

        .loading-spinner i {
            animation: spin 1s linear infinite;
        }

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

        .empty-state {
            text-align: center;
            padding: 3rem;
            color: var(--text-secondary);
        }

        .empty-state i {
            font-size: 3rem;
            margin-bottom: 1rem;
            opacity: 0.3;
        }

        /* Club Selector */
        .club-selector {
            margin-bottom: 2rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .club-selector label {
            font-weight: 600;
            color: var(--text-secondary);
        }

        .club-selector select {
            background: var(--card-bg);
            color: var(--text-primary);
            border: 1px solid rgba(0, 255, 255, 0.2);
            padding: 0.75rem 1rem;
            border-radius: 8px;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .club-selector select:focus {
            outline: none;
            border-color: var(--primary-cyan);
            box-shadow: 0 0 0 3px rgba(0, 255, 255, 0.1);
        }

        /* Responsive */

        /* Mobile Small - < 480px */
        @media (max-width: 480px) {
            /* Dashboard container compacto */
            .dashboard-container {
                padding: 80px 1rem 30px;
            }

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

            .dashboard-title {
                font-size: 1.75rem;
                line-height: 1.2;
            }

            .dashboard-subtitle {
                font-size: 0.95rem;
            }

            /* Stats grid - 1 columna */
            .stats-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
                margin-bottom: 2rem;
            }

            .stat-card-big {
                padding: 1.25rem;
                border-radius: 12px;
            }

            .stat-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.75rem;
                margin-bottom: 0.75rem;
            }

            .stat-icon-big {
                width: 50px;
                height: 50px;
                font-size: 1.5rem;
            }

            .stat-label-big {
                font-size: 0.8rem;
            }

            .stat-value-big {
                font-size: 2.5rem;
                margin: 0.75rem 0;
            }

            .stat-change {
                font-size: 0.8rem;
            }

            /* Charts section - 1 columna */
            .charts-section {
                grid-template-columns: 1fr;
                gap: 1rem;
                margin-bottom: 2rem;
            }

            .chart-card {
                padding: 1.25rem;
                border-radius: 12px;
            }

            .chart-title {
                font-size: 1.2rem;
                margin-bottom: 1rem;
            }

            .chart-container {
                height: 250px; /* Reducir altura en móvil */
            }

            /* Tables section - 1 columna con scroll */
            .tables-section {
                grid-template-columns: 1fr;
                gap: 1rem;
                margin-bottom: 2rem;
            }

            .table-card {
                padding: 1rem;
                border-radius: 12px;
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
            }

            .table-title {
                font-size: 1.1rem;
                margin-bottom: 1rem;
                flex-wrap: wrap;
            }

            .dashboard-table {
                font-size: 0.8rem;
                min-width: 500px; /* Para scroll horizontal */
            }

            .dashboard-table th,
            .dashboard-table td {
                padding: 0.65rem 0.5rem;
                white-space: nowrap;
            }

            .dashboard-table th {
                font-size: 0.75rem;
            }

            .player-cell {
                gap: 0.5rem;
            }

            .player-avatar-small {
                width: 30px;
                height: 30px;
                font-size: 0.8rem;
            }

            /* Loading states más compactos */
            .loading-spinner {
                padding: 2rem;
                font-size: 1.5rem;
            }

            .empty-state {
                padding: 2rem;
            }

            .empty-state i {
                font-size: 2.5rem;
            }

            /* Club selector vertical */
            .club-selector {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.75rem;
                margin-bottom: 1.5rem;
            }

            .club-selector select {
                width: 100%;
                padding: 0.65rem 0.85rem;
                font-size: 0.95rem;
            }

            /* Quick actions - 1 columna */
            .quick-actions-section {
                grid-template-columns: 1fr;
                gap: 1rem;
                margin-bottom: 1.5rem;
            }

            .quick-action-card {
                padding: 1.25rem;
                border-radius: 12px;
                gap: 1rem;
            }

            .quick-action-card i {
                font-size: 2rem;
            }

            .quick-action-content h3 {
                font-size: 1rem;
            }

            .quick-action-content p {
                font-size: 0.8rem;
            }

            /* User menu compacto */
            .user-menu {
                font-size: 0.85rem;
            }

            .user-menu i {
                font-size: 1.3rem;
            }
        }

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

            .charts-section {
                grid-template-columns: 1fr;
            }

            .tables-section {
                grid-template-columns: 1fr;
            }

            .dashboard-title {
                font-size: 2rem;
            }

            .quick-actions-section {
                grid-template-columns: 1fr;
            }
        }

        /* User Menu */
        .user-menu {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--text-primary);
            font-size: 0.9rem;
        }

        .user-menu i {
            font-size: 1.5rem;
            color: var(--primary-cyan);
        }

        /* Quick Actions Section */
        .quick-actions-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .quick-action-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 1.5rem;
            display: flex;
            align-items: center;
            gap: 1.5rem;
            text-decoration: none;
            color: var(--text-primary);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .quick-action-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary-cyan);
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 255, 136, 0.05) 100%);
            box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
        }

        .quick-action-card.primary {
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(0, 255, 136, 0.1) 100%);
            border-color: rgba(0, 212, 255, 0.3);
        }

        .quick-action-card.primary:hover {
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.25) 0%, rgba(0, 255, 136, 0.15) 100%);
            box-shadow: 0 10px 40px rgba(0, 212, 255, 0.4);
        }

        .quick-action-card i {
            font-size: 2.5rem;
            color: var(--primary-cyan);
            flex-shrink: 0;
        }

        .quick-action-card.primary i {
            color: var(--primary-green);
        }

        .quick-action-content h3 {
            font-size: 1.1rem;
            font-weight: 600;
            margin: 0 0 0.25rem 0;
            color: var(--text-primary);
        }

        .quick-action-content p {
            font-size: 0.85rem;
            margin: 0;
            color: var(--text-secondary);
        }
