* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
            color: #e2e8f0;
            min-height: 100vh;
            line-height: 1.6;
        }

        /* Navigation */
        .navbar {
            background: rgba(15, 15, 35, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid #2d3748;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 70px;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            background: linear-gradient(45deg, #9333ea, #3b82f6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .nav-links a {
            color: #cbd5e0;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a:hover {
            color: #9333ea;
            transform: translateY(-2px);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(45deg, #9333ea, #3b82f6);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        /* Hero Banner */
        .hero-banner {
            height: 400px;
            background: linear-gradient(rgba(15, 15, 35, 0.7), rgba(26, 26, 46, 0.7)), 
                        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><defs><linearGradient id="bg" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23312e81;stop-opacity:1" /><stop offset="50%" style="stop-color:%236366f1;stop-opacity:1" /><stop offset="100%" style="stop-color:%239333ea;stop-opacity:1" /></linearGradient></defs><rect width="1200" height="400" fill="url(%23bg)"/><circle cx="200" cy="100" r="50" fill="rgba(255,255,255,0.1)"/><circle cx="800" cy="300" r="80" fill="rgba(255,255,255,0.05)"/><circle cx="1000" cy="150" r="60" fill="rgba(255,255,255,0.08)"/></svg>');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            margin-top: 70px;
            position: relative;
            overflow: hidden;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            background: linear-gradient(45deg, #ffffff, #9333ea);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: fadeInUp 1s ease-out;
        }

        .hero-content p {
            font-size: 1.3rem;
            color: #cbd5e0;
            max-width: 600px;
            animation: fadeInUp 1s ease-out 0.3s both;
        }

        /* Main Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
            display: grid;
            grid-template-columns: 300px 1fr;
            gap: 40px;
        }

        /* Profile Sidebar */
        .profile-sidebar {
            background: rgba(26, 26, 46, 0.6);
            backdrop-filter: blur(10px);
            border: 1px solid #2d3748;
            border-radius: 20px;
            padding: 30px;
            height: fit-content;
            position: sticky;
            top: 120px;
            transition: all 0.3s ease;
        }

        .profile-sidebar:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(147, 51, 234, 0.2);
        }

        .profile-image {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: linear-gradient(45deg, #9333ea, #3b82f6);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 3rem;
            color: white;
            font-weight: bold;
            box-shadow: 0 10px 30px rgba(147, 51, 234, 0.3);
        }

        .profile-name {
            text-align: center;
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: #ffffff;
        }

        .profile-title {
            text-align: center;
            color: #9ca3af;
            margin-bottom: 30px;
            font-size: 0.9rem;
        }

        .social-links {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .social-link {
            display: flex;
            align-items: center;
            padding: 12px 15px;
            background: rgba(45, 55, 72, 0.5);
            border-radius: 12px;
            text-decoration: none;
            color: #cbd5e0;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }

        .social-link:hover {
            background: rgba(147, 51, 234, 0.2);
            border-color: #9333ea;
            transform: translateX(5px);
        }

        .social-link i {
            margin-right: 12px;
            font-size: 1.2rem;
            width: 20px;
        }

        /* Main Content */
        .main-content {
            background: rgba(26, 26, 46, 0.4);
            backdrop-filter: blur(10px);
            border: 1px solid #2d3748;
            border-radius: 20px;
            padding: 40px;
        }

        .content-header {
            margin-bottom: 40px;
        }

        .content-header h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 10px;
            background: linear-gradient(45deg, #ffffff, #9333ea);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .content-header p {
            color: #94a3b8;
            font-size: 1.1rem;
        }

        /* Blog Posts */
        .blog-post {
            background: rgba(45, 55, 72, 0.3);
            border: 1px solid #374151;
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 30px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .blog-post::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(45deg, #9333ea, #3b82f6);
        }

        .blog-post:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(147, 51, 234, 0.15);
            border-color: #9333ea;
        }

        .post-meta {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 15px;
            color: #9ca3af;
            font-size: 0.9rem;
        }

        .post-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: #ffffff;
        }

        .post-content {
            color: #cbd5e0;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .read-more {
            color: #9333ea;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .read-more:hover {
            color: #3b82f6;
            transform: translateX(5px);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hero-content h1 {
                font-size: 2.5rem;
            }

            .hero-content p {
                font-size: 1.1rem;
            }

            .container {
                grid-template-columns: 1fr;
                gap: 30px;
                padding: 20px;
            }

            .profile-sidebar {
                position: relative;
                top: 0;
            }

            .main-content {
                padding: 25px;
            }

            .content-header h2 {
                font-size: 2rem;
            }
        }

        @media (max-width: 480px) {
            .hero-banner {
                height: 300px;
            }

            .hero-content h1 {
                font-size: 2rem;
            }

            .blog-post {
                padding: 20px;
            }
        }
        
        .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;
}

.social-icon {
  width: 25px;
  height: 20px;
  margin-right: 12px;
  display: inline-block;
  vertical-align: middle;
}
