* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #bea4d2;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
}

/* لودینگ */
.loading-screen {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #7b10f7;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 24px;
    font-weight: bold;
    transition: opacity 1s ease-out;
}

.hidden {
    display: none;
}

.container {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 350px;
    padding: 25px;
    text-align: center;
    opacity: 0;
    animation: fadeIn 1s ease-in-out 1s forwards;
}

/* پلیر آهنگ */
.music-player {
    display: flex;
    align-items: center;
    background: #7c0dd6;
    padding: 10px;
    border-radius: 15px;
    margin-bottom: 15px;
    animation: slideDown 1s ease-in-out 1.5s forwards;
    opacity: 0;
}

.song-cover {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    margin-right: 10px;
}

.song-info {
    flex-grow: 1;
}

.song-title {
    font-size: 16px;
    font-weight: bold;
}

.song-artist {
    font-size: 12px;
    color: #666;
}

#playPauseBtn {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

/* پروفایل */
.profile {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #7c0dd6;
    margin-bottom: 15px;
    animation: fadeIn 1s ease-in-out 2s forwards;
    opacity: 0;
}

h1 {
    font-size: 22px;
    font-weight: 600;
    color: #7c0dd6;
    margin-bottom: 5px;
    animation: fadeIn 1s ease-in-out 2.5s forwards;
    opacity: 0;
}

.name {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    animation: fadeIn 1s ease-in-out 3s forwards;
    opacity: 0;
}

.bio {
    font-size: 14px;
    color: #666;
    margin: 8px 0 15px;
    animation: fadeIn 1s ease-in-out 3.5s forwards;
    opacity: 0;
}

/* لینک‌ها */
.social-links a {
    display: block;
    font-size: 16px;
    color: #7c0dd6;
    text-decoration: none;
    margin: 5px 0;
    transition: 0.3s;
    animation: fadeIn 1s ease-in-out 4s forwards;
    opacity: 0;
}

.social-links a:hover {
    color: #7c0dd6;
    text-decoration: underline;
}

/* انیمیشن‌ها */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}