* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: url('image.gif') no-repeat center center fixed;
    background-size: cover;
    color: #ffffff;
    text-align: center;
    line-height: 1.6;
}

.container {
    max-width: 400px;
    margin: 100px auto;
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
}

img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 10px;
}

h1 {
    font-size: 1.8rem;
}

.animated-text {
    animation: fade 3s infinite;
    font-size: 1.2rem;
}

@keyframes fade {
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% { opacity: 0; }
}

.social-links a {
    display: inline-block;
    margin: 10px;
    color: #00ffff;
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.social-links a:hover {
    transform: scale(1.2);
}

.music-player {
    margin-top: 20px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    display: inline-block;
}

.music-player img {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
    border-radius: 10px;
}

.controls {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

#play-pause {
    background: none;
    border: none;
    color: #00ffff;
    font-size: 1rem;
    cursor: pointer;
    outline: none;
    padding: 5px;
}

#play-pause:hover {
    color: #ffffff;
}

#progress-bar {
    flex: 1;
    height: 5px;
    background: #555;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

#progress {
    height: 100%;
    background: #00ffff;
    width: 0%;
}

#current-time, #total-time {
    font-size: 0.9rem;
    color: #ffffff;
}

.song-info a {
    color: #00ffff;
    text-decoration: none;
    font-weight: bold;
}

.song-info a:hover {
    text-decoration: underline;
}

button {
    display: inline-block;
    background-color: #00ffff;
    color: #000;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    margin-top: 10px;
    cursor: pointer;
    font-weight: bold;
}

button:hover {
    background-color: #008888;
}

.controls button {
    position: relative;
    top: -4px;
}

.animated-text {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    width: 0;
    max-width: 200px;
    animation: slide-in-out 4s infinite;
    font-size: 1.2rem;
    border-right: 2px solid #00ffff;
}


@keyframes slide-in-out {
    0% { width: 0; }
    50% { width: 100%; }
    100% { width: 0; }
}
