@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

body {
    background-color: #ffcce6;
    background-image: radial-gradient(#ff99cc 20%, transparent 20%),
                      radial-gradient(#ff99cc 20%, transparent 20%);
    background-size: 30px 30px;
    background-position: 0 0, 15px 15px;
    font-family: 'Comic Sans MS', cursive, sans-serif;
    color: #4b0082;
    text-align: center;
    margin: 0;
    padding: 20px;
    min-height: 100vh;
}

h1 {
    color: #ff66b3;
    text-shadow: 2px 2px #fff;
    font-size: 3em;
}

a {
    color: #ff33cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.intro {
    font-size: 20px;
    background: #fff0f5;
    border-radius: 15px;
    padding: 10px;
    display: inline-block;
}

.images img {
    width: 200px;
    margin: 10px;
    border: 3px solid #ffb6c1;
    border-radius: 10px;
}

.audio-player {
    background: #ffe6f2;
    border-radius: 20px;
    padding: 20px;
    margin: 20px auto;
    width: 80%;
    box-shadow: 0 0 15px #ff99cc;
}

.player-controls {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
    justify-content: center;
}

audio {
    width: 100%;
    margin: 1rem 0;
    border-radius: 15px;
}

.playlist {
    background: #fff0f5;
    border-radius: 15px;
    padding: 15px;
    margin-top: 20px;
}

.playlist h2 {
    color: #ff66b3;
    font-size: 1.5em;
    margin-bottom: 15px;
    text-shadow: 1px 1px #fff;
}

.playlist-items {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.playlist-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem;
    background: #fff;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid #ffb6c1;
}

.playlist-item:hover {
    background: #fff0f5;
    transform: translateY(-2px);
}

.playlist-item.active {
    background: #ff66cc;
    color: white;
    border-color: #ff33cc;
}

.progress-container {
    margin: 15px 0;
    padding: 0 10px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #fff;
    border-radius: 10px;
    cursor: pointer;
    position: relative;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
}

.progress-fill {
    height: 100%;
    background: #ff66cc;
    border-radius: 10px;
    width: 0;
    transition: width 0.1s linear;
    box-shadow: 0 1px 3px rgba(255,102,204,0.3);
}

.time-display {
    display: flex;
    justify-content: space-between;
    margin-top: 5px;
    color: #4b0082;
    font-size: 0.9em;
    font-weight: bold;
}

.synth-section {
    margin-top: 30px;
    background: #fff0fa;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 0 15px #ffb6c1;
}

.synth label {
    display: block;
    margin: 10px;
}

button {
    background: #ff66cc;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 1em;
}

button:hover {
    background: #ff99cc;
}
