#header {
    background-color: #00d9ff;
    border-radius: 6px;
    border-bottom: 1px white solid;
}

.user-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
}

.avatar {
    width: 80px;
    height: 80px;
    border-radius: 10%;
    object-fit: cover;
    border: 2px solid white;
}

.username {
    font-weight: bold;
    color: white;
    font-size: 18px;
}

.game-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.download-btn {
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 8px;
    background: #eeeeee;
    color: #222831;
    transition: 0.2s ease;
    text-decoration: none;
}

.download-btn:hover {
    background: #00adb5;
    color: white;
}

.game-logo {
    width: 80px;
    height: auto;
}

.download-btn {
    min-width: 120px;
    padding: 10px 20px;
    font-weight: 500;
    border: 2px solid #ccc;
    transition: all 0.3s ease;
    border-radius: 10px;
}

.download-btn:hover {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
}
