        /* Inscription Table */
        .inscriptions-table {
            width: 100%;
            background: var(--dark-card);
            border-radius: 20px;
            overflow: hidden;
            margin-top: 2rem;
        }

        .table-header {
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 255, 136, 0.05));
            padding: 1.5rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .table-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-primary);
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }

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

        thead {
            background: rgba(255, 255, 255, 0.03);
        }

        th {
            padding: 1rem 1.5rem;
            text-align: left;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        tbody tr {
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.2s ease;
        }

        tbody tr:hover {
            background: rgba(0, 212, 255, 0.05);
        }

        td {
            padding: 1.2rem 1.5rem;
            color: var(--text-primary);
        }

        .player-names {
            display: flex;
            flex-direction: column;
            gap: 0.3rem;
        }

        .player {
            font-size: 0.95rem;
        }

        .player i {
            color: var(--primary-cyan);
            margin-right: 0.3rem;
            font-size: 0.8rem;
        }

        .payment-badge {
            padding: 0.4rem 0.8rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            display: inline-block;
        }

        .payment-badge.paid {
            background: rgba(0, 255, 136, 0.2);
            color: var(--primary-green);
        }

        .payment-badge.pending {
            background: rgba(255, 193, 7, 0.2);
            color: #ffc107;
        }

        .action-buttons {
            display: flex;
            gap: 0.5rem;
        }

        .btn-icon {
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            border: none;
            cursor: pointer;
            transition: all 0.2s ease;
            font-size: 0.9rem;
        }

        .btn-icon.edit {
            background: rgba(0, 212, 255, 0.2);
            color: var(--primary-cyan);
        }

        .btn-icon.edit:hover {
            background: rgba(0, 212, 255, 0.3);
        }

        .btn-icon.delete {
            background: rgba(255, 71, 87, 0.2);
            color: #ff4757;
        }

        .btn-icon.delete:hover {
            background: rgba(255, 71, 87, 0.3);
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 1000;
            align-items: center;
            justify-content: center;
        }

        .modal.active {
            display: flex;
        }

        .modal-content {
            background: var(--dark-card);
            border-radius: 20px;
            padding: 2rem;
            max-width: 600px;
            width: 90%;
            max-height: 90vh;
            overflow-y: auto;
        }

        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
        }

        .modal-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--text-primary);
        }

        .close-modal {
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--text-secondary);
            cursor: pointer;
            transition: color 0.2s ease;
        }

        .close-modal:hover {
            color: var(--text-primary);
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .form-row.full {
            grid-template-columns: 1fr;
        }

        .checkbox-group {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 10px;
            margin-top: 1rem;
        }

        .checkbox-group input[type="checkbox"] {
            width: 20px;
            height: 20px;
            cursor: pointer;
        }

        .checkbox-group label {
            color: var(--text-primary);
            font-weight: 500;
            cursor: pointer;
        }

        /* Selector de Torneo y Categoría */
        .selector-section {
            background: var(--dark-card);
            border-radius: 20px;
            padding: 1.5rem;
            margin-top: 2rem;
            margin-bottom: 2rem;
        }

        .selector-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        /* Empty State */
        .empty-inscriptions {
            text-align: center;
            padding: 4rem 2rem;
            color: var(--text-secondary);
        }

        .empty-inscriptions i {
            font-size: 4rem;
            color: var(--primary-cyan);
            margin-bottom: 1rem;
        }

        /* Responsive */

        /* Mobile Small - < 480px */
        @media (max-width: 480px) {
            .page-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
                padding-top: 80px;
            }

            .page-header h1 {
                font-size: var(--font-2xl);
            }

            /* Selector row en columna */
            .selector-row {
                grid-template-columns: 1fr;
                gap: 0.75rem;
            }

            /* Form rows en columna */
            .form-row {
                grid-template-columns: 1fr;
                gap: 0.75rem;
            }

            /* Modal más compacto */
            .modal-content {
                max-width: 95vw;
                padding: 1.5rem;
            }

            .modal-title {
                font-size: var(--font-xl);
            }

            /* Tabla responsive */
            .inscriptions-table {
                overflow-x: auto;
            }

            table {
                font-size: 0.75rem;
            }

            th, td {
                padding: 0.5rem 0.25rem;
            }

            th {
                font-size: 0.7rem;
            }

            /* Action buttons en columna */
            .action-buttons {
                flex-direction: column;
                gap: 0.25rem;
            }

            .action-buttons button {
                width: 100%;
                font-size: 0.75rem;
                padding: 0.5rem;
            }

            /* Stats cards si existen */
            .stats-cards {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
            }

            /* Filters si existen */
            .filters {
                flex-direction: column;
                gap: 1rem;
            }

            /* Badge pago */
            .badge-pago {
                font-size: 0.7rem;
                padding: 0.25rem 0.5rem;
            }
        }

        /* Tablet - 768px */
        @media (max-width: 768px) {
            .form-row, .selector-row {
                grid-template-columns: 1fr;
            }

            table {
                font-size: 0.85rem;
            }

            th, td {
                padding: 0.8rem;
            }

            .action-buttons {
                flex-direction: column;
            }
        }
