        /* Modal del campeonato */
        .campeon-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 10000;
            animation: fadeIn 0.5s ease-in-out;
        }

        .campeon-modal.show {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
            background: linear-gradient(135deg, #ff0000, #000000);
            border-radius: 20px;
            padding: 20px;
            box-shadow: 0 0 50px rgba(255, 215, 0, 0.5);
            animation: modalSlideIn 0.8s ease-out;
        }

        .modal-header {
            text-align: center;
            color: #ffd700;
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
        }

        .modal-header h2 {
            font-size: 2.5rem;
            margin: 0;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
            animation: titleGlow 2s ease-in-out infinite alternate;
        }

        .modal-header p {
            font-size: 1.2rem;
            margin: 10px 0 0 0;
            color: #fff;
        }

        .video-container {
            position: relative;
            width: 100%;
            max-width: 800px;
            background: #000;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        .video-container video {
            width: 100%;
            height: auto;
            display: block;
        }

        .close-modal {
            position: absolute;
            top: 10px;
            right: 15px;
            background: rgba(255, 0, 0, 0.8);
            color: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.5rem;
            font-weight: bold;
            transition: all 0.3s ease;
            z-index: 3;
        }

        .close-modal:hover {
            background: rgba(255, 0, 0, 1);
            transform: scale(1.1);
        }

        /* Efectos de fuegos artificiales */
        .fireworks {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
        }

        .firework {
            position: absolute;
            border-radius: 50%;
            animation: explode 2s ease-out infinite;
        }

        .firework:nth-child(1) {
            top: 20%;
            left: 20%;
            background: radial-gradient(circle, #ffd700, transparent);
            animation-delay: 0s;
        }

        .firework:nth-child(2) {
            top: 30%;
            right: 20%;
            background: radial-gradient(circle, #ff4444, transparent);
            animation-delay: 0.5s;
        }

        .firework:nth-child(3) {
            bottom: 30%;
            left: 30%;
            background: radial-gradient(circle, #44ff44, transparent);
            animation-delay: 1s;
        }

        .firework:nth-child(4) {
            bottom: 40%;
            right: 30%;
            background: radial-gradient(circle, #4444ff, transparent);
            animation-delay: 1.5s;
        }

        .firework:nth-child(5) {
            top: 50%;
            left: 50%;
            background: radial-gradient(circle, #ff44ff, transparent);
            animation-delay: 0.8s;
        }

        .sparkle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: #ffd700;
            border-radius: 50%;
            animation: sparkle 1.5s ease-out infinite;
        }

        /* Partículas flotantes */
        .particle {
            position: absolute;
            width: 6px;
            height: 6px;
            background: #ffd700;
            border-radius: 50%;
            animation: float 3s ease-in-out infinite;
        }

        /* Animaciones */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes modalSlideIn {
            from {
                transform: scale(0.7) translateY(-50px);
                opacity: 0;
            }
            to {
                transform: scale(1) translateY(0);
                opacity: 1;
            }
        }

        @keyframes titleGlow {
            from {
                text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 215, 0, 0.5);
            }
            to {
                text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 215, 0, 0.8);
            }
        }

        @keyframes explode {
            0% {
                width: 10px;
                height: 10px;
                opacity: 1;
            }
            50% {
                width: 100px;
                height: 100px;
                opacity: 0.8;
            }
            100% {
                width: 200px;
                height: 200px;
                opacity: 0;
            }
        }

        @keyframes sparkle {
            0%, 100% {
                opacity: 0;
                transform: scale(0);
            }
            50% {
                opacity: 1;
                transform: scale(1) rotate(180deg);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
                opacity: 0.7;
            }
            50% {
                transform: translateY(-20px) rotate(180deg);
                opacity: 1;
            }
        }

        /* Animación de confeti */
        @keyframes confettiFall {
            to {
                transform: translateY(100vh) rotate(360deg);
                opacity: 0;
            }
        }


        /* Responsive */
        @media (max-width: 768px) {
            .modal-content {
                margin: 20px;
                padding: 15px;
            }

            .modal-header h2 {
                font-size: 1.8rem;
            }

            .modal-header p {
                font-size: 1rem;
            }

            .close-modal {
                width: 35px;
                height: 35px;
                font-size: 1.2rem;
            }
        }