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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
}

/* Scene Management */
.scene {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
}

.scene.active {
    opacity: 1;
    visibility: visible;
}

.hidden {
    display: none !important;
}

/* Music Control Button */
.music-control {
    position: fixed;
    bottom: 120px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.music-control:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.music-control.muted {
    background: rgba(255, 100, 100, 0.3);
    border-color: rgba(255, 100, 100, 0.5);
}

.music-control.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Home Button */
.home-button {
    position: fixed;
    bottom: 180px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    opacity: 1;
}

.home-button.hidden {
    opacity: 0;
    pointer-events: none;
}

.home-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Scene 1: Landing Page */
#scene-landing {
    background: #000;
}

.slideshow-container {
    position: absolute;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.slide.active-slide {
    opacity: 0.6;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.center-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    background: rgba(255, 255, 255, 0.15);
    padding: 60px 80px;
    border-radius: 20px;
    backdrop-filter: blur(3px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.main-title {
    font-size: 4em;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 182, 193, 0.8);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 182, 193, 0.8);
    }
    to {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 182, 193, 1), 0 0 40px rgba(255, 105, 180, 0.8);
    }
}

.subtitle {
    font-size: 1.5em;
    color: #fff;
    margin-bottom: 40px;
    font-style: italic;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.btn-enter {
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    color: white;
    border: none;
    padding: 20px 60px;
    font-size: 1.5em;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.4);
    font-family: inherit;
}

.btn-enter:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.6);
}

/* Scene 2 & VN Style Text */
#scene-darkness {
    background: #000;
}

#scene-lit {
    background: linear-gradient(135deg, #ffc3a0 0%, #ffafbd 100%);
}

.vn-text-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 70%, transparent 100%);
    padding: 40px 60px 30px 60px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    min-height: 140px;
    z-index: 100;
}

.vn-text {
    color: #fff;
    font-size: 1.5em;
    line-height: 1.6;
    flex: 1;
    padding-right: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.vn-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 1em;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0;
    font-family: inherit;
    white-space: nowrap;
    align-self: flex-end;
    margin-bottom: 5px;
}

.vn-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.5);
}

/* Ripple effect for blow candle button */
.vn-button.ripple-effect {
    position: relative;
    overflow: hidden;
}

.vn-button.ripple-effect::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: translate(-50%, -50%);
    animation: ripple 0.6s ease-out;
}

@keyframes ripple {
    0% {
        width: 0;
        height: 0;
        opacity: 0.8;
    }
    100% {
        width: 300px;
        height: 300px;
        opacity: 0;
    }
}

/* Scene 4: Decorations */
#scene-decorated {
    background: linear-gradient(135deg, #ffc3a0 0%, #ffafbd 100%);
}

#scene-decorated.with-decorations {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 50%, #ffecd2 100%);
}

/* Balloon GIF decorations */
.balloon-gif {
    position: absolute;
    width: 180px;
    opacity: 0;
    transition: opacity 1s ease;
}

.balloon-gif.show {
    opacity: 1;
}

.balloon-gif-left {
    left: 2%;
    top: 25%;
    z-index: 1;
}

.balloon-gif-right {
    right: 2%;
    top: 25%;
    z-index: 1;
}

.balloon-gif-left-2 {
    left: 8%;
    top: 12%;
    z-index: 0;
}

.balloon-gif-right-2 {
    right: 8%;
    top: 12%;
    z-index: 0;
}

.balloon-gif img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

/* CSS Generated Balloons (middle area) */
.balloon {
    position: absolute;
    width: 60px;
    height: 75px;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: float 3s ease-in-out infinite;
}

.balloon::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    width: 2px;
    height: 45px;
    background: rgba(0, 0, 0, 0.3);
}

.balloon:nth-child(odd) {
    animation-delay: 0.5s;
}

.balloon:nth-child(even) {
    animation-delay: 1s;
}

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

/* Float up animation for balloons during decoration */
@keyframes floatUp {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    100% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
}

.balloon.float-up {
    animation: floatUp 2s ease-out forwards;
}

.banner {
    position: absolute;
    top: 140px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    max-width: 75% !important;
    opacity: 1;
}

.banner img {
    width: 100%;
    max-width: 650px;
    height: auto;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.25));
}

.banner.hidden {
    opacity: 0;
}

