body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: #f5bde9;
    color: #333;
}
.navbar {
    display: flex;
    justify-content: center;
    background: #ff6b81;
    padding: 15px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.navbar a {
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    font-size: 18px;
    font-weight: bold;
    margin: 0 15px;
    border-radius: 25px;
    transition: background 0.3s;
}
.navbar a:hover {
    background: #ff4757;
}
.container {
    padding: 100px 20px 40px;
    text-align: center;
}
.section {
    background: white;
    padding: 30px;
    margin: 20px auto;
    border-radius: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 900px;
}
.carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 15px;
    padding: 15px;
}
.carousel iframe {
    width: 350px;
    height: 220px;
    scroll-snap-align: start;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}
.music-player audio {
    width: 100%;
    margin-top: 10px;
}
.tips p {
    background: #ffe6ea;
    padding: 12px;
    border-radius: 8px;
    margin: 8px 0;
    font-weight: bold;
}