* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
    background: linear-gradient(135deg, #FFB6C1 0%, #FFC0CB 50%, #FFE4E1 100%);
    min-height: 100vh;
}

.page {
    display: none;
    min-height: 100vh;
    width: 100%;
    position: relative;
    overflow: auto;
    animation: fadeIn 0.6s ease-in;
}

.page.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animated-bg {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 105, 180, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 192, 203, 0.1) 0%, transparent 50%);
}

.floating-hearts {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-hearts::before,
.floating-hearts::after {
    content: '❤️';
    position: absolute;
    font-size: 2rem;
    animation: float 6s infinite ease-in-out;
}

.floating-hearts::before {
    left: 10%;
    top: 10%;
    animation-delay: 0s;
}

.floating-hearts::after {
    right: 10%;
    bottom: 10%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(10deg); }
}

.heart-decorations {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
    font-size: 2.5rem;
    animation: heartBeat 1s infinite;
}

@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.stars, .stars-bg {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.stars::before,
.stars::after,
.stars-bg::before,
.stars-bg::after {
    content: '✨';
    position: absolute;
    font-size: 1.5rem;
    animation: twinkle 3s infinite;
}

.stars::before { left: 15%; top: 20%; }
.stars::after { right: 20%; top: 60%; animation-delay: 1s; }
.stars-bg::before { left: 5%; top: 30%; animation-delay: 0.5s; }
.stars-bg::after { right: 10%; top: 80%; animation-delay: 1.5s; }

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

#page1 {
    background: linear-gradient(135deg, #FFB6C1 0%, #FFC0CB 50%, #FFE4E1 100%);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.page1-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 600px;
}

.cute-title {
    margin-bottom: 40px;
    animation: slideDown 0.8s ease-out;
}

.cute-title h1 {
    font-size: 3.5rem;
    color: #ff1493;
    text-shadow: 3px 3px 0px rgba(255, 192, 203, 0.5), 0 0 20px rgba(255, 20, 147, 0.3);
    margin-bottom: 10px;
    font-weight: bold;
    letter-spacing: 2px;
}

.subtitle {
    font-size: 1.5rem;
    color: #c71585;
    font-weight: 600;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.gifs-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.gif-wrapper {
    background: white;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.2);
    text-align: center;
}

.cute-character {
    font-size: 5rem;
    animation: bounce 1s ease-in-out infinite;
}

.cute-character.large {
    font-size: 8rem;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.gif-wrapper p {
    color: #ff1493;
    font-weight: bold;
    margin-top: 10px;
}

.question-box {
    background: rgba(255, 255, 255, 0.98);
    padding: 40px;
    border-radius: 30px;
    margin: 30px 0;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    animation: popIn 0.6s ease-out 0.3s backwards;
    border: 3px solid #ff69b4;
}

.question-box h2 {
    font-size: 2.5rem;
    color: #ff1493;
    margin-bottom: 20px;
}

@keyframes popIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.button-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 30px 0;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 40px;
    font-size: 1.2rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-emoji {
    font-size: 1.5rem;
    animation: emojiJump 0.6s ease-in-out infinite;
}

@keyframes emojiJump {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.btn-yes {
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    color: white;
    border: 2px solid white;
}

.btn-yes:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(255, 20, 147, 0.4);
}

.btn-yes:active {
    transform: scale(0.95);
}

.btn-no {
    background: linear-gradient(135deg, #ffc0cb, #ffb6c1);
    color: #c71585;
    border: 2px solid #ff1493;
}

.btn-no:hover {
    transform: translateX(20px);
}

.btn-no:active {
    transform: translateX(20px) scale(0.95);
}

.cute-message {
    margin-top: 30px;
    font-size: 1.3rem;
    color: #c71585;
    font-weight: bold;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#page2 {
    background: linear-gradient(135deg, #FFB6C1 0%, #FFC0CB 50%, #FFE4E1 100%);
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.page2-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.cat-gif-container {
    margin-bottom: 40px;
    animation: bounceIn 0.8s ease-out;
    position: relative;
}

.cat-hearts {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
    font-size: 2rem;
    animation: heartBeat 1s infinite;
}

@keyframes bounceIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.confirmation-box {
    background: rgba(255, 255, 255, 0.98);
    padding: 40px;
    border-radius: 30px;
    margin: 30px 0;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border: 3px solid #ff69b4;
}

.confirmation-box h2 {
    font-size: 2.5rem;
    color: #ff1493;
    margin-bottom: 10px;
}

.confirmation-box p {
    font-size: 1.2rem;
    color: #c71585;
}

#page3 {
    background: linear-gradient(135deg, #FFB6C1 0%, #FFC0CB 50%, #FFE4E1 100%);
    padding: 20px;
    position: relative;
}

.back-btn {
    position: fixed;
    top: 20px;
    left: 20px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    z-index: 50;
    box-shadow: 0 5px 15px rgba(255, 20, 147, 0.3);
    transition: all 0.3s ease;
}

.back-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 20, 147, 0.4);
}

.back-section-btn {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 10px 15px;
    background: #ff1493;
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    z-index: 102;
    font-size: 0.9rem;
}

.back-section-btn:hover {
    transform: scale(1.05);
}

.page3-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 30px;
}

.collage-section {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    margin-bottom: 40px;
    animation: slideIn 0.8s ease-out;
    border: 5px solid white;
}

@keyframes slideIn {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.collage-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.collage-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
}

.victory-text {
    font-size: 3rem;
    color: white;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    animation: heartBeat 1s infinite;
}

.nav-menu {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.nav-btn {
    padding: 15px 20px;
    font-size: 1.1rem;
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    color: white;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(255, 20, 147, 0.3);
    position: relative;
    overflow: hidden;
}

.nav-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s ease;
}

.nav-btn:hover::before {
    left: 100%;
}

.nav-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 20, 147, 0.5);
}