.banner.show {
    animation: bannerDrop 1.5s ease forwards;
}

@keyframes bannerDrop {
    0% {
        transform: translateX(-50%) translateY(-100px);
        opacity: 0;
    }
    60% {
        transform: translateX(-50%) translateY(10px);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

/* Top Decoration Border */
.top-decor {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    opacity: 0;
    pointer-events: none;
}

.top-decor img {
    width: 100%;
    height: auto;
    display: block;
}

.top-decor.show {
    animation: decorFadeIn 1s ease forwards;
}

@keyframes decorFadeIn {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Letter Overlay */
.letter-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    backdrop-filter: blur(8px);
}

.letter {
    background-image: url('images/letter-paper.png');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    width: 85%;
    max-width: 550px;
    height: 70vh;
    max-height: 650px;
    padding: 95px 70px 70px 70px;
    border-radius: 5px;
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.6),
        0 10px 30px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow-y: auto;
}

.letter-header {
    font-size: 2.6em;
    text-align: center;
    margin-bottom: 35px;
    color: #2c1810;
    font-weight: bold;
    font-family: 'Brush Script MT', 'Lucida Handwriting', cursive;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.letter-content {
    font-size: 1.25em;
    line-height: 2;
    color: #1a1a1a;
    font-family: 'Brush Script MT', 'Lucida Handwriting', 'Comic Sans MS', cursive;
    min-height: 200px;
    margin-bottom: 30px;
    text-shadow: 0 0.5px 1px rgba(255, 255, 255, 0.3);
}

.letter .vn-button {
    display: block;
    margin: 20px auto 0;
    background: linear-gradient(135deg, #8b6f47 0%, #6d5635 100%);
    color: #fff8dc;
    border: 2px solid #5a4428;
    font-family: 'Brush Script MT', 'Lucida Handwriting', cursive;
    font-size: 1.2em;
    padding: 12px 35px;
    box-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    position: fixed;
    top: 616px;
    left: 33%;
}

.letter .vn-button:hover {
    background: linear-gradient(135deg, #6d5635 0%, #8b6f47 100%);
    transform: translateY(-2px);
    box-shadow: 
        0 6px 12px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2); 
}

/* Scene 5: Cake */
#scene-cake {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 50%, #ffecd2 100%);
}

.cake-container {
    position: absolute;
    bottom: 180px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 1;
}

.table {
    position: relative;
    display: inline-block;
    animation: cakeAppear 1.5s ease;
}

.table > img {
    width: 600px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.cake {
    position: absolute;
    bottom: 62%;
    left: 43%;
    transform: translateX(-50%);
    z-index: 2;
}

.cake img {
    width: 140px;
    height: auto;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.4));
}

@keyframes cakeAppear {
    0% {
        transform: translateY(100px) scale(0.5);
        opacity: 0;
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.candle {
    position: absolute;
    top: -8%;
    left: 50%;
    transform: translateX(-50%);
    width: 15px;
    height: 40px;
    pointer-events: none;
    z-index: 3;
}

.candle::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 7px;
    height: 32px;
    background: linear-gradient(to bottom, #fff9e6 0%, #ffe4b5 100%);
    border-radius: 3px 3px 0 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.flame {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 25px;
    background: radial-gradient(ellipse at center, #ffff00 0%, #ff6600 50%, #ff4500 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: flicker 0.3s ease-in-out infinite alternate;
    transition: opacity 0.5s ease;
    box-shadow: 0 0 10px rgba(255, 200, 0, 0.8), 0 0 20px rgba(255, 150, 0, 0.5);
}

@keyframes flicker {
    0% {
        transform: translateX(-50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) scale(1.08) translateY(-2px);
        opacity: 0.92;
    }
}

.flame.blown {
    animation: blowOut 0.6s ease forwards;
}

@keyframes blowOut {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        transform: scale(1.3) translateX(30px) rotate(45deg);
    }
    100% {
        opacity: 0;
        transform: scale(0.1) translateY(-50px) translateX(50px);
    }
}

/* Table Items */
.table-item {
    position: absolute;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.table-item.show {
    animation: itemAppear 1s ease forwards;
}

@keyframes itemAppear {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Whisky + Coke - Left side */
.whisky-coke {
    bottom: 50%;
    left: 8%;
    width: 110px;
}

.whisky-coke img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

/* Hookah - Right side */
.hookah {
    bottom: 48%;
    right: 8%;
    width: 90px;
}

.hookah img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

/* Brownie - Between coke and cake */
.brownie {
    bottom: 58%;
    left: 30%;
    width: 75px;
}

.brownie img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
}

/* Scene 6: Beach Final Scene with Video */
.beach-scene {
    background: #000;
    overflow: hidden;
    position: relative;
}

/* Beach Video Background */
.beach-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Video Overlay for better text visibility */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.1) 30%,
        rgba(0, 0, 0, 0.05) 50%,
        rgba(0, 0, 0, 0.1) 70%,
        rgba(0, 0, 0, 0.2) 100%
    );
    z-index: 1;
}

/* Dancers - Scattered across beach */
.dancers {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.dancer {
    position: absolute;
    width: auto;
    filter: 
        drop-shadow(0 8px 15px rgba(0, 0, 0, 0.8))
        drop-shadow(0 4px 8px rgba(0, 0, 0, 0.6));
    animation: dance 1.2s ease-in-out infinite;
}

/* Scatter dancers across beach area */
.dancer1 { 
    left: 8%; 
    bottom: 25%;
    height: 120px;
    animation-delay: 0s; 
}

.dancer2 { 
    left: 22%; 
    bottom: 15%;
    height: 130px;
    animation-delay: 0.15s; 
}

.dancer3 { 
    left: 38%; 
    bottom: 30%;
    height: 110px;
    animation-delay: 0.3s; 
}

.dancer4 { 
    left: 52%; 
    bottom: 20%;
    height: 140px;
    animation-delay: 0.05s; 
}

.dancer5 { 
    left: 65%; 
    bottom: 28%;
    height: 115px;
    animation-delay: 0.25s; 
}

.dancer6 { 
    left: 78%; 
    bottom: 18%;
    height: 125px;
    animation-delay: 0.4s; 
}

.dancer7 { 
    left: 88%; 
    bottom: 35%;
    height: 105px;
    animation-delay: 0.5s; 
}

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

/* Dancing letter animation for beach scene */
@keyframes danceLetter {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-4px) rotate(2deg);
    }
    50% {
        transform: translateY(-6px) rotate(0deg);
    }
    75% {
        transform: translateY(-4px) rotate(-2deg);
    }
}

#beach-final-container .vn-text .dancing-letter {
    display: inline-block;
    animation: danceLetter 1.5s ease-in-out infinite;
}

