        :root {
            --primary-color: #2c3e50;
            --secondary-color: #9b59b6;
            --accent-color: #e74c3c;
            --kernel-color: #3498db;
            --structure-color: #2ecc71;
            --example-color: #e67e22;
            --activity-color: #1abc9c;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Roboto', sans-serif;
            color: #333;
            line-height: 1.6;
            background-color: #f8f9fa;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
        }
        
        /* Header y Navegación */
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), #34495e);
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
        }
        
        .nav-link {
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .nav-link:hover {
            color: var(--secondary-color) !important;
            transform: translateY(-2px);
        }
        
        /* Banner del Tema */
        .theme-header {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 4rem 0;
            margin-bottom: 2rem;
            position: relative;
            overflow: hidden;
        }
        
        .theme-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.1)"/></svg>');
            background-size: cover;
        }
        
        .theme-badge {
            background: rgba(255,255,255,0.2);
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            display: inline-block;
            margin-bottom: 1rem;
            font-size: 0.9rem;
        }
        
        /* Objetivos */
        .objectives-container {
            margin: 2rem 0;
        }
        
        .objective-general {
            background: linear-gradient(135deg, var(--secondary-color), #8e44ad);
            color: white;
            border-radius: 15px;
            padding: 2rem;
            margin-bottom: 2rem;
        }
        
        .objective-specific {
            background: white;
            border-radius: 10px;
            padding: 1.5rem;
            box-shadow: 0 3px 15px rgba(0,0,0,0.08);
            margin-bottom: 1rem;
            border-left: 4px solid var(--secondary-color);
        }
        
        .objective-icon {
            width: 50px;
            height: 50px;
            background: var(--secondary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            flex-shrink: 0;
        }
        
        /* Secciones de contenido */
        .section-card {
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            margin-bottom: 2rem;
            overflow: hidden;
            transition: transform 0.3s;
        }
        
        .section-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.12);
        }
        
        .section-header {
            background: linear-gradient(135deg, var(--primary-color), #3a506b);
            color: white;
            padding: 1.5rem;
            border: none;
        }
        
        .section-body {
            padding: 2rem;
        }
        
        /* Componentes del SO */
        .components-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        
        .component-card {
            background: white;
            border-radius: 10px;
            padding: 1.5rem;
            box-shadow: 0 3px 15px rgba(0,0,0,0.08);
            text-align: center;
            border-top: 4px solid var(--kernel-color);
            transition: all 0.3s;
        }
        
        .component-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.12);
        }
        
        .component-icon {
            font-size: 2.5rem;
            color: var(--kernel-color);
            margin-bottom: 1rem;
        }
        
        /* Modelos de estructura */
        .structure-types {
            margin: 2rem 0;
        }
        
        .structure-card {
            background: white;
            border-radius: 10px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            border-left: 4px solid;
            box-shadow: 0 3px 15px rgba(0,0,0,0.05);
            transition: all 0.3s;
        }
        
        .structure-card:hover {
            transform: translateX(5px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }
        
        .structure-mono {
            border-left-color: #e74c3c;
        }
        
        .structure-capas {
            border-left-color: #3498db;
        }
        
        .structure-micro {
            border-left-color: #2ecc71;
        }
        
        .structure-hibrido {
            border-left-color: #9b59b6;
        }
        
        .structure-modular {
            border-left-color: #f39c12;
        }
        
        .pros-cons {
            display: flex;
            gap: 2rem;
            margin: 1rem 0;
        }
        
        .pros, .cons {
            flex: 1;
        }
        
        .pros h6, .cons h6 {
            margin-bottom: 0.5rem;
        }
        
        .pros ul, .cons ul {
            list-style: none;
            padding-left: 0;
        }
        
        .pros li {
            color: #27ae60;
        }
        
        .cons li {
            color: #e74c3c;
        }
        
        .pros li:before {
            content: "✓ ";
            font-weight: bold;
        }
        
        .cons li:before {
            content: "✗ ";
            font-weight: bold;
        }
        
        .examples-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        
        .example-card {
            background: white;
            border-radius: 10px;
            padding: 1.5rem;
            box-shadow: 0 3px 15px rgba(0,0,0,0.08);
            border-top: 4px solid var(--example-color);
        }
        
        .example-logo {
            font-size: 3rem;
            margin-bottom: 1rem;
        }
        
        .linux-logo {
            color: #f1502f;
        }
        
        .windows-logo {
            color: #0078d7;
        }
        
        .android-logo {
            color: #3ddc84;
        }
        
        .macos-logo {
            color: #000000;
        }
        
        .code-block {
            background: #2d3748;
            color: #e2e8f0;
            padding: 1rem;
            border-radius: 8px;
            font-family: 'Courier New', monospace;
            margin: 1rem 0;
            overflow-x: auto;
        }
        
        /* Actividad evaluativa */
        .activity-container {
            background: linear-gradient(135deg, var(--activity-color), #16a085);
            color: white;
            border-radius: 15px;
            padding: 2rem;
            margin: 2rem 0;
        }
        
        .part-card {
            background: rgba(255,255,255,0.2);
            border-radius: 10px;
            padding: 1.5rem;
            margin: 1.5rem 0;
        }
        
        .question-item {
            background: rgba(255,255,255,0.1);
            padding: 1rem;
            border-radius: 8px;
            margin: 0.5rem 0;
            border-left: 4px solid white;
        }
        
        /* Sidebar informativa */
        .info-sidebar {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            position: sticky;
            top: 20px;
        }
        
        .info-item {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid #e9ecef;
        }
        
        /* Glosario */
        .glossary-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin: 1.5rem 0;
        }
        
        .glossary-term {
            background: white;
            border: 1px solid #e9ecef;
            border-radius: 8px;
            padding: 1rem;
            transition: all 0.3s;
            cursor: pointer;
        }
        
        .glossary-term:hover {
            border-color: var(--secondary-color);
            transform: translateY(-3px);
        }
        
        /* Material de estudio */
        .material-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        
        .material-item {
            background: white;
            border-radius: 10px;
            padding: 1.5rem;
            text-align: center;
            box-shadow: 0 3px 15px rgba(0,0,0,0.08);
            transition: all 0.3s;
            cursor: pointer;
        }
        
        .material-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.12);
        }
        
        .material-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--secondary-color);
        }
        
        /* Footer */
        footer {
            background: var(--primary-color);
            color: white;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        
        /* Animaciones */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .animate-fade {
            animation: fadeInUp 0.6s ease-out;
        }
        
        /* Responsividad */
        @media (max-width: 768px) {
            .theme-header {
                padding: 3rem 0;
                text-align: center;
            }
            
            .theme-header h1 {
                font-size: 2rem;
            }
            
            .section-body {
                padding: 1.5rem;
            }
            
            .pros-cons {
                flex-direction: column;
                gap: 1rem;
            }
            
            .info-sidebar {
                position: static;
                margin-bottom: 2rem;
            }
            
            .components-grid, .examples-grid {
                grid-template-columns: 1fr;
            }
        }