.nav-btn:active {
    transform: translateY(-2px);
}

.content-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
    overflow-y: auto;
}

.content-section.hidden {
    display: none !important;
}

.section-content {
    background: linear-gradient(135deg, #FFB6C1 0%, #FFC0CB 50%, #FFE4E1 100%);
    border-radius: 30px;
    padding: 40px;
    max-height: 90vh;
    overflow-y: auto;
    width: 90%;
    max-width: 800px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    animation: popIn 0.3s ease;
    margin: 20px 0;
    position: relative;
}

.section-content h2 {
    font-size: 2.5rem;
    color: #ff1493;
    margin-bottom: 30px;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.about-section {
    min-height: auto;
}

.about-container {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.about-animation {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.rotating-heart {
    font-size: 5rem;
    animation: rotateAndPulse 2s ease-in-out infinite;
}

@keyframes rotateAndPulse {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.2);
    }
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1;
}

.about-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    color: #c71585;
    font-weight: 600;
    padding: 15px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    animation: slideInLeft 0.5s ease-out;
    border-left: 4px solid #ff1493;
}

.about-item.special {
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.1), rgba(255, 105, 180, 0.1));
    border-left: 4px solid #ff69b4;
}

.emoji-large {
    font-size: 1.8rem;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-30px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.camera-content {
    text-align: center;
}

/* Camera Section Improvements */
.camera-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.camera-video {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    border: 3px solid #ff1493;
    object-fit: cover;
    display: block;
    background: #000;
    transform: scaleX(-1);
}

.photo-canvas {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    border: 3px solid #ff1493;
    display: block;
    background: #fff;
    transform: scaleX(-1);
}

.photo-canvas.hidden {
    display: none;
}

.camera-status {
    text-align: center;
    padding: 10px;
    margin: 10px 0;
    background: rgba(76, 175, 80, 0.2);
    border: 2px solid #4CAF50;
    border-radius: 10px;
    color: #2e7d32;
    font-weight: bold;
    display: none;
    animation: slideDown 0.3s ease;
}

.booth-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.cute-sticker {
    position: absolute;
    font-size: 3rem;
    animation: float 3s ease-in-out infinite;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.sticker-1 { top: 10%; left: 10%; animation-delay: 0s; }
.sticker-2 { top: 10%; right: 10%; animation-delay: 0.5s; }
.sticker-3 { top: 50%; left: 5%; animation-delay: 1s; }
.sticker-4 { top: 50%; right: 5%; animation-delay: 1.5s; }
.sticker-5 { bottom: 10%; left: 50%; transform: translateX(-50%); animation-delay: 2s; }

.booth-controls {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.game-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.fancy-game {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 228, 225, 0.95));
    border: 2px solid #ff69b4;
    position: relative;
    overflow: hidden;
}

.fancy-game::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 105, 180, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

.game-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
    animation: emojiJump 0.6s ease-in-out infinite;
}

