                /* Modal Fullscreen */
        .category-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            z-index: 9999;
            overflow-y: auto;
        }

        .category-modal-content {
            position: relative;
            width: 100%;
            height: 100%;
            background-color: white;
            animation: slideIn 0.3s ease-out;
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .category-modal-close {
            position: fixed;
            top: 20px;
            right: 30px;
            background-color: #FFC224;
            color: white;
            border: none;
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
            z-index: 10000;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            padding: 0;
            line-height: 1;
        }

        .category-modal-close:hover {
            background-color: #8B0000;
            transform: scale(1.1);
        }

        .category-modal-body {
            width: 100%;
            height: 100%;
            overflow-y: auto;
            padding: 0;
        }

        .category-modal-body iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .category-modal-close {
                top: 10px;
                right: 10px;
                width: 45px;
                height: 45px;
                font-size: 32px;
            }
        }

        @media (max-width: 480px) {
            .category-modal-close {
                top: 5px;
                right: 5px;
                width: 40px;
                height: 40px;
                font-size: 28px;
            }
        }

        /* Scroll bar personalizado para el modal */
        .category-modal-body::-webkit-scrollbar {
            width: 10px;
        }

        .category-modal-body::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

        .category-modal-body::-webkit-scrollbar-thumb {
            background: #C00000;
            border-radius: 5px;
        }

        .category-modal-body::-webkit-scrollbar-thumb:hover {
            background: #8B0000;
        }
        
        /* Modal de Construcción */
        .construction-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(40, 40, 40, 0.8) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10001;
            backdrop-filter: blur(4px);
        }

        .construction-modal-content {
            background: white;
            border-radius: 15px;
            padding: 40px;
            text-align: center;
            max-width: 500px;
            width: 90%;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            animation: modalAppear 0.5s ease-out;
        }

        @keyframes modalAppear {
            from {
                opacity: 0;
                transform: scale(0.9) translateY(-30px);
            }
            to {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }

        .construction-icon {
            font-size: 60px;
            color: #C00000;
            margin-bottom: 20px;
            animation: iconPulse 2s ease-in-out infinite;
        }

        @keyframes iconPulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.1);
            }
        }

        .construction-modal-content h2 {
            font-size: 28px;
            color: #333;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .construction-modal-content p {
            font-size: 16px;
            color: #666;
            margin-bottom: 25px;
            line-height: 1.6;
        }

        .construction-progress {
            margin: 30px 0;
            text-align: left;
        }

        .construction-progress .progress {
            background-color: #f0f0f0;
            border-radius: 10px;
            overflow: hidden;
        }

        .construction-progress .progress-bar {
            background: linear-gradient(90deg, #FFC224 0%, #FF9800 100%);
            animation: progressAnimation 2s ease-in-out infinite;
        }

        @keyframes progressAnimation {
            0%, 100% {
                width: 50%;
            }
            50% {
                width: 55%;
            }
        }

        .construction-text {
            margin-top: 10px;
            font-size: 14px;
            color: #999;
            text-align: center !important;
        }

        .construction-btn {
            background: linear-gradient(90deg, #C00000 0%, #8B0000 100%);
            color: white;
            border: none;
            padding: 12px 40px;
            font-size: 16px;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 600;
            margin-top: 15px;
        }

        .construction-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(192, 0, 0, 0.3);
        }

        .construction-btn:active {
            transform: translateY(-1px);
        }

        @media (max-width: 768px) {
            .construction-modal-content {
                padding: 30px 20px;
            }

            .construction-icon {
                font-size: 50px;
            }

            .construction-modal-content h2 {
                font-size: 24px;
            }

            .construction-modal-content p {
                font-size: 14px;
            }
        }