#beach-final-container .vn-text .dancing-letter.space {
    width: 0.3em;
}

/* Diwali-style Fireworks */
.confetti-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
    overflow: hidden;
    /* Hardware acceleration for better mobile performance */
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

.firework {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.spark {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    box-shadow: 0 0 20px currentColor, 0 0 35px currentColor, 0 0 50px currentColor;
    /* Hardware acceleration */
    will-change: transform, opacity;
    backface-visibility: hidden;
}

@keyframes explode {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translate(var(--tx), var(--ty)) scale(0.3);
        opacity: 0;
    }
}

/* Floating Hearts */
.heart {
    position: absolute;
    width: 30px;
    height: 30px;
    animation: heartFloat 4s ease-in infinite;
    opacity: 0;
}

.heart::before,
.heart::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 48px;
    background: #ff6b9d;
    border-radius: 50px 50px 0 0;
}

.heart::before {
    left: 15px;
    transform: rotate(-45deg);
    transform-origin: 0 100%;
}

.heart::after {
    left: 0;
    transform: rotate(45deg);
    transform-origin: 100% 100%;
}

@keyframes heartFloat {
    0% {
        bottom: -50px;
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        bottom: 110vh;
        opacity: 0;
    }
}

/* Flying Hearts (like birds) */
.flying-hearts-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
    overflow: hidden;
    /* Hardware acceleration for better mobile performance */
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

.flying-heart {
    position: absolute;
    width: 25px;
    /* Hardware acceleration */
    will-change: transform, opacity;
    backface-visibility: hidden;
    height: 25px;
    opacity: 0;
}

