@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@400;700&display=swap');

body {
    font-family: 'Be Vietnam Pro', sans-serif;
    background-color: #f0f2f5;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background: linear-gradient(135deg, #2b32b2, #141e30);
}

.container {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 500px;
    width: 90%;
}

.profile .avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.profile h1 {
    margin: 15px 0 5px;
    font-size: 2em;
}

.profile p {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 30px;
}

.donate-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.link-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: 700;
    color: #fff; /* Màu chữ mặc định là trắng */
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.link-button i {
    margin-right: 10px;
}

.link-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.playerduo { background-color: #e74c3c; }
.wescan { background-color: #f1c40f; color: #333; }
.zypage { background-color: #8e44ad; }

.qr-code {
    margin-bottom: 30px;
}

.qr-code h2 {
    margin-bottom: 15px;
}

.qr-code img {
    max-width: 200px;
    border-radius: 10px;
    border: 2px solid #ddd;
    padding: 5px;
}

.qr-code p {
    margin: 5px 0;
    color: #555;
}

.social-links {
    margin-bottom: 30px;
}

.social-links a {
    color: #333;
    font-size: 1.5em;
    margin: 0 15px;
    transition: color 0.2s ease;
}

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

footer {
    font-size: 0.9em;
    color: #888;
}