body {
    background-color: #f8f9fa;
    padding: 20px;
}

.profile-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.profile-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: #dc3545;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-image img {
    width: 60px;
    height: 60px;
    filter: invert(1);
}

.profile-name {
    font-size: 24px;
    margin-bottom: 5px;
}

.profile-username {
    color: #6c757d;
    margin-bottom: 30px;
}

.link-button {
    display: block;
    background-color: #0d47a1;
    color: white;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.link-button:hover {
    background-color: #0a3880;
    color: white;
}

.powered-by {
    margin-top: 40px;
    color: #6c757d;
}