.game-card h3 {
    color: #ff1493;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.game-card p {
    color: #c71585;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.game-board {
    background: rgba(255, 192, 203, 0.3);
    border-radius: 15px;
    padding: 20px;
    margin: 15px 0;
    min-height: 300px;
}

.game-board.hidden {
    display: none;
}

.match-game,
.clicker-board,
.cross-board,
.memory-board,
.puzzle-board {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 15px;
}

.match-game > div,
.clicker-board > div,
.cross-board > div,
.memory-board > div,
.puzzle-board > div {
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    border-radius: 10px;
    cursor: pointer;
    font-size: 2rem;
    transition: all 0.3s ease;
    color: white;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(255, 20, 147, 0.3);
}

.match-game > div:hover,
.clicker-board > div:hover,
.cross-board > div:hover,
.memory-board > div:hover,
.puzzle-board > div:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(255, 20, 147, 0.5);
}

.match-game > div:active,
.clicker-board > div:active,
.cross-board > div:active,
.memory-board > div:active,
.puzzle-board > div:active {
    transform: scale(0.95);
}

.music-content {
    text-align: center;
}

.music-player {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 3px solid #ff69b4;
}

.player-display {
    margin-bottom: 30px;
    text-align: center;
}

.album-art {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 20px rgba(255, 20, 147, 0.3);
    animation: rotateAndPulse 3s ease-in-out infinite;
}

.album-image {
    font-size: 4rem;
}

.music-info {
    margin-bottom: 20px;
}

.song-title {
    font-size: 1.5rem;
    color: #ff1493;
    font-weight: bold;
    margin-bottom: 5px;
}

.song-artist {
    font-size: 0.95rem;
    color: #c71585;
}

.music-animation {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 20px;
    height: 60px;
}

.bar {
    width: 8px;
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    border-radius: 10px;
    animation: musicBar 0.6s ease-in-out infinite;
}

.bar:nth-child(1) { animation-delay: 0s; }
.bar:nth-child(2) { animation-delay: 0.1s; }
.bar:nth-child(3) { animation-delay: 0.2s; }
.bar:nth-child(4) { animation-delay: 0.1s; }
.bar:nth-child(5) { animation-delay: 0s; }

@keyframes musicBar {
    0%, 100% { height: 20px; }
    50% { height: 50px; }
}

.progress-container {
    margin: 20px 0;
}

.progress-bar {
    width: 100%;
    height: 10px;
    background: rgba(255, 192, 203, 0.5);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
    cursor: pointer;
}

#progress {
    height: 100%;
    background: linear-gradient(90deg, #ff1493, #ff69b4);
    width: 0%;
    transition: width 0.1s linear;
}

.time-display {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #c71585;
}

.player-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.music-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #ff1493;
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(255, 20, 147, 0.3);
}

.music-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 18px rgba(255, 20, 147, 0.5);
}

.music-btn:active {
    transform: scale(0.95);
}

.play-btn {
    width: 80px;
    height: 80px;
    font-size: 2rem;
}

.volume-control {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

#volumeSlider {
    width: 200px;
    height: 8px;
    cursor: pointer;
    accent-color: #ff1493;
}

