/* Thiết lập chung và Font chữ mới */
body {
    /* Dùng font 'Inter' đã nhập, nếu không có thì dùng sans-serif */
    font-family: 'Inter', sans-serif;
    color: #333;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;

    /* --- HIỆU ỨNG NỀN GRADIENT CHUYỂN ĐỘNG --- */
    background: linear-gradient(-45deg, #f7931e, #d35400, #ffb347, #fb4407);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    
    /* Căn giữa nội dung */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* Keyframes cho hiệu ứng nền */
@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Khung chứa chính (trong suốt nhẹ) */
.container {
    max-width: 450px;
    width: 100%;
    text-align: center;
    
    /* Nền trắng mờ (glassmorphism) */
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px); /* Hiệu ứng kính mờ */
    
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
}

/* Ảnh đại diện (logo) */
.avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 4px solid #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    
    /* Hiệu ứng khi di chuột vào avatar */
    transition: transform 0.3s ease;
}
.avatar:hover {
    transform: scale(1.1);
}

.username {
    font-size: 1.8em; /* Tăng kích thước */
    font-weight: 700; /* Đậm hơn */
    margin: 0;
    color: #111;
}

.description {
    font-size: 1em;
    color: #555;
    margin-top: 5px;
    margin-bottom: 30px;
}

/* Các nút link */
.links {
    display: flex;
    flex-direction: column;
    gap: 18px; /* Tăng khoảng cách */
}

.link-button {
    background-color: #ffffff;
    color: #333;
    text-decoration: none;
    padding: 18px 25px;
    border-radius: 12px; /* Bo tròn hơn */
    font-weight: 700;
    font-size: 1em;
    

    display: flex;
    align-items: center;
    justify-content: center;
    
    border: 2px solid #eee;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);

    /* --- HIỆU ỨNG NÚT BẤM --- */
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Hiệu ứng khi di chuột qua nút */
.link-button:hover {
    transform: scale(1.05); /* Phóng to nhẹ (nảy lên) */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    border-color: #ddd;
}

/* Căn chỉnh các icon */
.link-button i {
    font-size: 1.2em;
    margin-right: 12px;
    width: 20px; /* Đảm bảo các icon chiếm không gian bằng nhau */
}

/* Tô màu riêng cho từng icon (Bonus) */
.fa-facebook { color: #1877F2; }
.fa-instagram { color: #E4405F; }
.fa-linkedin { color: #0A66C2; }
.fa-tiktok { color: #000000; }

.footer {
    margin-top: 30px;
    font-size: 0.9em;
    color: #666;
}