.flying-heart::before,
.flying-heart::after {
    content: "";
    position: absolute;
    width: 25px;
    height: 40px;
    background: var(--heart-color, #ff6b9d);
    border-radius: 50px 50px 0 0;
}

.flying-heart::before {
    left: 12.5px;
    transform: rotate(-45deg);
    transform-origin: 0 100%;
}

.flying-heart::after {
    left: 0;
    transform: rotate(45deg);
    transform-origin: 100% 100%;
}

.flying-heart {
    animation: flyRandom 3s ease-out forwards;
}

@keyframes flyRandom {
    0% {
        opacity: 0;
        transform: translate(0, 0) rotate(0deg) scale(0.5);
    }
    20% {
        opacity: 1;
        transform: translate(var(--tx-20), var(--ty-20)) rotate(var(--rotation)) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(var(--tx-100), var(--ty-100)) rotate(var(--rotation-end)) scale(0.8);
    }
}

/* Responsive Design */
@media only screen and (max-width: 768px) {
    .main-title {
        font-size: 2.5em;
    }
    
    .center-content {
        padding: 40px 30px;
    }
    
    .vn-text-container {
        padding: 30px 20px 5px 20px;
        flex-direction: column;
        align-items: flex-start;
        min-height: 120px;
    }
    
    .vn-text {
        font-size: 1.1em;
        padding-right: 0;
        margin-bottom: 15px;
    }
    
    .vn-button {
        align-self: flex-end;
        margin-bottom: 0;
    }
    
    .banner {
        max-width: 90% !important;
        top: 100px;
    }

    .banner img {
        max-width: 100%;
    }

    /* Balloon GIFs mobile */
    .balloon-gif {
        width: 268px;
    }

    .balloon-gif-left {
        left: -11%;
        top: 31%;
    }

    .balloon-gif-right {
        right: -11%;
        top: 31%;
    }

    .balloon-gif-left-2 {
        left: -12%;
        top: 13%;
    }

    .balloon-gif-right-2 {
        right: -20%;
        top: 13%;
    }

    .cake-container {
        bottom: 110px;
    }

    .table > img {
        width: 470px !important;
    }

    .cake img {
        width: 125px !important;
    }

    /* Adjust positions to match scaled table */
    .cake {
        bottom: 69% !important;
    }

    .candle {
        width: 10px;
        height: 32px;
    }

    .candle::before {
        width: 5px;
        height: 25px;
    }

    .flame {
        width: 13px;
        height: 20px;
        top: -22px;
    }

    /* Table items responsive */
    .whisky-coke {
        width: 96px !important;
        left: 6% !important;
        bottom: 68% !important;
    }

    .hookah {
        width: 116px !important;
        right: 5% !important;
        bottom: 68% !important;
    }

    .brownie {
        width: 98px !important;
        left: 57% !important;
        bottom: 62% !important;
    }

    .celebration-title {
        font-size: 2.5em;
    }

    .celebration-text {
        font-size: 1.3em;
    }

    /* Music control mobile */
    .music-control {
        width: 45px;
        height: 45px;
        font-size: 20px;
        bottom: 110px;
        right: 15px;
    }

    /* Home button mobile */
    .home-button {
        width: 45px;
        height: 45px;
        font-size: 20px;
        bottom: 165px;
        right: 15px;
    }

    /* Letter mobile */
    .letter {
        width: 92%;
        padding: 85px 60px 59px 60px;
        height: 75vh;
        max-height: 600px;
        max-width: 450px;
    }

    .letter-header {
        font-size: 1.8em;
        margin-bottom: 20px;
    }

    .letter-content {
        font-size: 1.1em;
        line-height: 1.7;
    }

    /* Beach scene mobile - dancers */
    .dancer1 { 
        left: 5%; 
        bottom: 22%;
        height: 90px;
    }

    .dancer2 { 
        left: 9%; 
        bottom: 12%;
        height: 95px;
    }

    .dancer3 { 
        left: 32%; 
        bottom: 26%;
        height: 85px;
    }

    .dancer4 { 
        left: 48%; 
        bottom: 15%;
        height: 105px;
    }

    .dancer5 { 
        left: 62%; 
        bottom: 24%;
        height: 88px;
    }

    .dancer6 { 
        left: 75%; 
        bottom: 14%;
        height: 92px;
    }

    .dancer7 { 
        left: 88%; 
        bottom: 28%;
        height: 80px;
    }
}