.playlist {
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.1), rgba(255, 105, 180, 0.1));
    border-radius: 15px;
    padding: 20px;
    margin-top: 20px;
    border: 2px solid #ff69b4;
    max-height: 300px;
    overflow-y: auto;
}

.playlist h4 {
    color: #ff1493;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.song-list-container {
    text-align: left;
}

.song-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.song-item {
    color: #c71585;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 10px;
    font-size: 0.95rem;
}

.song-item:hover {
    background: rgba(255, 20, 147, 0.2);
    transform: translateX(10px);
    font-weight: bold;
}

.song-item.active {
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    color: white;
    font-weight: bold;
}

.gallery-content {
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.gallery-item {
    background: white;
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid #ff69b4;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(255, 20, 147, 0.3);
    background: linear-gradient(135deg, rgba(255, 228, 225, 1), rgba(255, 240, 245, 1));
}

.gallery-placeholder {
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #FFB6C1, #FFC0CB);
    border-radius: 10px;
    font-size: 3rem;
    margin-bottom: 10px;
    animation: emojiJump 0.6s ease-in-out infinite;
}

.gallery-item p {
    color: #ff1493;
    font-weight: bold;
    font-size: 0.95rem;
}

.gallery-note {
    margin-top: 20px;
    color: #c71585;
    font-style: italic;
}

.close-section-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 3px solid #ff1493;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 101;
    display: none;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.close-section-btn.show {
    display: flex;
}

.close-section-btn:hover {
    transform: rotate(90deg);
    background: #ff1493;
    color: white;
}

.section-content::-webkit-scrollbar {
    width: 10px;
}

.section-content::-webkit-scrollbar-track {
    background: rgba(255, 192, 203, 0.3);
    border-radius: 10px;
}

.section-content::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    border-radius: 10px;
}

.section-content::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #ff1493, #c71585);
}

.floating-hearts-abundant {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 2;
}

.floating-hearts-abundant::before,
.floating-hearts-abundant::after {
    content: '❤️ 💕 💖 💗';
    position: absolute;
    font-size: 2rem;
    animation: floatDown 8s infinite ease-in;
}

.floating-hearts-abundant::before {
    left: 20%;
        top: -20px;
    animation-delay: 0s;
}

.floating-hearts-abundant::after {
    right: 20%;
    top: -20px;
    animation-delay: 4s;
}

@keyframes floatDown {
    0% {
        transform: translateY(-20px) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

.escape-message {
    animation: messageFloat 2s ease-out forwards !important;
}

@keyframes messageFloat {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    50% {
        opacity: 1;
        transform: translateY(-30px) scale(1.1);
    }
    100% {
        opacity: 0;
        transform: translateY(-60px) scale(0.8);
    }
}

#noBtn1 {
    transition: all 0.3s ease-out !important;
    cursor: not-allowed !important;
    opacity: 0.6 !important;
}

#noBtn1:hover {
    transform: none !important;
    cursor: not-allowed !important;
}

@media (max-width: 768px) {
    .cute-title h1 {
        font-size: 2.5rem;
    }

    .cute-character {
        font-size: 3rem;
    }

    .question-box {
        padding: 25px;
    }

    .question-box h2 {
        font-size: 1.8rem;
    }

    .section-content {
        width: 95%;
        padding: 25px;
    }

    .nav-menu {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .match-game,
    .clicker-board,
    .cross-board,
    .memory-board,
    .puzzle-board {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-container {
        flex-direction: column;
    }

    .album-art {
        width: 120px;
        height: 120px;
    }

    .music-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .play-btn {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .cute-title h1 {
        font-size: 1.8rem;
    }

    .cute-character {
        font-size: 2rem;
    }

    .question-box h2 {
        font-size: 1.3rem;
    }

    .btn {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .section-content {
        max-height: 95vh;
        width: 98%;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .player-controls {
        gap: 10px;
    }

    .back-btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}
