* {
            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;
            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 {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .section-title {
            font-size: 2rem;
            color: #e0e6ed;
            margin-bottom: 1rem;
        }

        /* Update Cards */
        .update-card {
            background: rgba(22, 27, 34, 0.6);
            backdrop-filter: blur(10px);
            border-radius: 12px;
            border: 1px solid #30363d;
            padding: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .update-card:hover {
            transform: translateY(-4px);
            border-color: #58a6ff;
            box-shadow: 0 8px 32px rgba(88, 166, 255, 0.1);
        }

        .update-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 0.8rem;
        }

        .update-version {
            background: linear-gradient(45deg, #58a6ff, #39c5cf);
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: bold;
        }

        .update-date {
            color: #8b949e;
            font-size: 0.9rem;
        }

        .update-title {
            font-size: 1.3rem;
            color: #e0e6ed;
            margin-bottom: 0.5rem;
        }

        .update-description {
            color: #8b949e;
            line-height: 1.5;
        }

        /* Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(4px);
            z-index: 1000;
        }

        .modal-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: #161b22;
            border-radius: 12px;
            border: 1px solid #30363d;
            max-width: 600px;
            width: 90%;
            max-height: 80vh;
            overflow-y: auto;
            padding: 2rem;
        }

        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .modal-title {
            font-size: 1.5rem;
            color: #e0e6ed;
        }

        .close-btn {
            background: none;
            border: none;
            color: #8b949e;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.5rem;
            border-radius: 6px;
            transition: all 0.3s ease;
        }

        .close-btn:hover {
            background: rgba(248, 81, 73, 0.1);
            color: #f85149;
        }

        .modal-details {
            color: #8b949e;
            line-height: 1.6;
        }

        .modal-details h3 {
            color: #e0e6ed;
            margin: 1rem 0 0.5rem;
        }

        .modal-details ul {
            margin-left: 1.5rem;
        }

        .modal-details li {
            margin: 0.3rem 0;
        }

        /* Responsive */
        @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 {
                position: static;
            }
        }

        .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;
}