 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            height: 100vh;
            overflow: hidden;
            position: relative;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: row;
        }
        
        /* Mensaje para móviles - estilo Duolingo/Cyngo divertido */
        .desktop-only-message {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
            z-index: 30000;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 20px;
            box-sizing: border-box;
            overflow: hidden;
            position: relative;
        }
        
        /* Elementos de fondo animados */
        .desktop-only-message::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: 
                radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(120, 219, 226, 0.2) 0%, transparent 50%);
            animation: backgroundFloat 20s ease-in-out infinite;
            pointer-events: none;
        }
        
        @keyframes backgroundFloat {
            0%, 100% { transform: rotate(0deg) scale(1); }
            50% { transform: rotate(180deg) scale(1.1); }
        }
        
        .desktop-message-content {
            max-width: min(400px, 90vw);
            background: rgba(255, 255, 255, 0.95);
            padding: min(40px, 8vw);
            border-radius: min(24px, 6vw);
            backdrop-filter: blur(20px);
            border: 2px solid rgba(255, 255, 255, 0.3);
            box-shadow: 
                0 20px 40px rgba(0, 0, 0, 0.1),
                0 10px 20px rgba(0, 0, 0, 0.05),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
            position: relative;
            z-index: 1;
            animation: cardBounce 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            margin: 0 20px;
        }
        
        @keyframes cardBounce {
            0% { 
                transform: scale(0.3) rotate(-10deg);
                opacity: 0;
            }
            50% {
                transform: scale(1.05) rotate(2deg);
            }
            100% { 
                transform: scale(1) rotate(0deg);
                opacity: 1;
            }
        }
        
        .desktop-message-mascot {
            font-size: min(80px, 15vw);
            margin-bottom: min(20px, 4vw);
            animation: mascotBounce 2s ease-in-out infinite;
            display: inline-block;
            filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
        }
        
        @keyframes mascotBounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0) rotate(0deg); }
            40% { transform: translateY(-15px) rotate(5deg); }
            60% { transform: translateY(-8px) rotate(-3deg); }
        }
        
        .desktop-message-title {
            font-size: min(28px, 6vw);
            font-weight: 800;
            color: #2c3e50;
            margin-bottom: min(10px, 2vw);
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }
        
        .desktop-message-subtitle {
            font-size: min(18px, 4vw);
            font-weight: 600;
            margin-bottom: min(25px, 5vw);
            color: #7f8c8d;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }
        
        .desktop-message-bubble {
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            border-radius: min(18px, 4vw);
            padding: min(20px, 4vw);
            margin: min(20px, 4vw) 0;
            position: relative;
            animation: bubbleGlow 3s ease-in-out infinite;
        }
        
        @keyframes bubbleGlow {
            0%, 100% { box-shadow: 0 4px 8px rgba(52, 152, 219, 0.2); }
            50% { box-shadow: 0 8px 24px rgba(52, 152, 219, 0.4); }
        }
        
        .desktop-message-description {
            font-size: min(16px, 3.5vw);
            line-height: 1.6;
            color: #2c3e50;
            margin: 0;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }
        
        
        .desktop-message-fun-text {
            font-size: min(14px, 3vw);
            color: #7f8c8d;
            margin-top: min(20px, 4vw);
            font-style: italic;
            animation: funTextWave 4s ease-in-out infinite;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }
        
        @keyframes funTextWave {
            0%, 100% { transform: rotate(0deg); }
            25% { transform: rotate(1deg); }
            75% { transform: rotate(-1deg); }
        }

        .laptop-container {
            flex: 1;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .laptop {
            width: 100%;
            height: 100vh;
            background: none;
            border-radius: 0;
            padding: 0;
            box-shadow: none;
            transform: none;
            animation: none;
        }
        
        .screen {
            width: 100%;
            height: 100vh;
            background: #000;
            border-radius: 0;
            position: relative;
            overflow: hidden;
            border: none;
        }
        
        .screen-bezel {
            display: none;
        }
        
        .webcam {
            display: none;
        }
        
        .keyboard-area {
            display: none;
        }
        
        .trackpad {
            display: none;
        }
        
        .desktop {
            width: 100%;
            height: 100vh;
            position: relative;
            background: url('./cyngo-background.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            overflow: hidden;
        }
        
        .taskbar {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            height: 50px;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            display: flex;
            align-items: center;
            padding: 0 15px;
            z-index: 1000;
        }
        
        .start-button {
            width: 35px;
            height: 35px;
            background: linear-gradient(45deg, #0078d4, #005a9e);
            border: none;
            border-radius: 5px;
            color: white;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 16px;
        }
        
        .start-button:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(0, 120, 212, 0.4);
        }
        
        .taskbar-apps {
            display: flex;
            align-items: center;
            gap: 5px;
            margin-left: 10px;
        }
        
        .taskbar-app {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.2s ease;
            color: white;
        }
        
        .taskbar-app:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }
        
        .post-it {
            position: absolute;
            width: min(180px, 15vw);
            height: min(180px, 15vw);
            min-width: 120px;
            min-height: 120px;
            background: #ffeb3b;
            box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
            transform: rotate(-8deg);
            top: 15%;
            right: 8%;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
        }
        
        .post-it:hover {
            transform: rotate(-5deg) scale(1.05);
            box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.4);
        }
        
        .post-it-content {
            padding: min(20px, 4vw);
            font-family: 'Comic Sans MS', cursive;
            font-size: clamp(10px, 1.2vw, 14px);
            color: #333;
            line-height: 1.4;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .post-it-title {
            font-weight: bold;
            margin-bottom: 8px;
            text-decoration: underline;
        }
        
        .desktop-icon {
            position: absolute;
            width: min(70px, 8vw);
            height: min(90px, 10vw);
            min-width: 50px;
            min-height: 70px;
            display: flex;
            flex-direction: column;
            align-items: center;
            cursor: pointer;
            transition: all 0.2s ease;
            padding: 8px;
            border-radius: 8px;
        }
        
        .desktop-icon:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: scale(1.05);
        }
        
        .icon-image {
            width: min(40px, 5vw);
            height: min(40px, 5vw);
            min-width: 30px;
            min-height: 30px;
            background: linear-gradient(45deg, #4CAF50, #45a049);
            border-radius: 8px;
            margin-bottom: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: clamp(16px, 2vw, 24px);
            color: white;
        }
        
        .icon-label {
            color: white;
            font-size: clamp(9px, 1vw, 12px);
            text-align: center;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
            line-height: 1.2;
        }
        
        /* Popup de advertencias moderno */
        .warning-popup {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            border-radius: 16px;
            padding: 0;
            box-shadow: 
                0 20px 60px rgba(0, 0, 0, 0.15),
                0 10px 30px rgba(0, 0, 0, 0.1),
                0 0 0 1px rgba(255, 255, 255, 0.8);
            max-width: 90%;
            width: min(900px, 85vw);
            max-height: 90vh;
            display: none;
            z-index: 10000;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            overflow: hidden;
        }
        
        .warning-popup.show {
            display: block;
            animation: modernPopIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }
        
        @keyframes modernPopIn {
            from {
                transform: translate(-50%, -50%) scale(0.8) rotate(3deg);
                opacity: 0;
                filter: blur(10px);
            }
            to {
                transform: translate(-50%, -50%) scale(1) rotate(0deg);
                opacity: 1;
                filter: blur(0);
            }
        }
        
        /* Encabezado moderno del popup */
        .notification-header {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 24px 28px;
            border-radius: 16px 16px 0 0;
            position: relative;
            overflow: hidden;
        }
        
        .notification-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, transparent 50%);
            pointer-events: none;
        }
        
        .notification-title {
            color: white;
            font-size: 20px;
            font-weight: 700;
            margin: 0;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
            line-height: 1.3;
        }
        
        .notification-subtitle {
            color: rgba(255, 255, 255, 0.9);
            font-size: 14px;
            font-weight: 500;
            margin: 6px 0 0 0;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }
        
        .notification-close {
            position: absolute;
            top: 16px;
            right: 16px;
            background: rgba(255, 255, 255, 0.2);
            color: white;
            border: none;
            width: 32px;
            height: 32px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 16px;
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }
        
        .notification-close:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.1);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }
        
        .notification-close:active {
            transform: scale(0.95);
        }
        
        /* Contenido del popup */
        .notification-content {
            padding: 28px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
        }
        
        /* Elementos de alerta individuales */
        .alert-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            padding: 16px;
            margin-bottom: 12px;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.7);
            border: 1px solid rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            backdrop-filter: blur(5px);
        }
        
        .alert-item:hover {
            background: rgba(255, 255, 255, 0.9);
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }
        
        .alert-item:last-child {
            margin-bottom: 0;
        }
        
        .alert-icon {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            font-weight: 600;
            flex-shrink: 0;
            text-shadow: 0 1px 2px rgba(0,0,0,0.1);
        }
        
        .alert-icon.critical {
            background: linear-gradient(135deg, #ff4757, #ff3742);
            color: white;
            box-shadow: 0 4px 12px rgba(255, 71, 87, 0.3);
        }
        
        .alert-icon.warning {
            background: linear-gradient(135deg, #ffa502, #ff9500);
            color: white;
            box-shadow: 0 4px 12px rgba(255, 165, 2, 0.3);
        }
        
        .alert-icon.info {
            background: linear-gradient(135deg, #3742fa, #2f3542);
            color: white;
            box-shadow: 0 4px 12px rgba(55, 66, 250, 0.3);
        }
        
        .alert-icon.success {
            background: linear-gradient(135deg, #2ed573, #1dd1a1);
            color: white;
            box-shadow: 0 4px 12px rgba(46, 213, 115, 0.3);
        }
        
        .alert-content {
            flex: 1;
            min-width: 0;
        }
        
        .alert-title {
            font-size: 16px;
            font-weight: 600;
            color: #2c3e50;
            margin: 0 0 6px 0;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.3;
        }
        
        .alert-description {
            font-size: 14px;
            color: #5a6c7d;
            line-height: 1.5;
            margin: 0;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }
        
        /* Footer del popup */
        .notification-footer {
            padding: 20px 28px;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-radius: 0 0 16px 16px;
            border-top: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .notification-meta {
            color: #6c757d;
            font-size: 12px;
            font-weight: 500;
            margin: 0;
            text-align: center;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }
        
        /* Layout WiFi con villano */
        .wifi-villain-popup {
            display: flex;
            height: 70vh;
            width: 100%;
        }
        
        /* Para popups con villanos, forzar altura fija */
        .warning-popup.villain-popup {
            height: 70vh;
        }

        .wifi-info-side {
            flex: 1;
            display: flex;
            flex-direction: column;
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
        }

        .wifi-info-side .notification-header {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 30px;
            margin: 0;
            border-radius: 0;
        }

        .wifi-info-side .notification-content {
            flex: 1;
            padding: 30px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .wifi-simulation-button {
            margin-top: -10px;
        }

        .wifi-villain-side {
            flex: 1;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
        }

        .villain-container {
            position: relative;
            height: 100%;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .villain-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            filter: contrast(1.1) brightness(0.9);
        }

        .villain-overlay {
            position: absolute;
            bottom: 30px;
            left: 30px;
            right: 30px;
            background: rgba(0, 0, 0, 0.8);
            padding: 20px;
            border-radius: 12px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(0, 255, 0, 0.3);
        }

        .villain-text {
            color: #00ff00;
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 8px;
            text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
        }

        .villain-subtext {
            color: #ff4444;
            font-size: 16px;
            opacity: 0.9;
            animation: pulse 2s ease-in-out infinite alternate;
        }

        @keyframes pulse {
            from { opacity: 0.7; }
            to { opacity: 1; }
        }

        /* Responsivo para el popup del villano */
        @media (max-width: 768px) {
            .warning-popup {
                width: 95vw;
                max-height: 85vh;
            }
            
            .warning-popup.villain-popup {
                height: 85vh;
            }
            
            .wifi-villain-popup {
                flex-direction: column;
                height: 85vh;
            }
            
            .wifi-info-side,
            .wifi-villain-side {
                flex: none;
                height: 50%;
            }
            
            .wifi-info-side {
                overflow-y: auto;
            }
            
            .wifi-info-side .notification-header {
                padding: 15px;
                font-size: 14px;
            }
            
            .wifi-info-side .notification-content {
                padding: 10px;
                gap: 8px;
            }
            
            .notification-title {
                font-size: 16px;
            }
            
            .notification-subtitle {
                font-size: 11px;
                margin-top: 2px;
            }
            
            .alert-item {
                margin-bottom: 8px;
                padding: 8px;
            }
            
            .alert-title {
                font-size: 13px;
                font-weight: 600;
                margin-bottom: 4px;
            }
            
            .alert-description {
                font-size: 11px;
                line-height: 1.3;
            }
            
            .wifi-simulation-button {
                margin-top: 5px;
                margin-bottom: 5px;
            }
            
            .demo-button-small {
                padding: 8px 16px;
                font-size: 12px;
            }
        }

        /* Responsive para pantallas muy pequeñas verticalmente */
        @media (max-height: 700px) {
            .warning-popup {
                max-height: 80vh;
            }
            
            .warning-popup.villain-popup {
                height: 80vh;
            }
            
            .wifi-villain-popup {
                height: 80vh;
            }
            
            .wifi-info-side .notification-header {
                padding: 12px;
            }
            
            .wifi-info-side .notification-content {
                padding: 10px;
                gap: 6px;
            }
            
            .notification-title {
                font-size: 16px;
            }
            
            .notification-subtitle {
                font-size: 12px;
            }
            
            .alert-item {
                margin-bottom: 6px;
                padding: 6px;
            }
            
            .alert-title {
                font-size: 14px;
                margin-bottom: 2px;
            }
            
            .alert-description {
                font-size: 12px;
                line-height: 1.2;
            }
            
            .wifi-simulation-button {
                margin-top: 2px;
                margin-bottom: 2px;
            }
            
            .demo-button-small {
                padding: 7px 14px;
                font-size: 12px;
            }
        }

        /* Responsive para pantallas extremadamente pequeñas verticalmente */
        @media (max-height: 600px) {
            .warning-popup {
                max-height: 85vh;
            }
            
            .warning-popup.villain-popup {
                height: 85vh;
            }
            
            .wifi-villain-popup {
                height: 85vh;
            }
            
            .wifi-info-side .notification-header {
                padding: 10px;
            }
            
            .wifi-info-side .notification-content {
                padding: 8px;
                gap: 4px;
            }
            
            .notification-title {
                font-size: 15px;
            }
            
            .notification-subtitle {
                font-size: 11px;
            }
            
            .alert-item {
                margin-bottom: 4px;
                padding: 4px;
            }
            
            .alert-title {
                font-size: 13px;
                margin-bottom: 1px;
            }
            
            .alert-description {
                font-size: 11px;
                line-height: 1.1;
            }
            
            .wifi-simulation-button {
                margin-top: 1px;
                margin-bottom: 1px;
            }
            
            .demo-button-small {
                padding: 6px 12px;
                font-size: 11px;
            }
        }

        /* Simulación Ransomware */
        .ransomware-simulation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 15000;
            display: none;
            flex-direction: row;
        }

        .ransomware-simulation.show {
            display: flex;
        }

        .file-system {
            background: white;
            border-radius: 12px;
            padding: 20px;
            height: 100%;
            overflow-y: auto;
        }

        .file-system-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 2px solid #e9ecef;
        }

        .folder-title {
            font-size: 18px;
            font-weight: bold;
            color: #495057;
        }

        .encryption-status .status-normal {
            background: rgba(34, 197, 94, 0.1);
            color: #22c55e;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 500;
        }

        .encryption-status .status-encrypted {
            background: rgba(239, 68, 68, 0.1);
            color: #ef4444;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 500;
            animation: dangerPulse 1s ease-in-out infinite alternate;
        }

        @keyframes dangerPulse {
            from { opacity: 0.7; }
            to { opacity: 1; }
        }

        .file-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .file-item {
            display: flex;
            align-items: center;
            padding: 15px;
            background: #f8f9fa;
            border-radius: 8px;
            border: 2px solid transparent;
            transition: all 0.3s ease;
        }

        .file-item.encrypted {
            background: rgba(239, 68, 68, 0.1);
            border-color: #ef4444;
            animation: encryptionPulse 0.5s ease-in-out;
        }

        @keyframes encryptionPulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.02); }
            100% { transform: scale(1); }
        }

        .file-icon {
            font-size: 24px;
            margin-right: 15px;
            min-width: 40px;
        }

        .file-name {
            flex: 1;
            font-size: 16px;
            font-weight: 500;
            color: #495057;
        }

        .file-status {
            font-size: 14px;
            color: #6c757d;
            background: rgba(108, 117, 125, 0.1);
            padding: 4px 12px;
            border-radius: 12px;
        }

        .ransom-message {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            height: 100%;
            background: linear-gradient(135deg, #000000 0%, #1a1a2e 100%);
            color: white;
            border-radius: 12px;
            padding: 40px;
            animation: ransomAppear 1s ease-in-out;
        }

        @keyframes ransomAppear {
            0% { 
                opacity: 0;
                transform: scale(0.8);
            }
            100% { 
                opacity: 1;
                transform: scale(1);
            }
        }

        .ransom-skull {
            font-size: 80px;
            margin-bottom: 20px;
            animation: skull-shake 2s ease-in-out infinite;
        }

        @keyframes skull-shake {
            0%, 100% { transform: rotate(-5deg); }
            50% { transform: rotate(5deg); }
        }

        .ransom-title {
            font-size: 32px;
            font-weight: bold;
            color: #ef4444;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .ransom-text {
            font-size: 20px;
            margin-bottom: 30px;
            color: #fbbf24;
        }

        .ransom-timer {
            font-size: 24px;
            color: #ef4444;
            font-weight: bold;
            background: rgba(239, 68, 68, 0.1);
            padding: 15px 30px;
            border-radius: 10px;
            border: 2px solid #ef4444;
            animation: timerBlink 1s ease-in-out infinite;
        }

        @keyframes timerBlink {
            0%, 50% { opacity: 1; }
            51%, 100% { opacity: 0.7; }
        }

        /* Responsive para ransomware */
        @media (max-width: 768px) {
            .ransomware-simulation {
                flex-direction: column;
            }
            
            .ransom-title {
                font-size: 24px;
            }
            
            .ransom-text {
                font-size: 16px;
            }
            
            .ransom-timer {
                font-size: 18px;
                padding: 10px 20px;
            }
            
            .ransom-skull {
                font-size: 60px;
            }
        }

        /* Icono de adware brillante */
        .adware-icon {
            border: 3px solid #ffd700;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
            animation: goldenShine 2s ease-in-out infinite;
        }

        @keyframes goldenShine {
            0%, 100% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.6); }
            50% { box-shadow: 0 0 30px rgba(255, 215, 0, 0.9); }
        }

        /* Simulación Adware */
        .adware-simulation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 15000;
            display: none;
            flex-direction: row;
        }

        .adware-simulation.show {
            display: flex;
        }

        .fake-browser {
            background: white;
            border-radius: 12px;
            height: 100%;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }

        .browser-bar {
            background: #f5f5f5;
            padding: 12px 20px;
            display: flex;
            align-items: center;
            border-bottom: 1px solid #ddd;
        }

        .browser-buttons {
            display: flex;
            gap: 8px;
            margin-right: 20px;
        }

        .browser-btn {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }

        .browser-btn.red { background: #ff5f57; }
        .browser-btn.yellow { background: #ffbd2e; }
        .browser-btn.green { background: #28ca42; }

        .browser-url {
            background: white;
            padding: 6px 12px;
            border-radius: 6px;
            border: 1px solid #ddd;
            font-size: 14px;
            flex: 1;
        }

        .browser-content {
            height: calc(100% - 60px);
            position: relative;
            overflow: hidden;
        }

        .fake-page {
            padding: 40px;
            text-align: center;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .fake-page h1 {
            font-size: 48px;
            margin-bottom: 20px;
            animation: celebration 2s ease-in-out infinite;
        }

        @keyframes celebration {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .fake-page h2 {
            font-size: 24px;
            margin-bottom: 40px;
            color: #ffd700;
        }

        .prize-box {
            background: rgba(255, 255, 255, 0.2);
            padding: 40px;
            border-radius: 20px;
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.3);
            margin: 0 auto;
            max-width: 400px;
        }

        .prize-icon {
            font-size: 80px;
            margin-bottom: 20px;
            animation: phoneFloat 3s ease-in-out infinite;
        }

        @keyframes phoneFloat {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        .prize-text {
            font-size: 32px;
            font-weight: bold;
            margin-bottom: 30px;
            color: #ffd700;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .claim-button {
            background: linear-gradient(45deg, #ff6b35, #f7931e);
            color: white;
            border: none;
            padding: 20px 40px;
            font-size: 24px;
            font-weight: bold;
            border-radius: 50px;
            cursor: pointer;
            box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
            transition: all 0.3s ease;
            animation: buttonPulse 2s ease-in-out infinite;
        }

        @keyframes buttonPulse {
            0%, 100% { transform: scale(1); box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4); }
            50% { transform: scale(1.05); box-shadow: 0 12px 25px rgba(255, 107, 53, 0.6); }
        }

        .claim-button:hover {
            transform: scale(1.1);
            box-shadow: 0 12px 30px rgba(255, 107, 53, 0.6);
        }

        .infected-page {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%;
            background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
            color: white;
        }

        .loading-fake {
            text-align: center;
        }

        .spinner {
            border: 4px solid rgba(255, 255, 255, 0.3);
            border-top: 4px solid #fff;
            border-radius: 50%;
            width: 60px;
            height: 60px;
            animation: spin 1s linear infinite;
            margin: 0 auto 30px;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .popup-ads {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
        }

        .popup-ad {
            animation: popupAppear 0.5s ease-out;
        }

        @keyframes popupAppear {
            0% {
                opacity: 0;
                transform: scale(0.8) rotate(-5deg);
            }
            100% {
                opacity: 1;
                transform: scale(1) rotate(0deg);
            }
        }

        /* Responsive para adware */
        @media (max-width: 768px) {
            .adware-simulation {
                flex-direction: column;
            }
            
            .fake-page h1 {
                font-size: 32px;
            }
            
            .prize-text {
                font-size: 24px;
            }
            
            .claim-button {
                padding: 15px 30px;
                font-size: 18px;
            }
            
            .prize-icon {
                font-size: 60px;
            }
        }

        /* Responsive para pantallas pequeñas verticalmente - Simulación Adware */
        @media (max-height: 700px) {
            .simulation-victim, 
            .simulation-attacker {
                overflow-y: auto;
            }
            
            .fake-browser {
                height: 100%;
                max-height: none;
            }
            
            .fake-page {
                padding: 20px;
                min-height: auto;
            }
            
            .fake-page h1 {
                font-size: 28px;
                margin-bottom: 10px;
            }
            
            .fake-page h2 {
                font-size: 18px;
                margin-bottom: 20px;
            }
            
            .prize-box {
                padding: 20px;
            }
            
            .prize-text {
                font-size: 20px;
                margin-bottom: 15px;
            }
            
            .claim-button {
                padding: 12px 24px;
                font-size: 16px;
            }
            
            .prize-icon {
                font-size: 50px;
                margin-bottom: 10px;
            }
        }

        @media (max-height: 600px) {
            .fake-page {
                padding: 15px;
            }
            
            .fake-page h1 {
                font-size: 24px;
                margin-bottom: 8px;
            }
            
            .fake-page h2 {
                font-size: 16px;
                margin-bottom: 15px;
            }
            
            .prize-box {
                padding: 15px;
            }
            
            .prize-text {
                font-size: 18px;
                margin-bottom: 10px;
            }
            
            .claim-button {
                padding: 10px 20px;
                font-size: 14px;
            }
            
            .prize-icon {
                font-size: 40px;
                margin-bottom: 8px;
            }
        }

        /* Visualización de fortaleza de contraseñas */
        .password-strength-visual {
            padding: 20px;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            color: white;
        }

        .password-examples {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .password-bad, .password-good {
            flex: 1;
        }

        .password-title {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 15px;
            text-align: center;
        }

        .password-list {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .password-item {
            padding: 10px;
            border-radius: 8px;
            font-family: 'Courier New', monospace;
            font-size: 14px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .password-item.weak {
            background: rgba(239, 68, 68, 0.2);
            border: 1px solid #ef4444;
            color: #fca5a5;
            animation: weakPulse 2s ease-in-out infinite;
        }

        .password-item.strong {
            background: rgba(34, 197, 94, 0.2);
            border: 1px solid #22c55e;
            color: #86efac;
            animation: strongGlow 3s ease-in-out infinite;
        }

        @keyframes weakPulse {
            0%, 100% { opacity: 0.7; transform: scale(1); }
            50% { opacity: 1; transform: scale(1.02); }
        }

        @keyframes strongGlow {
            0%, 100% { box-shadow: 0 0 5px rgba(34, 197, 94, 0.3); }
            50% { box-shadow: 0 0 15px rgba(34, 197, 94, 0.6); }
        }

        .password-tips {
            background: rgba(0, 0, 0, 0.3);
            padding: 15px;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .tip-title {
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 10px;
            color: #fbbf24;
            text-align: center;
        }

        .tip-item {
            font-size: 12px;
            margin-bottom: 5px;
            color: #e5e7eb;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        /* Responsive para visualización de contraseñas */
        @media (max-width: 768px) {
            .password-strength-visual {
                padding: 15px;
            }
            
            .password-title {
                font-size: 16px;
            }
            
            .password-item {
                font-size: 12px;
                padding: 8px;
            }
            
            .tip-title {
                font-size: 14px;
            }
            
            .tip-item {
                font-size: 11px;
            }
        }

        /* Overlay de fondo */
        .warning-popup.show::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(8px);
            z-index: -1;
            animation: fadeInOverlay 0.3s ease;
        }
        
        @keyframes fadeInOverlay {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        /* Botón de simulación WiFi */
        .wifi-simulation-button {
            display: flex;
            justify-content: center;
            margin: 20px 0;
        }
        
        .demo-button {
            background: linear-gradient(135deg, #e74c3c, #c0392b);
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }
        
        .demo-button:hover {
            background: linear-gradient(135deg, #c0392b, #a93226);
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(231, 76, 60, 0.4);
        }
        
        .demo-button:active {
            transform: translateY(0);
        }
        
        .demo-button-small {
            background: linear-gradient(135deg, #e74c3c, #c0392b);
            color: white;
            border: none;
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(231, 76, 60, 0.3);
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }
        
        .demo-button-small:hover {
            background: linear-gradient(135deg, #c0392b, #a93226);
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(231, 76, 60, 0.4);
        }
        
        .demo-button-small:active {
            transform: translateY(0);
        }
        
        /* Simulación WiFi */
        .wifi-simulation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #1a1a1a;
            z-index: 20000;
            display: none;
            font-family: 'Courier New', monospace;
        }
        
        .wifi-simulation.show {
            display: flex;
        }
        
        .simulation-victim {
            width: 50%;
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            display: flex;
            flex-direction: column;
            border-right: 3px solid #e74c3c;
            position: relative;
        }
        
        .simulation-attacker {
            width: 50%;
            background: #0d1117;
            color: #58a6ff;
            display: flex;
            flex-direction: column;
            position: relative;
        }
        
        .simulation-header {
            padding: 20px;
            border-bottom: 2px solid rgba(0,0,0,0.1);
            background: rgba(255,255,255,0.9);
        }
        
        .simulation-header.attacker {
            background: #161b22;
            border-bottom: 2px solid #21262d;
            color: #f0f6fc;
        }
        
        .simulation-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 8px;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }
        
        .simulation-subtitle {
            font-size: 14px;
            color: #666;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }
        
        .simulation-subtitle.attacker {
            color: #8b949e;
        }
        
        .victim-content {
            flex: 1;
            padding: 30px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
        
        .fake-login {
            background: white;
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 8px 24px rgba(0,0,0,0.1);
            width: 100%;
            max-width: 350px;
            border: 1px solid #e0e0e0;
        }
        
        .login-title {
            text-align: center;
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 8px;
            color: #333;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }
        
        .login-subtitle {
            text-align: center;
            font-size: 14px;
            color: #666;
            margin-bottom: 30px;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }
        
        .input-group {
            margin-bottom: 20px;
        }
        
        .input-label {
            display: block;
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 6px;
            color: #333;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }
        
        .demo-input {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 16px;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            transition: all 0.3s ease;
        }
        
        .demo-input:focus {
            outline: none;
            border-color: #007bff;
            box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
        }
        
        .demo-login-btn {
            width: 100%;
            background: linear-gradient(135deg, #007bff, #0056b3);
            color: white;
            border: none;
            padding: 14px;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }
        
        .demo-login-btn:hover {
            background: linear-gradient(135deg, #0056b3, #004085);
        }
        
        .attacker-terminal {
            flex: 1;
            padding: 20px;
            overflow-y: auto;
            background: #0d1117;
        }
        
        .terminal-line {
            margin-bottom: 8px;
            line-height: 1.4;
            font-size: 14px;
        }
        
        .terminal-prompt {
            color: #f85149;
        }
        
        .terminal-command {
            color: #79c0ff;
        }
        
        .terminal-output {
            color: #7ee787;
        }
        
        .terminal-warning {
            color: #f85149;
            background: rgba(248, 81, 73, 0.1);
            padding: 4px 8px;
            border-radius: 4px;
        }
        
        .terminal-data {
            color: #ffa657;
            background: rgba(255, 166, 87, 0.1);
            padding: 4px 8px;
            border-radius: 4px;
            margin: 4px 0;
        }
        
        .close-simulation {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(0,0,0,0.1);
            border: none;
            color: #666;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 18px;
            font-weight: 600;
            transition: all 0.3s ease;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }
        
        .close-simulation:hover {
            background: rgba(0,0,0,0.2);
            color: #333;
        }
        
        .attacker-stats {
            padding: 20px;
            border-top: 2px solid #21262d;
            background: #161b22;
        }
        
        .stats-title {
            color: #f0f6fc;
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 12px;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }
        
        .stats-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
            font-size: 14px;
        }
        
        .stats-label {
            color: #8b949e;
        }
        
        .stats-value {
            color: #f85149;
            font-weight: 600;
        }
        
        /* Ocultar TODA la simulación de laptop en móviles y tablets */
        @media (max-width: 767px) {
            /* Ocultar completamente la laptop en celulares */
            .laptop-container {
                display: none !important;
            }

            /* Mostrar mensaje de desktop only */
            .desktop-only-message {
                display: flex !important;
            }

            /* Ocultar elementos específicos por si acaso */
            .wifi-simulation {
                display: none !important;
            }

            .demo-button-small {
                display: none !important;
            }

            .mobile-message {
                display: block !important;
            }
        }
        
        /* Ocultar mensaje móvil en laptops */
        @media (min-width: 1025px) {
            .mobile-message {
                display: none !important;
            }
        }
        
        /* Solo para laptops/desktops grandes */
        @media (min-width: 1025px) {
            .wifi-simulation.show {
                display: flex;
            }
            
            .brute-force-simulation.show {
                display: flex;
            }
        }
        
        /* Simulación Fuerza Bruta - Similar a WiFi pero con diferencias */
        .brute-force-simulation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #1a1a1a;
            z-index: 20000;
            display: none;
            font-family: 'Courier New', monospace;
        }
        
        .brute-force-simulation.show {
            display: flex;
        }
        
        /* Status indicators for login attempts */
        .login-status {
            margin-top: 20px;
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            font-weight: 600;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }
        
        .status-waiting {
            background: rgba(52, 152, 219, 0.1);
            color: #3498db;
            border: 1px solid rgba(52, 152, 219, 0.3);
        }
        
        .status-failed {
            background: rgba(231, 76, 60, 0.1);
            color: #e74c3c;
            border: 1px solid rgba(231, 76, 60, 0.3);
            animation: statusPulse 0.5s ease-in-out;
        }
        
        .status-success {
            background: rgba(46, 213, 115, 0.1);
            color: #2ed573;
            border: 1px solid rgba(46, 213, 115, 0.3);
            animation: statusSuccess 0.8s ease-in-out;
        }
        
        @keyframes statusPulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.02); }
        }
        
        @keyframes statusSuccess {
            0% { transform: scale(0.9); opacity: 0; }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); opacity: 1; }
        }
        
        /* Terminal específico para fuerza bruta */
        .brute-force-simulation .terminal-prompt {
            color: #58a6ff;
        }
        
        .brute-force-simulation .terminal-command {
            color: #79c0ff;
        }
        
        .brute-force-simulation .terminal-output {
            color: #8b949e;
        }
        
        .brute-force-simulation .terminal-warning {
            color: #f85149;
            background: rgba(248, 81, 73, 0.1);
            padding: 4px 8px;
            border-radius: 4px;
            font-weight: 600;
        }
        
        .brute-force-simulation .terminal-data {
            color: #ffa657;
            background: rgba(255, 166, 87, 0.1);
            padding: 4px 8px;
            border-radius: 4px;
            margin: 4px 0;
            font-weight: 600;
        }
        
        /* Ocultar simulación fuerza bruta en móviles */
        @media (max-width: 1024px) {
            .brute-force-simulation {
                display: none !important;
            }
        }
        
        @media (max-width: 480px) {
            .warning-popup {
                width: 95vw;
                max-width: none;
                margin: 20px;
            }
            
            .notification-header {
                padding: 20px 24px;
            }
            
            .notification-content {
                padding: 24px 20px;
            }
            
            .notification-footer {
                padding: 16px 20px;
            }
            
            .alert-item {
                padding: 14px;
                gap: 12px;
            }
            
            .alert-icon {
                width: 28px;
                height: 28px;
                font-size: 14px;
            }
            
            .notification-title {
                font-size: 18px;
            }
            
            .alert-title {
                font-size: 15px;
            }
            
            .alert-description {
                font-size: 13px;
            }
        }
        
        .system-tray {
            margin-left: auto;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .wifi-icon, .antivirus-icon {
            position: relative;
            padding: 8px;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            color: white;
        }
        
        .wifi-icon:hover, .antivirus-icon:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        
        .wifi-danger-indicator, .antivirus-danger-indicator {
            position: absolute;
            top: -2px;
            right: -2px;
            font-size: 10px;
            animation: dangerPulse 2s infinite;
        }
        
        .time-display {
            color: white;
            font-size: clamp(10px, 1.2vw, 14px);
        }
        
        .vulnerable-apps {
            position: absolute;
            bottom: 70px;
            left: 20px;
            display: flex;
            gap: 15px;
        }
        
        .app-shortcut {
            width: min(50px, 6vw);
            height: min(50px, 6vw);
            min-width: 35px;
            min-height: 35px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: clamp(16px, 2vw, 24px);
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(5px);
        }
        
        .app-shortcut:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px);
        }
        
        /* Cyngo cursor personalizado */
        .cyngo-cursor {
            position: fixed;
            width: 60px;
            height: 60px;
            pointer-events: none;
            z-index: 999999;
            transition: all 0.2s ease;
            transform: translate(20px, -60px);
        }

        .cyngo-cursor.danger-mode .cyngo-tip {
            border: 2px solid #ff4444;
            background: rgba(255, 244, 244, 0.95);
            animation: dangerTipPulse 1.5s ease-in-out infinite;
        }

        @keyframes dangerTipPulse {
            0%, 100% { 
                border-color: #ff4444;
                box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
            }
            50% { 
                border-color: #ff6666;
                box-shadow: 0 4px 20px rgba(239, 68, 68, 0.6);
            }
        }
        
        .cyngo-character {
            width: 100%;
            height: 100%;
            background-image: url('./robot.gif');
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
        }
        
        .cyngo-tip {
            position: absolute;
            background: rgba(255, 255, 255, 0.95);
            padding: 8px 12px;
            border-radius: 8px;
            font-size: 12px;
            color: #333;
            white-space: nowrap;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.3s ease;
            pointer-events: none;
            max-width: 200px;
            white-space: normal;
            line-height: 1.3;
            border: 2px solid #4CAF50;
            z-index: 999998;
        }
        
        .cyngo-tip.show {
            opacity: 1;
            transform: translateY(0);
        }
        
        .cyngo-tip.above {
            bottom: 70px;
            left: -100px;
        }
        
        .cyngo-tip.below {
            top: 70px;
            left: -100px;
        }
        
        .cyngo-tip.left {
            right: 70px;
            top: -50px;
        }
        
        .cyngo-tip.right {
            left: 70px;
            top: -50px;
        }
        
        .cyngo-tip::after {
            content: '';
            position: absolute;
            border: 6px solid transparent;
        }
        
        .cyngo-tip.above::after {
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            border-top-color: rgba(255, 255, 255, 0.95);
        }
        
        .cyngo-tip.below::after {
            bottom: 100%;
            left: 50%;
            transform: translateX(-50%);
            border-bottom-color: rgba(255, 255, 255, 0.95);
        }
        
        .cyngo-tip.left::after {
            left: 100%;
            top: 50%;
            transform: translateY(-50%);
            border-left-color: rgba(255, 255, 255, 0.95);
        }
        
        .cyngo-tip.right::after {
            right: 100%;
            top: 50%;
            transform: translateY(-50%);
            border-right-color: rgba(255, 255, 255, 0.95);
        }
        
        /* Diferentes estados de Cyngo */
        .cyngo-excited .cyngo-character {
            animation: cyngoBounce 0.5s ease-in-out;
            filter: drop-shadow(2px 2px 4px rgba(255, 152, 0, 0.5));
        }
        
        .cyngo-warning .cyngo-character {
            animation: cyngoShake 0.5s ease-in-out;
            filter: drop-shadow(2px 2px 4px rgba(244, 67, 54, 0.5));
        }
        
        .cyngo-thinking .cyngo-character {
            animation: cyngoFloat 2s ease-in-out infinite;
            filter: drop-shadow(2px 2px 4px rgba(33, 150, 243, 0.5));
        }
        
        @keyframes cyngoBounce {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1) rotate(5deg); }
        }
        
        @keyframes cyngoShake {
            0%, 100% { transform: translateX(0); }
            25% { transform: translateX(-3px) rotate(-2deg); }
            75% { transform: translateX(3px) rotate(2deg); }
        }
        
        @keyframes cyngoFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-5px); }
        }
        
        /* Mantener cursor normal */
        .desktop {
            cursor: default;
        }
        
        /* Responsive - ajustar tamaño de Cyngo */
        @media (max-width: 768px) {
            .cyngo-cursor {
                width: 50px;
                height: 50px;
                transform: translate(15px, -55px);
            }
            
            .cyngo-tip {
                bottom: 60px;
                left: -80px;
                max-width: 150px;
                font-size: 11px;
            }
        }
        
        @media (max-width: 480px) {
            .cyngo-cursor {
                width: 40px;
                height: 40px;
                transform: translate(12px, -45px);
            }
            
            .cyngo-tip {
                bottom: 50px;
                left: -60px;
                max-width: 120px;
                font-size: 10px;
            }
        }
        
        .login-screen {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            z-index: 1001;
            transition: all 0.8s ease-out;
        }
        
        .login-screen.hidden {
            opacity: 0;
            transform: scale(1.1);
            pointer-events: none;
        }
        
        .login-container {
            text-align: center;
            color: white;
        }
        
        .user-avatar {
            width: 120px;
            height: 120px;
            background: #4CAF50;
            border-radius: 50%;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 48px;
            color: white;
            border: 4px solid rgba(255, 255, 255, 0.3);
        }
        
        .user-name {
            font-size: 32px;
            color: white;
            margin-bottom: 30px;
            font-weight: 300;
        }
        
        .password-container {
            position: relative;
            margin-bottom: 20px;
        }
        
        .password-input {
            width: 300px;
            padding: 12px 20px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 3px;
            font-size: 16px;
            background: rgba(255, 255, 255, 0.9);
            color: #333;
            text-align: center;
        }
        
        .password-input:focus {
            outline: none;
            border-color: #0078d4;
            background: white;
        }
        
        .login-btn {
            background: none;
            border: none;
            color: white;
            font-size: 16px;
            cursor: pointer;
            padding: 8px 16px;
            border-radius: 3px;
            transition: background 0.2s;
        }
        
        .login-btn:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        
        .login-options {
            margin-top: 40px;
            display: flex;
            gap: 30px;
            justify-content: center;
        }
        
        .login-option {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-size: 14px;
            cursor: pointer;
        }
        
        .login-option:hover {
            color: white;
        }
        
        .power-button {
            position: absolute;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: rgba(0, 0, 0, 0.3);
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            color: white;
            font-size: 20px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
        }
        
        .power-button:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        
        .time-date {
            position: absolute;
            bottom: 30px;
            left: 30px;
            color: white;
            text-align: left;
        }
        
        .time {
            font-size: 48px;
            font-weight: 200;
        }
        
        .date {
            font-size: 16px;
            opacity: 0.8;
        }
        
        .wifi-panel {
            position: fixed;
            bottom: 60px;
            right: 20px;
            width: 350px;
            background: rgba(43, 43, 43, 0.95);
            border-radius: 8px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: white;
            font-family: 'Segoe UI', sans-serif;
            overflow: hidden;
            transform: translateY(20px);
            opacity: 0;
            pointer-events: none;
            transition: all 0.3s ease;
            z-index: 9999;
        }
        
        .wifi-panel.show {
            transform: translateY(0);
            opacity: 1;
            pointer-events: all;
        }
        
        .wifi-header {
            padding: 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .wifi-title {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .wifi-status {
            font-size: 12px;
            color: #1ba1e2;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .wifi-networks {
            max-height: 300px;
            overflow-y: auto;
        }
        
        .wifi-network {
            padding: 12px 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            cursor: pointer;
            transition: background 0.2s;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .wifi-network:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        
        .wifi-network.connected {
            background: rgba(27, 161, 226, 0.2);
            border-left: 3px solid #1ba1e2;
        }
        
        .wifi-network.public-danger {
            background: rgba(244, 67, 54, 0.15);
            border-left: 3px solid #f44336;
        }
        
        .wifi-info {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .wifi-icon {
            font-size: 18px;
            width: 20px;
            text-align: center;
        }
        
        .wifi-details h4 {
            margin: 0;
            font-size: 14px;
            font-weight: 500;
        }
        
        .wifi-details p {
            margin: 2px 0 0 0;
            font-size: 11px;
            color: rgba(255, 255, 255, 0.7);
        }
        
        .wifi-signal {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            color: rgba(255, 255, 255, 0.6);
        }
        
        .signal-bars {
            display: flex;
            gap: 2px;
            align-items: end;
        }
        
        .signal-bar {
            width: 3px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 1px;
        }
        
        .signal-bar.active {
            background: #1ba1e2;
        }
        
        .signal-bar:nth-child(1) { height: 4px; }
        .signal-bar:nth-child(2) { height: 7px; }
        .signal-bar:nth-child(3) { height: 10px; }
        .signal-bar:nth-child(4) { height: 13px; }
        
        .danger-indicator {
            color: #f44336;
            font-size: 16px;
            animation: dangerPulse 2s infinite;
        }
        
        @keyframes dangerPulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }
        
        .wifi-footer {
            padding: 15px 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(0, 0, 0, 0.2);
        }
        
        .wifi-actions {
            display: flex;
            gap: 10px;
        }
        
        .wifi-btn {
            padding: 8px 16px;
            background: #1ba1e2;
            border: none;
            border-radius: 4px;
            color: white;
            font-size: 12px;
            cursor: pointer;
            transition: background 0.2s;
        }
        
        .wifi-btn:hover {
            background: #1690cc;
        }
        
        .wifi-btn.secondary {
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }
        
        .wifi-btn.secondary:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        
        /* Responsive design para WiFi panel */
        @media (max-width: 768px) {
            .wifi-panel {
                width: 90vw;
                right: 5vw;
            }
            
            .password-input {
                width: 250px;
            }
            
            .time {
                font-size: 36px;
            }
            
            .user-name {
                font-size: 24px;
            }
            
            .user-avatar {
                width: 100px;
                height: 100px;
                font-size: 40px;
            }
            
            body {
                padding: 10px;
            }
            
            .laptop {
                max-height: 70vh;
            }
            
            .post-it {
                top: 10%;
                right: 5%;
            }
            
            .desktop-icon {
                padding: 5px;
            }
            
            .vulnerable-apps {
                bottom: 15%;
                left: 2%;
                gap: 10px;
            }
        }
        
        @media (max-width: 480px) {
            .laptop {
                max-height: 60vh;
            }
            
            .post-it {
                width: 25vw;
                height: 25vw;
                min-width: 100px;
                min-height: 100px;
            }
            
            .desktop-icon {
                width: 12vw;
                height: 15vw;
                min-width: 40px;
                min-height: 55px;
            }
        }
        
        .malware-fullscreen {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, #d32f2f, #b71c1c);
            z-index: 10000;
            display: none;
            overflow: hidden;
            border-radius: 15px;
        }
        
        .malware-fullscreen.show {
            display: block;
            animation: malwareInfection 1s ease-out;
        }
        
        @keyframes malwareInfection {
            0% { 
                transform: scale(0.1);
                opacity: 0;
                filter: blur(10px);
            }
            50% {
                transform: scale(1.1);
                opacity: 0.8;
                filter: blur(2px);
            }
            100% {
                transform: scale(1);
                opacity: 1;
                filter: blur(0);
            }
        }
        
        .malware-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 30%, rgba(255, 0, 0, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(139, 0, 0, 0.4) 0%, transparent 50%),
                linear-gradient(135deg, #d32f2f 0%, #b71c1c 50%, #8b0000 100%);
            animation: malwareGlow 3s ease-in-out infinite alternate;
        }
        
        @keyframes malwareGlow {
            0% { filter: brightness(1) saturate(1); }
            100% { filter: brightness(1.2) saturate(1.3); }
        }
        
        .malware-container {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 85%;
            max-width: 600px;
            background: white;
            border-radius: 8px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
            overflow: hidden;
            animation: malwareShake 0.5s ease-in-out infinite;
        }
        
        @keyframes malwareShake {
            0%, 100% { transform: translate(-50%, -50%) rotate(0deg); }
            25% { transform: translate(-50%, -50%) rotate(0.5deg); }
            75% { transform: translate(-50%, -50%) rotate(-0.5deg); }
        }
        
        .malware-header {
            background: #d32f2f;
            padding: 20px;
            text-align: center;
            position: relative;
        }
        
        .warning-triangle {
            font-size: 40px;
            color: white;
            margin-bottom: 8px;
            animation: warningPulse 1s ease-in-out infinite;
        }
        
        @keyframes warningPulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }
        
        .warning-title {
            color: white;
            font-size: 32px;
            font-weight: bold;
            margin: 0;
            font-family: Arial, sans-serif;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            animation: warningBlink 1.5s ease-in-out infinite;
        }
        
        @keyframes warningBlink {
            0%, 80% { opacity: 1; }
            90% { opacity: 0.3; }
            100% { opacity: 1; }
        }
        
        .malware-body {
            padding: 40px;
            text-align: center;
            font-family: Arial, sans-serif;
        }
        
        .infection-message {
            font-size: 24px;
            color: #d32f2f;
            font-weight: bold;
            margin-bottom: 30px;
            line-height: 1.4;
        }
        
        .threat-details {
            background: #fff3e0;
            border: 2px solid #ff9800;
            border-radius: 8px;
            padding: 25px;
            margin: 30px 0;
            text-align: left;
        }
        
        .threat-title {
            color: #e65100;
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .threat-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .threat-list li {
            padding: 8px 0;
            color: #333;
            font-size: 16px;
            border-bottom: 1px solid #ffcc80;
        }
        
        .threat-list li:before {
            content: "💀";
            margin-right: 10px;
        }
        
        .fake-progress {
            margin: 30px 0;
            text-align: left;
        }
        
        .progress-label {
            color: #333;
            font-size: 16px;
            margin-bottom: 10px;
        }
        
        .progress-bar {
            width: 100%;
            height: 20px;
            background: #f0f0f0;
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid #ccc;
        }
        
        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, #f44336, #d32f2f);
            width: 0%;
            animation: fakeProgress 5s ease-out infinite;
            border-radius: 10px;
        }
        
        @keyframes fakeProgress {
            0% { width: 0%; }
            30% { width: 45%; }
            70% { width: 78%; }
            100% { width: 95%; }
        }
        
        .malware-actions {
            margin-top: 40px;
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .malware-btn {
            padding: 15px 30px;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            min-width: 200px;
        }
        
        .btn-danger {
            background: #f44336;
            color: white;
        }
        
        .btn-danger:hover {
            background: #d32f2f;
            transform: scale(1.05);
        }
        
        .btn-learn {
            background: #4CAF50;
            color: white;
        }
        
        .btn-learn:hover {
            background: #388E3C;
            transform: scale(1.05);
        }
        
        .fake-timer {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(0, 0, 0, 0.8);
            color: white;
            padding: 10px 20px;
            border-radius: 25px;
            font-family: 'Courier New', monospace;
            font-size: 18px;
            animation: timerBlink 2s ease-in-out infinite;
        }
        
        @keyframes timerBlink {
            0%, 50% { background: rgba(0, 0, 0, 0.8); }
            51%, 100% { background: rgba(255, 0, 0, 0.8); }
        }
        
        /* Efectos de fondo */
        .malware-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }
        
        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: rgba(255, 255, 255, 0.6);
            border-radius: 50%;
            animation: particleFloat 8s linear infinite;
        }
        
        @keyframes particleFloat {
            0% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100vh) rotate(360deg);
                opacity: 0;
            }
        }
        
        /* Responsive para pantalla completa */
        @media (max-width: 768px) {
            .malware-container {
                width: 95%;
                margin: 20px;
            }
            
            .warning-title {
                font-size: 36px;
            }
            
            .infection-message {
                font-size: 20px;
            }
            
            .malware-btn {
                min-width: 150px;
                padding: 12px 20px;
            }
        }
        
        @media (max-width: 480px) {
            .warning-title {
                font-size: 28px;
            }
            
            .infection-message {
                font-size: 18px;
            }
            
            .threat-details {
                padding: 20px;
            }
            
            .malware-actions {
                flex-direction: column;
                align-items: center;
            }
        }
        
        /* Efectos de profundidad y realismo */
        .laptop::before {
            content: '';
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            background: linear-gradient(145deg, transparent, rgba(255, 255, 255, 0.05));
            border-radius: 25px;
            z-index: -1;
        }
        
        .screen::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, 
                rgba(255, 255, 255, 0.1) 0%, 
                transparent 30%, 
                transparent 70%, 
                rgba(0, 0, 0, 0.1) 100%);
            pointer-events: none;
            z-index: 999;
        }

        /* Chat Window - Estilo Empresarial */
        .chat-window {
            position: fixed;
            top: 10%;
            left: 15%;
            width: 70%;
            height: 75%;
            background: white;
            border-radius: 8px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            display: none;
            z-index: 1000;
            overflow: hidden;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
        }

        .chat-window.show {
            display: flex;
            flex-direction: column;
        }

        .chat-header {
            background: #4a154b;
            color: white;
            padding: 12px 16px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid #350d36;
        }

        .chat-title {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .chat-logo {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 700;
            font-size: 18px;
        }

        .chat-icon {
            font-size: 20px;
        }

        .chat-status {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            opacity: 0.9;
        }

        .online-indicator {
            width: 8px;
            height: 8px;
            background: #2eb67d;
            border-radius: 50%;
        }

        .chat-close {
            background: none;
            border: none;
            color: white;
            font-size: 20px;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 4px;
            transition: background 0.2s;
        }

        .chat-close:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .chat-content {
            display: flex;
            flex: 1;
            overflow: hidden;
        }

        .chat-sidebar {
            width: 240px;
            background: #3f0e40;
            color: white;
            padding: 16px 0;
            overflow-y: auto;
        }

        .chat-channels {
            padding: 0 16px;
        }

        .channel-section {
            margin-bottom: 24px;
        }

        .channel-header {
            font-size: 15px;
            font-weight: 700;
            color: #d1d2d3;
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .channel-item {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 6px 12px;
            border-radius: 6px;
            cursor: pointer;
            transition: background 0.2s;
            font-size: 15px;
            margin-bottom: 2px;
            position: relative;
        }

        .channel-item:hover {
            background: rgba(255, 255, 255, 0.08);
        }

        .channel-item.active {
            background: #1264a3;
            color: white;
        }

        .channel-hash {
            color: #8b8d8f;
            font-weight: 400;
        }

        .channel-item.active .channel-hash {
            color: white;
        }

        .channel-name {
            flex: 1;
        }

        .unread-count {
            background: #e01e5a;
            color: white;
            font-size: 12px;
            font-weight: 700;
            padding: 2px 6px;
            border-radius: 10px;
            min-width: 18px;
            text-align: center;
        }

        .user-status {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid #3f0e40;
        }

        .user-status.online {
            background: #2eb67d;
        }

        .user-status.away {
            background: #ecb22e;
        }

        .chat-main {
            flex: 1;
            display: flex;
            flex-direction: column;
            background: white;
        }

        .chat-header-channel {
            padding: 16px 20px;
            border-bottom: 1px solid #e8e8e8;
            background: #f8f8f8;
        }

        .chat-header-channel h3 {
            margin: 0;
            font-size: 18px;
            color: #1d1c1d;
            font-weight: 700;
        }

        .chat-header-channel p {
            margin: 4px 0 0 0;
            font-size: 13px;
            color: #606060;
        }

        .chat-messages {
            flex: 1;
            padding: 16px 20px;
            overflow-y: auto;
            background: white;
        }

        .message {
            display: flex;
            gap: 12px;
            margin-bottom: 16px;
            padding: 8px 0;
        }

        .message:hover {
            background: #f8f8f8;
            margin-left: -20px;
            margin-right: -20px;
            padding-left: 20px;
            padding-right: 20px;
            border-radius: 4px;
        }

        .message-avatar {
            width: 36px;
            height: 36px;
            background: #e8e8e8;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            flex-shrink: 0;
        }

        .message-content {
            flex: 1;
        }

        .message-header {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 4px;
        }

        .message-author {
            font-weight: 700;
            color: #1d1c1d;
            font-size: 15px;
        }

        .message-time {
            font-size: 12px;
            color: #606060;
        }

        .message-text {
            color: #1d1c1d;
            line-height: 1.5;
            font-size: 15px;
        }

        .message.security-warning {
            background: #fff3cd;
            padding: 12px;
            border-radius: 8px;
            margin: 12px 0;
        }

        .message.security-warning .message-avatar {
            background: #ff9800;
            color: white;
        }

        .message.security-warning .message-text {
            color: #333;
        }

        .chat-input-area {
            padding: 16px 20px;
            border-top: 1px solid #e8e8e8;
            background: white;
        }

        .chat-input-container {
            display: flex;
            gap: 8px;
            align-items: center;
            border: 1px solid #d1d1d1;
            border-radius: 8px;
            padding: 8px 12px;
            background: white;
        }

        .chat-input-container:focus-within {
            border-color: #1264a3;
            box-shadow: 0 0 0 1px #1264a3;
        }

        .chat-input {
            flex: 1;
            border: none;
            outline: none;
            font-size: 15px;
            padding: 4px 0;
            color: #1d1c1d;
            cursor: pointer;
        }

        .chat-input::placeholder {
            color: #616061;
        }

        .chat-send {
            background: none;
            border: none;
            font-size: 18px;
            cursor: pointer;
            padding: 4px;
            border-radius: 4px;
            transition: background 0.2s;
        }

        .chat-send:hover {
            background: #f0f0f0;
        }

        .taskbar-app {
            padding: 8px 12px;
            border-radius: 4px;
            cursor: pointer;
            transition: background 0.2s;
            font-size: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 40px;
        }

        .taskbar-app:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        /* Estilos de la barra lateral de Cyngo */
        .cyngo-sidebar {
            position: fixed;
            left: 0;
            top: 0;
            width: 320px;
            height: 100vh;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            box-shadow: 2px 0 15px rgba(0, 0, 0, 0.3);
            z-index: 1000;
            display: flex;
            flex-direction: column;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            overflow: hidden;
        }

        .cyngo-sidebar-header {
            padding: 20px;
            background: rgba(255, 255, 255, 0.1);
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }

        .cyngo-sidebar-avatar {
            font-size: 32px;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
            animation: cyngo-float 3s ease-in-out infinite;
        }

        .cyngo-sidebar-title {
            font-size: 20px;
            font-weight: 700;
            color: white;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .cyngo-messages {
            flex: 1;
            overflow-y: auto;
            padding: 20px;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .cyngo-message {
            animation: slideIn 0.4s ease-out;
            display: flex;
            gap: 10px;
            align-items: flex-start;
        }

        .cyngo-message.ai {
            margin-right: 30px;
        }

        .cyngo-message.user {
            flex-direction: row-reverse;
            margin-left: 30px;
        }

        .cyngo-message-bubble {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 12px;
            padding: 12px 16px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
            max-width: 85%;
            word-wrap: break-word;
            line-height: 1.4;
            font-size: 14px;
            color: #333;
        }

        .cyngo-message.ai .cyngo-message-bubble {
            background: rgba(255, 255, 255, 0.95);
            border-left: 4px solid #667eea;
        }

        .cyngo-message.user .cyngo-message-bubble {
            background: rgba(102, 126, 234, 0.9);
            color: white;
            border-left: 4px solid #f093fb;
        }

        .cyngo-message-avatar {
            font-size: 24px;
            flex-shrink: 0;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.3));
        }

        /* Scroll personalizado */
        .cyngo-messages::-webkit-scrollbar {
            width: 6px;
        }

        .cyngo-messages::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
        }

        .cyngo-messages::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, 0.3);
            border-radius: 10px;
        }

        .cyngo-messages::-webkit-scrollbar-thumb:hover {
            background: rgba(255, 255, 255, 0.5);
        }

        /* Animación de entrada */
        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes cyngo-float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-5px); }
        }

        /* Barra lateral independiente - toma su propio espacio */
        .cyngo-sidebar {
            flex-shrink: 0;
        }

        /* Responsive - Ocultar sidebar en pantallas pequeñas */
        @media (max-width: 1200px) {
            .cyngo-sidebar {
                width: 280px;
            }
        }

        @media (max-width: 768px) {
            body {
                flex-direction: column;
            }

            .cyngo-sidebar {
                display: none;
            }

            .laptop-container {
                flex: 1;
                width: 100%;
                height: 100%;
            }
        }
