body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background: url('../image/gokoarkaplan.gif') no-repeat center center fixed;
    background-size: cover;
    font-family: Arial, sans-serif;
    overflow: hidden;
}

.user-card {
    background-color: rgba(0, 0, 0, 0.8); /* Hafif açık siyah */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 20px;
    width: 300px;
    opacity: 0;
    transform: translateY(-50px);
    animation: fadeInUp 1s ease-out forwards;
}

.user-card-spotify-card {
    background-color: rgba(0, 0, 0, 0.1); /* Hafif açık siyah */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 20px;
    width: 300px;
    opacity: 0;
    transform: translateY(-50px);
    animation: fadeInUp 1s ease-out forwards;
}

.profile-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.3s ease; /* animasyon geçişi */
}

.profile-img:hover {
    transform: scale(1.1); /* büyüme efekti */
}

.user-name {
    font-size: 24px;
    margin: 10px 0 5px 0;
    color: white; /* Yazı rengini beyaz yaptık */
}

.user-title {
    font-size: 16px;
    color: #ccc; /* Yazı rengini daha açık bir gri yaptık */
    margin: 0 0 20px 0;
}

.social-icons {
    margin-top: 20px;
}

.social-icons a {
    margin: 0 10px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s, color 0.3s; /* Animasyon geçiş süresi */
}

.social-icons i {
    font-size: 24px;
    color: white; /* İkonların rengini beyaz yaptık */
}

.social-icons a:hover i {
    transform: scale(1.2); /* İkonu büyüt */
    color: #1da1f2; /* İkon rengini değiştir (Örneğin, Twitter mavisi) */
}

.activities {
    margin-top: 20px;
}

.listening-bar {
    display: flex;
    align-items: center;
    background: #f7f7f7;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    margin-top: 10px; /* Uygun bir boşluk bırakma */
}

.listening-bar img {
    border-radius: 5px;
    margin-right: 10px;
    width: 64px;
    height: 64px;
}

.listening-bar .details {
    flex: 1; /* Metin içeriğinin genişliği ayarla */
}

.listening-bar .details p {
    margin: 2px 0;
    font-size: 14px;
    color: #333; /* Metin rengini koyu gri yap */
}

.listening-bar .details .song {
    font-weight: bold;
}

.listening-bar .details .artist {
    color: #555; /* Sanatçı adı için daha koyu bir gri */
}

.listening-bar {
    display: flex;
    align-items: center;
    background: #f7f7f7;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.listening-bar img {
    border-radius: 5px;
    margin-right: 10px;
    width: 64px;
    height: 64px;
}

.listening-bar .details {
    text-align: left;
}

.listening-bar .details p {
    margin: 2px 0;
    font-size: 14px;
}

.listening-bar .details .song {
    font-weight: bold;
}

.listening-bar .details .artist {
    color: #555;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
