@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #111;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    flex-direction: column;
    font-size: 1.2em; /* Aumenta el tamaño sin deformar */
    padding-top: 10px; /* Reduce el espacio superior */
}

.container {
    text-align: center;
    width: 100%;
    max-width: 400px;
    margin-top: -80px !important; /* Fuerza que suba más */
}

.profile-img {
    width: 150px; /* Ajusta el tamaño según prefieras */
    height: 150px;
    border-radius: 50%; /* Mantiene la forma circular */
    object-fit: cover; /* Evita que se deforme */
    display: block;
    margin: 0 auto 20px auto; /* Último valor (20px) aumenta el espacio debajo */
    border: 2px solid white; /* Borde blanco alrededor */
}



.profile h1 {
    font-size: 24px;
    margin-bottom: 10px;
}

/* Redes Sociales */
.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.social-links a {
    color: #fff;
    font-size: 26px;
    transition: 0.3s;
}

.social-links a:hover {
    color: #ffdd57;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.link {
    justify-content: center;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #222;
    padding: 12px;
    border-radius: 10px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: 0.3s;
}

.link img {

/* Estilos para los iconos dentro de los botones */
.link i {
    font-size: 20px;
    margin-right: 10px;
    color: #f7931a; /* Color naranja de Bitcoin */
}
    position: absolute;
    left: 12px;
    width: 30px;
    height: 30px;
    border-radius: 5px;
}

.link:hover {
    background: #ffffff;
    color: #111;
}

.vip {
    background: linear-gradient(45deg, #ffdd57, #f4a261);
    color: black;
}

.vip1 {
    background: linear-gradient(45deg, #ea6464, #e42020);
    color: rgb(0, 0, 0);
}

.vip2 {
    background: linear-gradient(45deg, #9faaf5, #622cd7);
    color: rgb(0, 0, 0);
}

.vip:hover {
    background: #fff;
}


.copytrading {
    background: linear-gradient(45deg, #3ce582, #108c44); /* Verde */
    color: black;
    font-weight: 600;
    text-align: center;
    border-radius: 10px;
    padding: 12px;
    transition: 0.3s;
}

.copytrading:hover {
    background: #2ecc71;
    color: white;
}
