body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #ffe6f0; /* Light Pink */
    color: #333;
}

#cute-audio {
    width: 300px; /* Width of the audio control */
    height: 50px; /* Height of the audio control */
    background-color: #ffccf9; /* Background color */
    border-radius: 25px; /* Rounded edges */
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
}

#cute-audio::-webkit-media-controls-panel {
    background-color: #ffccf9; /* Same as background */
    border-radius: 25px; /* Rounded edges */
    padding: 5px;
}

#cute-audio::-webkit-media-controls-play-button,
#cute-audio::-webkit-media-controls-pause-button,
#cute-audio::-webkit-media-controls-mute-button,
#cute-audio::-webkit-media-controls-volume-slider,
#cute-audio::-webkit-media-controls-timeline {
    filter: invert(100%);
    background-color: #ffd700; /* Fun, vibrant color for controls */
    border-radius: 50%; /* Round control buttons */
    padding: 5px;
    transition: all 0.3s ease;
}

#cute-audio::-webkit-media-controls-play-button:hover,
#cute-audio::-webkit-media-controls-pause-button:hover,
#cute-audio::-webkit-media-controls-mute-button:hover {
    background-color: #ff69b4; /* Change color on hover */
    transform: scale(1.2); /* Scale up on hover for a playful effect */
}

#cute-audio::-webkit-media-controls-volume-slider-container {
    width: 60px; /* Slim down the volume control */
    height: 10px;
    background-color: #ffffff;
    border-radius: 5px;
    margin: auto 10px;
}

#cute-audio::-webkit-media-controls-volume-slider {
    width: 100%;
    background-color: #00ff00; /* Vibrant green for volume */
    border-radius: 5px;
}

#cute-audio::-webkit-media-controls-timeline-container {
    background-color: #ffffff;
    border-radius: 10px;
    height: 6px;
    margin: 10px 10px;
}

#cute-audio::-webkit-media-controls-timeline {
    background-color: #ff69b4; /* Pink for the timeline progress */
    border-radius: 10
}

p, ul {
    margin-bottom: 15px;
}
ul {
    list-style-type: none;
    padding-left: 0;
}
ul li::before {
    content: "⭐";
    margin-right: 8px;
}
.disclaimer {
    font-size: 0.9em;
    color: #555;
    margin-top: 20px;
}
.highlight {
    color: #ff4081;
    font-weight: bold;
}

.container {
    display: flex;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    height: 100vh;
    background: url('https://img.freepik.com/free-vector/modern-abstract-white-minimal-background_84443-8365.jpg') no-repeat center center;
    background-size: cover; /* Ensure the background covers the entire container */
}

.page {
    min-width: 100vw;
    height: 100vh;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.5); /* Slight transparency for a layered effect */
    border-radius: 15px;
    margin: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
}

h1 {
    margin: 0;
    text-align: center;
    font-size: 24px;
    color: #ff4081; /* Pink */
}

.content {
    margin: 10px;
    padding: 10px;
    border: #ff4081 1px dashed;
    border-radius: 15px;
}

.content h2 {
    margin: 10px 0 0;
    font-size: 20px;
    text-align: center;
}

.content p {
    margin: 5px 0 0;
    font-size: 16px;
    color: #555;
}

.position {
    position: absolute;
    top: 20px;
    background-color: #ff4081;
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
}

.mandatory {
    position: absolute;
    bottom: 20px;
    background-color: #ff4081;
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
}
