* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #0D141C;
    color: #fff;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow-x: hidden; /* Para evitar desplazamiento horizontal */
}

.container {
    text-align: center;
    width: 90%;
    max-width: 600px;
    position: relative;
}

.profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 30px;
    object-fit: cover;
    box-shadow: 0 0 20px #7B68EE; /* Luz lila */
}

.button {
    background-color: #7B68EE;
    color: #fff;
    border: none;
    padding: 20px;
    width: 100%;
    text-align: center;
    cursor: pointer;
    border-radius: 15px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
        box-shadow: 0 0 20px oklch(60.448% 0.19399 285.502); /* Luz lila */
}

.button::after {
    content: '';
    position: absolute;
    top: -75%;
    left: -75%;
    width: 100%;
    height: 100%;
    background-color: #FF69B4; /* Rosa neon */
    transform-origin: bottom right;
    transition: transform 0.5s ease, opacity 0.5s ease;
    opacity: 0;
}

.button:hover {
    background-color: #FF69B4; /* Rosa neon */
}

.button:hover::after {
    transform: translate(100%, 100%);
    opacity: 0.7;
}

.button:focus,
.button:active {
    outline: none;
}

.button:hover .button-text {
    animation: borderGlow 2s ease-in-out infinite alternate;
}

@keyframes borderGlow {
    from {
        text-shadow: 0 0 5px #FF69B4, 0 0 10px #FF69B4, 0 0 15px #FF69B4;
    }
    to {
        text-shadow: 0 0 20px #FF69B4, 0 0 30px #FF69B4, 0 0 40px #FF69B4;
    }
}