* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            color: #e0e6ed;
            min-height: 100vh;
            line-height: 1.6;
        }

        /* Header */
        .header {
            background: rgba(13, 17, 23, 0.9);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid #30363d;
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .project-title {
            font-size: 1.8rem;
            font-weight: bold;
            color: #58a6ff;
            text-decoration: none;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            color: #e0e6ed;
            text-decoration: none;
            padding: 0.5rem 1rem;
            border-radius: 6px;
            transition: all 0.3s ease;
        }

        .nav-links a:hover {
            background: rgba(88, 166, 255, 0.1);
            color: #58a6ff;
        }

        /* Main Container */
        .main-container {
            display: grid;
            grid-template-columns: 300px 1fr 250px;
            gap: 2rem;
            max-width: 1400px;
            margin: 2rem auto;
            padding: 0 2rem;
        }

        /* Sidebar */
        .sidebar {
            background: rgba(22, 27, 34, 0.6);
            backdrop-filter: blur(10px);
            border-radius: 12px;
            padding: 2rem;
            height: fit-content;
            border: 1px solid #30363d;
            position: sticky;
            top: 100px;
        }

        .profile-section {
            text-align: center;
        }

        .profile-image {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: linear-gradient(45deg, #58a6ff, #39c5cf);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            font-size: 3rem;
            color: white;
            border: 3px solid #58a6ff;
        }

        .profile-name {
            font-size: 1.4rem;
            font-weight: bold;
            color: #e0e6ed;
            margin-bottom: 0.5rem;
        }

        .profile-description {
            color: #8b949e;
            margin-bottom: 2rem;
            font-size: 0.9rem;
        }

        .social-links {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }

        .social-link {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            padding: 0.8rem;
            background: rgba(88, 166, 255, 0.1);
            border-radius: 8px;
            text-decoration: none;
            color: #58a6ff;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: rgba(88, 166, 255, 0.2);
            transform: translateY(-2px);
        }

        /* Content Area */
        .content {
            background: rgba(22, 27, 34, 0.6);
            backdrop-filter: blur(10px);
            border-radius: 12px;
            border: 1px solid #30363d;
            padding: 3rem;
            max-width: 100%;
            overflow-x: hidden;
        }

        /* Table of Contents */
        .toc {
            background: rgba(22, 27, 34, 0.6);
            backdrop-filter: blur(10px);
            border-radius: 12px;
            padding: 1.5rem;
            height: fit-content;
            border: 1px solid #30363d;
            position: sticky;
            top: 100px;
        }

        .toc-title {
            font-size: 1.1rem;
            color: #e0e6ed;
            margin-bottom: 1rem;
            font-weight: bold;
        }

        .toc-list {
            list-style: none;
        }

        .toc-list li {
            margin: 0.5rem 0;
        }

        .toc-list a {
            color: #8b949e;
            text-decoration: none;
            padding: 0.3rem 0;
            display: block;
            border-left: 2px solid transparent;
            padding-left: 1rem;
            transition: all 0.3s ease;
        }

        .toc-list a:hover, .toc-list a.active {
            color: #58a6ff;
            border-left-color: #58a6ff;
        }

        .toc-list .toc-sub {
            margin-left: 1rem;
            font-size: 0.9rem;
        }

        /* Documentation Styles */
        .doc-section {
            margin-bottom: 3rem;
            scroll-margin-top: 120px;
        }

        .doc-section h1 {
            font-size: 2.5rem;
            color: #e0e6ed;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #58a6ff;
        }

        .doc-section h2 {
            font-size: 2rem;
            color: #e0e6ed;
            margin: 2rem 0 1rem 0;
            padding-bottom: 0.3rem;
            border-bottom: 1px solid #30363d;
        }

        .doc-section h3 {
            font-size: 1.5rem;
            color: #58a6ff;
            margin: 1.5rem 0 1rem 0;
        }

        .doc-section h4 {
            font-size: 1.2rem;
            color: #39c5cf;
            margin: 1rem 0 0.5rem 0;
        }

        .doc-section p {
            margin-bottom: 1rem;
            color: #8b949e;
        }

        .doc-section ul, .doc-section ol {
            margin: 1rem 0 1rem 2rem;
            color: #8b949e;
        }

        .doc-section li {
            margin: 0.5rem 0;
        }

        /* Code blocks */
        .code-block {
            background: #0d1117;
            border: 1px solid #30363d;
            border-radius: 8px;
            padding: 1rem;
            margin: 1rem 0;
            overflow-x: auto;
            font-family: 'Courier New', monospace;
        }

        .code-inline {
            background: rgba(88, 166, 255, 0.1);
            color: #58a6ff;
            padding: 0.2rem 0.4rem;
            border-radius: 4px;
            font-family: 'Courier New', monospace;
            font-size: 0.9em;
        }

        /* Info boxes */
        .info-box {
            background: rgba(88, 166, 255, 0.1);
            border-left: 4px solid #58a6ff;
            padding: 1rem;
            margin: 1rem 0;
            border-radius: 0 8px 8px 0;
        }

        .warning-box {
            background: rgba(255, 193, 7, 0.1);
            border-left: 4px solid #ffc107;
            padding: 1rem;
            margin: 1rem 0;
            border-radius: 0 8px 8px 0;
        }

        .error-box {
            background: rgba(248, 81, 73, 0.1);
            border-left: 4px solid #f85149;
            padding: 1rem;
            margin: 1rem 0;
            border-radius: 0 8px 8px 0;
        }

        .success-box {
            background: rgba(57, 197, 95, 0.1);
            border-left: 4px solid #39c55f;
            padding: 1rem;
            margin: 1rem 0;
            border-radius: 0 8px 8px 0;
        }

        /* Tables */
        .doc-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1rem 0;
            background: rgba(13, 17, 23, 0.5);
            border-radius: 8px;
            overflow: hidden;
        }

        .doc-table th {
            background: rgba(88, 166, 255, 0.1);
            color: #58a6ff;
            padding: 1rem;
            text-align: left;
            font-weight: bold;
        }

        .doc-table td {
            padding: 1rem;
            border-top: 1px solid #30363d;
            color: #8b949e;
        }

        .doc-table tr:hover {
            background: rgba(88, 166, 255, 0.05);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .main-container {
                grid-template-columns: 250px 1fr;
            }
            
            .toc {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .main-container {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .nav-container {
                flex-direction: column;
                gap: 1rem;
            }

            .nav-links {
                gap: 1rem;
            }

            .sidebar, .toc {
                position: static;
            }
            
            .content {
                padding: 2rem;
            }
        }

                .profile-image-wrapper {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  padding: 4px; /* Espacio para el borde degradado */
  background: linear-gradient(45deg, #9333ea, #3b82f6);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 0 20px rgba(147, 51, 234, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-image-wrapper:hover {
  transform: scale(1.05);
  box-shadow: 0 0 35px rgba(147, 51, 234, 0.6);
}

.profile-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #1a1a2e; /* Borde interno para que la imagen no toque el degradado directamente */
  display: block;
}