body {
    background: url('background-image.jpg') no-repeat center center fixed; /* Add your background image */
    background-size: cover;
    font-family: 'Segoe UI', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 300px;
}

.profile-pic {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 15px;
    display: block;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

h1 {
    margin: 10px 0 5px;
    font-size: 22px;
}

p {
    color: gray;
    font-size: 14px;
    margin-bottom: 20px;
}

.level {
    margin: 20px 0;
}

.progress-bar {
    background: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    height: 10px;
    width: 100%;
}

.progress {
    background: #4caf50;
    height: 100%;
    transition: width 0.3s ease;
}

.links a {
    display: block;
    margin: 10px 0;
    background: #111827;
    color: white;
    text-decoration: none;
    padding: 12px;
    border-radius: 10px;
    transition: background 0.3s ease, transform 0.2s ease;
    position: relative;
}

.links a:hover {
    background: #4caf50;
    color: white;
    transform: scale(1.05);
}

@media (max-width: 600px) {
    .profile-pic {
        width: 90px;
        height: 90px;
    }
}