{
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: #0a0a0a;
            color: #e0e0e0;
            line-height: 1.6;
        }

        .container {
            max-width: 600px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        header {
            text-align: center;
            margin-bottom: 40px;
            border-bottom: 1px solid #333;
            padding-bottom: 30px;
        }

.avatar-wrapper {
margin: 0 auto 20px auto; 
    width: 100%; /* Ocupa el ancho disponible */
    max-width: 400px; /* Define el tamaño máximo que quieres que tenga la imagen */
}

.avatar-img {
width: 100%;
    height: auto; /* IMPORTANTE: Esto mantiene la proporción original de la imagen */
    border-radius: 8px; /* Cambia esto si quieres bordes rectos (0px) o levemente redondeados */
    display: block;
    margin: 0 auto; /* Asegura el centrado */
    border: 1px solid #333; /* Borde sutil para resaltar sobre el fondo negro */
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

p a {
    color: #667eea; /* Azul */
    text-decoration: none;
    transition: color 0.3s;
}

/* Efecto al pasar el mouse sobre esos enlaces */
p a:hover {
    color: #0008ff; /* Azul un poco más oscuro */
    text-decoration: underline;
}

        h1 {
            font-size: 28px;
            margin-bottom: 10px;
            color: #ffffff;
        }

        .tagline {
            font-size: 14px;
            color: #999;
            margin-bottom: 10px;
        }

        .bio {
            font-size: 16px;
            color: #b0b0b0;
            margin-top: 15px;
        }

        .links-section {
            margin-bottom: 50px;
        }

        .links-section h2 {
            font-size: 14px;
            text-transform: uppercase;
            color: #666;
            letter-spacing: 1px;
            margin-bottom: 25px;
            font-weight: 600;
        }

        .link-item {
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #222;
        }

        .link-item:last-child {
            border-bottom: none;
        }

        .link-title {
            font-size: 16px;
            color: #ffffff;
            margin-bottom: 5px;
            font-weight: 600;
        }

        .link-description {
            font-size: 13px;
            color: #888;
            margin-bottom: 8px;
        }

        .link-btn {
            display: inline-block;
            color: #667eea;
            text-decoration: none;
            font-size: 13px;
            font-weight: 600;
            transition: color 0.3s;
        }

        .link-btn:hover {
            color: #764ba2;
        }


.social-links {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap; /* Permite que se acomoden en varias líneas */
    justify-content: center;
    gap: 10px; /* Espacio reducido para que quepan todos */
}

.social-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    padding: 6px 14px;
    border: 1px solid #333;
    border-radius: 6px; /* Bordes un poco menos redondeados para estilo más "tech" */
    transition: all 0.2s ease;
}

.social-links a:hover {
    background: #333;
    color: #ffffff;
    border-color: #667eea;
}          

.support-section {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 50px;
    text-align: center;
}

.support-section h2 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ffffff;
}

.support-section p {
    font-size: 14px;
    color: #999;
    margin-bottom: 20px;
}

.paypal-btn {
    display: inline-block;
    padding: 12px 25px;
    background: #0070ba; /* Color oficial de PayPal */
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s;
}

.paypal-btn:hover {
    background: #005ea6;
}

        footer {
            border-top: 1px solid #333;
            padding-top: 30px;
            font-size: 12px;
            color: #666;
            text-align: center;
        }

        footer a {
            color: #667eea;
            text-decoration: none;
            margin: 0 10px;
        }

        footer a:hover {
            text-decoration: underline;
        }

        @media (max-width: 600px) {
            .container {
                padding: 20px 15px;
            }

            h1 {
                font-size: 24px;
            }

            .email-form {
                flex-direction: column;
            }
        }
