body {
    background: linear-gradient(135deg, #e50914, #000000 70%);
    color: var(--text-color);
    font-family: Arial, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
}

:root {
    --bg-color: #000;
    --text-color: #fff;
    --accent-color: #e50914; /* Rojo UTCH */
}

.container {
    text-align: center;
    width: 90%;
    max-width: 400px;
}

.profile-img {
    width: 100px;
    height: 100px;
    border-radius: 0;
    object-fit: contain;
    margin-bottom: 15px;
    border: none;
    background-color: transparent;
}

h1 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

p {
    margin-bottom: 20px;
    font-size: 1rem;
    color: #ccc;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.link-btn {
    background-color: #f7f7f7;
    color: black;
    text-decoration: none;
    padding: 12px;
    border-radius: 10px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform 0.2s ease, background-color 0.3s ease;
}

.link-btn:hover {
    background-color: #e5e5e5;
    transform: scale(1.05);
}

.link-btn img {
    width: 20px;
    height: 20px;
}
