* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Prevent zoom on double-tap for better mobile experience */
button, a, input {
    touch-action: manipulation;
}

/* Optimize images for mobile */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Better scrolling on mobile */
body {
    -webkit-overflow-scrolling: touch;
}

:root {
    --rose-50: #fff1f2;
    --rose-100: #ffe4e6;
    --rose-200: #fecdd3;
    --rose-500: #f43f5e;
    --rose-600: #e11d48;
    --pink-100: #fce7f3;
    --pink-600: #db2777;
    --yellow-50: #fefce8;
    --yellow-200: #fef08a;
    --yellow-600: #ca8a04;
    --slate-100: #f1f5f9;
    --slate-400: #94a3b8;
    --slate-700: #334155;
    --white: #ffffff;
}

body {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: contain;
    overscroll-behavior-x: none;
}

/* Professional Heading Styles */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Music Player */
.music-player {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 10000;
}

.music-toggle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e11d48 0%, #db2777 100%);
    border: none;
    box-shadow: 0 8px 24px rgba(225, 29, 72, 0.4);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: musicPulse 2s ease-in-out infinite;
}

.music-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(225, 29, 72, 0.5);
}

.music-toggle:active {
    transform: scale(0.95);
}

.music-icon {
    width: 24px;
    height: 24px;
    color: white;
}

@keyframes musicPulse {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(225, 29, 72, 0.4);
    }
    50% {
        box-shadow: 0 8px 32px rgba(225, 29, 72, 0.6), 0 0 0 8px rgba(225, 29, 72, 0.1);
    }
}

.music-toggle.playing {
    animation: musicPulse 1s ease-in-out infinite;
}

/* Cursor Heart Effect */
.cursor-heart {
    position: fixed;
    pointer-events: none !important;
    font-size: 20px;
    z-index: 1;
    animation: floatHeart 1.5s ease-out forwards;
    user-select: none;
}

@keyframes floatHeart {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1) rotate(0deg);
    }
    100% {
        opacity: 0;
        transform: translateY(-80px) scale(0.5) rotate(15deg);
    }
}

/* Lock Screen */
.lock-screen {
    position: fixed;
    inset: 0;
    background: linear-gradient(to bottom right, var(--rose-50), var(--white), var(--pink-100));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 100;
}

.lock-screen.hide {
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
    transition: all 0.4s ease;
}

.lock-card {
    position: relative;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 32px;
    border-radius: 24px;
    z-index: 101;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid var(--rose-200);
    width: 100%;
    max-width: 400px;
    animation: fadeInScale 0.6s ease;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.text-center {
    text-align: center;
}

.lock-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
}

.lock-icon svg {
    width: 32px;
    height: 32px;
    color: var(--rose-500);
}

.lock-title {
    font-size: 36px;
    font-weight: 400;
    color: var(--rose-600);
    margin-bottom: 4px;
    line-height: 1.2;
    font-family: 'Great Vibes', cursive;
}

.lock-subtitle {
    font-size: 12px;
    font-weight: 400;
    color: var(--slate-400);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-top: 4px;
    margin-bottom: 8px;
}

.demo-badge {
    background: var(--yellow-50);
    border: 1px solid var(--yellow-200);
    border-radius: 4px;
    padding: 4px 8px;
    display: inline-block;
    margin: 8px auto 24px;
}

.demo-text {
    font-size: 12px;
    color: var(--yellow-600);
    margin: 0;
}

.demo-label {
    font-weight: 700;
}

.passcode-box {
    background: var(--rose-50);
    border: 1px solid var(--rose-100);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 24px;
    text-align: center;
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.passcode-text {
    font-size: 32px;
    font-weight: 600;
    color: var(--rose-600);
    letter-spacing: 12px;
    font-family: monospace;
    min-height: 32px;
    position: relative;
    z-index: 2;
}

.passcode-placeholder {
    position: absolute;
    font-size: 14px;
    color: var(--slate-400);
    letter-spacing: normal;
    opacity: 0.3;
    pointer-events: none;
    z-index: 1;
}

.passcode-box:has(.passcode-text:not(:empty)) .passcode-placeholder {
    display: none;
}

/* Numpad Grid */
.numpad-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1000;
}

.num-btn {
    height: 64px;
    width: 64px;
    margin: 0 auto;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--slate-100);
    color: var(--slate-700);
    font-size: 20px;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.15s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    pointer-events: auto;
    z-index: 1000;
    position: relative;
}

.num-btn:hover {
    background: var(--rose-50);
    border-color: var(--rose-200);
}

.num-btn:active {
    transform: scale(0.95);
}

.num-blank {
    height: 64px;
    width: 64px;
}

.num-delete {
    color: var(--rose-300);
    font-size: 20px;
    background: transparent;
    border: none;
    box-shadow: none;
}

.num-delete:hover {
    color: var(--rose-500);
    background: transparent;
}

/* Unlock Button */
.unlock-btn {
    width: 100%;
    background: linear-gradient(to right, var(--rose-500), var(--pink-600));
    color: var(--white);
    font-weight: 700;
    font-size: 16px;
    font-family: inherit;
    padding: 16px;
    border-radius: 12px;
    border: none;
    box-shadow: 0 10px 15px -3px rgba(244, 63, 94, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: 0.5px;
}

.unlock-btn:not(:disabled):hover {
    filter: brightness(1.1);
}

.unlock-btn:not(:disabled):active {
    transform: scale(0.98);
}

.unlock-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Error Message */
.error-msg {
    text-align: center;
    color: var(--rose-600);
    font-size: 14px;
    font-weight: 500;
    margin-top: 16px;
    min-height: 20px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.error-msg.show {
    opacity: 1;
    animation: shake 0.4s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-8px); }
    75% { transform: translateX(8px); }
}

/* Gift Screen */
.gift-screen {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, #ffe0e6 0%, #ffd6de 25%, #ffccd6 50%, #ffc2ce 75%, #ffb8c6 100%);
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    padding: 24px;
    z-index: 1;
    overscroll-behavior-y: contain;
    overscroll-behavior-x: none;
}

.gift-screen.show {
    opacity: 1;
    pointer-events: all;
}

.gift-wrapper {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.gift-header {
    margin-bottom: 32px;
}

.back-btn {
    background: var(--white);
    border: 1px solid var(--rose-200);
    border-radius: 12px;
    padding: 12px 24px;
    color: var(--slate-700);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.back-btn:hover {
    background: var(--rose-50);
    border-color: var(--rose-300);
}

.back-btn::before {
    content: '\u2190';
    font-size: 18px;
}

/* Hero Image */
.hero-image-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 48px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.hero-image {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    display: block;
    filter: grayscale(100%);
    transition: all 1000ms ease;
}

.hero-image:hover {
    filter: grayscale(0%);
}

/* Gift Animation */
.gift-animation {
    text-align: center;
    margin-bottom: 48px;
}

.gift-box {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    position: relative;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.gift-lid {
    width: 120px;
    height: 40px;
    background: linear-gradient(135deg, var(--rose-500), var(--pink-600));
    border-radius: 8px 8px 0 0;
    position: absolute;
    top: 0;
    animation: openLid 3s ease-in-out infinite;
    transform-origin: bottom;
    box-shadow: 0 4px 12px rgba(244, 63, 94, 0.3);
}

@keyframes openLid {
    0%, 45%, 100% { transform: rotateX(0); }
    50%, 95% { transform: rotateX(-25deg); }
}

.gift-body {
    width: 120px;
    height: 80px;
    background: linear-gradient(135deg, #ff9a9e, var(--rose-500));
    border-radius: 0 0 8px 8px;
    position: absolute;
    bottom: 0;
    box-shadow: 0 6px 20px rgba(244, 63, 94, 0.25);
}

.gift-ribbon {
    width: 12px;
    height: 120px;
    background: #ffd700;
    position: absolute;
    left: 54px;
    top: 0;
}

.hearts-pop {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hearts-pop span {
    position: absolute;
    font-size: 28px;
    animation: popHeart 2s ease-in-out infinite;
    opacity: 0;
}

.hearts-pop span:nth-child(1) { animation-delay: 0s; left: -50px; top: -30px; }
.hearts-pop span:nth-child(2) { animation-delay: 0.3s; left: 50px; top: -30px; }
.hearts-pop span:nth-child(3) { animation-delay: 0.6s; left: -60px; top: 20px; }
.hearts-pop span:nth-child(4) { animation-delay: 0.9s; left: 60px; top: 20px; }

@keyframes popHeart {
    0%, 50%, 100% { opacity: 0; transform: scale(0.5); }
    60%, 90% { opacity: 1; transform: scale(1.1); }
}

/* Gift Content */
.gift-message {
    animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gift-heading {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 32px;
    color: var(--rose-600);
}

.message-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid var(--rose-200);
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 32px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.message-p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--slate-700);
    text-align: center;
}

/* Photos Grid */
.photos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.photo-item {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--rose-200);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.photo-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.photo-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    filter: grayscale(100%);
    transition: all 1000ms ease;
}

.photo-item:hover img {
    filter: grayscale(0%);
}

.photo-item p {
    padding: 16px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--slate-700);
}

/* Stats Row */
.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

.stat-box {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--rose-200);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-4px);
    border-color: var(--rose-500);
    box-shadow: 0 8px 24px rgba(244, 63, 94, 0.2);
}

.stat-emoji {
    font-size: 36px;
    margin-bottom: 12px;
}

.stat-num {
    font-size: 32px;
    font-weight: 700;
    color: var(--rose-600);
    margin-bottom: 8px;
}

.stat-text {
    font-size: 13px;
    color: var(--slate-700);
    font-weight: 500;
}

/* Final Note */
.final-note {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--rose-200);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
}

.final-note p {
    font-size: 20px;
    font-weight: 600;
    color: var(--rose-600);
}

/* Responsive */
@media (max-width: 768px) {
    .lock-card {
        padding: 24px;
    }

    .lock-title {
        font-size: 22px;
    }

    .num-btn {
        height: 56px;
        width: 56px;
        font-size: 18px;
    }

    .passcode-text {
        font-size: 28px;
        letter-spacing: 8px;
    }

    .gift-heading {
        font-size: 28px;
    }

    .photos-grid {
        grid-template-columns: 1fr;
    }

    .shower-love-btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .hero-section {
        padding: 28px 24px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.8);
        border-radius: 24px;
        margin: 0 8px 48px 8px;
    }
    
    .hero-image-wrapper {
        display: none;
    }
    
    .hero-image {
        display: none;
    }
    
    .valentine-greeting {
        font-size: 20px;
        white-space: nowrap;
        background: transparent;
        backdrop-filter: none;
        padding: 0;
        margin: 0;
        border-radius: 0;
        box-shadow: none;
        border: none;
    }
    
    .partner-name {
        font-size: 36px;
        font-weight: 700;
        margin: 16px 0;
        padding: 0;
        background: transparent;
        backdrop-filter: none;
        border-left: none;
        border-right: none;
    }
    
    .love-quote {
        font-size: 13px;
        margin: 0;
        padding: 0;
        background: transparent;
        backdrop-filter: none;
        border-left: none;
        border-right: none;
        border-bottom: none;
        border-radius: 0;
        box-shadow: none;
    }
    
    /* Timer/Love Actions */
    .love-actions-container {
        display: flex;
        justify-content: center;
        margin-top: 16px;
        padding: 0;
        margin: 16px 0 0 0;
        background: transparent;
        backdrop-filter: none;
        border-left: none;
        border-right: none;
        border-bottom: none;
        border-radius: 0;
        box-shadow: none;
    }
    
    .shower-love-btn {
        font-size: 12px;
        padding: 8px 16px;
        white-space: nowrap;
    }
    
    .love-timer {
        padding: 8px 14px;
    }
    
    .love-timer .timer-label {
        font-size: 11px;
    }
    
    .timer-value {
        font-size: 13px;
    }

    .arrow-down {
        font-size: 28px;
        margin-top: 12px;
    }

    /* Story - mobile card layout */
    .subsection-title,
    .subsection-subtitle {
        text-align: left;
        padding: 0 12px;
        margin-left: 0;
    }

    /* Our Story - mobile clean card layout */
    .timeline {
        padding: 0 8px 12px 8px;
    }

    .timeline-item {
        width: 100%;
        margin-left: 40px;
        padding: 18px 20px;
        background: #ffffff;
        border: 1px solid rgba(225, 29, 72, 0.2);
        border-radius: 16px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        gap: 6px;
        overflow: visible;
    }

    .timeline-item:hover {
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
    }

    .timeline-item::after {
        font-size: 28px;
        top: 50%;
        right: auto;
        left: -35px;
        transform: translateY(-50%);
        opacity: 0.4;
    }

    .timeline-item:hover::after {
        opacity: 0.7;
    }

    .timeline-item::before {
        display: none;
    }

    .timeline-item .timeline-emoji {
        display: inline;
        width: auto;
        height: auto;
        padding: 0;
        border: none;
        background: transparent;
        font-size: 16px;
        box-shadow: none;
        line-height: 1;
        margin-right: 6px;
    }

    .timeline-item .timeline-date {
        text-align: left;
        font-size: 12px;
        color: #e11d48;
        font-weight: 600;
        margin-bottom: 6px;
    }

    .timeline-content {
        width: 100%;
        padding: 0;
        border-radius: 12px;
        border: none;
        box-shadow: none;
        background: transparent;
        margin: 0;
    }

    .timeline-content h4 {
        margin: 0 0 6px 0;
        font-size: 17px;
        color: #1f2937;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .timeline-content p {
        margin: 0;
        font-size: 13px;
        line-height: 1.6;
        color: #374151;
    }

    .letter-icon {
        font-size: 150px;
    }

    .letter-prompt {
        font-size: 13px;
    }

    .letter-paper {
        padding: 30px 24px;
    }

    .letter-heading {
        font-size: 28px;
    }

    .letter-text {
        font-size: 15px;
    }

    .memories-grid {
        gap: 32px;
        padding: 0 12px;
        max-width: 100%;
    }

    .memory-card {
        width: 100%;
        max-width: 100%;
    }
    
    /* Timeline - Simple vertical layout for mobile */
    .timeline::before {
        display: none;
    }
    
    .timeline-item {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-bottom: 32px;
        text-align: left;
        padding-left: 0;
    }
    
    .timeline-item:nth-child(odd) .timeline-date,
    .timeline-item:nth-child(even) .timeline-date {
        grid-column: unset;
        text-align: left;
        font-size: 12px;
        color: var(--rose-500);
        font-weight: 600;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        grid-column: unset;
        text-align: left;
        margin-left: 0;
    }
    
    .timeline-emoji {
        width: 40px;
        height: 40px;
        font-size: 18px;
        align-self: flex-start;
    }

    .memory-label {
        font-size: 20px;
    }

    .love-letter-box {
        margin: 0 20px;
    }

    .love-letter-header {
        font-size: 18px;
        padding: 16px 24px;
    }

    .love-letter-body {
        padding: 32px 24px;
        font-size: 16px;
    }

    .love-letter-footer {
        font-size: 20px;
        padding: 14px 24px;
    }

    .letters-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .letter-card {
        padding: 32px 20px;
    }

    .card-emoji {
        font-size: 50px;
    }

    .letter-title {
        font-size: 20px;
    }

    .letter-hint {
        font-size: 12px;
    }

    .letter-modal-content {
        padding: 40px 24px;
        max-width: 500px;
    }

    .letter-greeting {
        font-size: 24px;
    }

    .letter-modal-title {
        font-size: 28px;
    }

    .letter-modal-body p {
        font-size: 24px;
    }

    .signature-name {
        font-size: 28px;
    }

    .countdown-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .countdown-section {
        padding: 14px 10px;
        background: linear-gradient(180deg, rgba(255,245,247,0.8), rgba(255,255,255,0.9));
        border-radius: 14px;
        border: 1px solid rgba(225, 29, 72, 0.08);
        box-shadow: 0 8px 24px rgba(0,0,0,0.05);
    }

    .countdown-title {
        font-size: 13px !important;
        margin-bottom: 10px !important;
        text-align: center !important;
        letter-spacing: 0.5px !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }

    .countdown-timer {
        display: flex !important;
        justify-content: center !important;
        gap: 5px !important;
        margin-bottom: 10px !important;
        padding: 0 !important;
        flex-wrap: nowrap !important;
    }

    .countdown-box {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        padding: 6px 2px !important;
        min-width: 54px !important;
        max-width: 68px !important;
        flex: 1 !important;
        background: #ffffff !important;
        border: 1px solid rgba(225, 29, 72, 0.12) !important;
        box-shadow: 0 4px 10px rgba(0,0,0,0.05) !important;
        border-radius: 8px !important;
    }

    .countdown-number {
        font-size: 20px !important;
        font-weight: 700 !important;
        line-height: 1 !important;
        margin-bottom: 4px !important;
        font-family: 'Courier New', monospace !important;
        color: #111827 !important;
    }

    .countdown-label {
        font-size: 8px !important;
        text-transform: uppercase !important;
        letter-spacing: 0.4px !important;
        opacity: 0.6 !important;
        font-weight: 700 !important;
        color: #374151 !important;
    }

    .future-plans-box {
        margin-top: 20px;
        padding: 16px 12px;
        border-top: 1px dashed rgba(225, 29, 72, 0.18);
    }

    .future-plans-title {
        font-size: 18px;
        text-align: center;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        margin-bottom: 16px;
        opacity: 0.8;
    }

    .bucket-list {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 0;
    }

    .bucket-item {
        background: rgba(255,255,255,0.65);
        border: 1px solid rgba(225, 29, 72, 0.12);
        border-radius: 12px;
        padding: 14px 12px;
        font-size: 13px;
        font-weight: 600;
        color: #1f2937;
        line-height: 1.5;
        box-shadow: 0 6px 18px rgba(0,0,0,0.05);
    }

    .future-plans-title {
        font-size: 20px;
        text-align: center;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 24px;
        opacity: 0.8;
    }

    .bucket-item {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 18px;
        border-radius: 12px;
        font-size: 14px;
        font-weight: 500;
        line-height: 1.5;
        transition: background 0.3s ease;
    }

    .valentine-gif-container img {
        max-width: 350px;
    }

    .valentine-question-section {
        padding: 24px 16px !important;
        position: relative !important;
        z-index: 10 !important;
    }

    .valentine-question {
        font-size: 28px;
    }

    .valentine-buttons {
        display: flex !important;
        flex-direction: row !important;
        gap: 20px !important;
        justify-content: center !important;
        align-items: center !important;
        margin-top: 24px !important;
        position: relative !important;
        z-index: 20 !important;
    }

    .congrats-text {
        font-size: 32px;
    }

    .congrats-subtitle {
        font-size: 18px;
    }

    .btn-yes, .btn-no {
        padding: 16px 40px !important;
        font-size: 17px !important;
        min-width: 150px !important;
        min-height: 60px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .ring-box-container {
        perspective: 900px;
    }

    .ring-box-3d {
        width: 160px;
        height: 160px;
    }

    .ring-box-bottom {
        height: 100px;
    }

    .ring-holder {
        height: 95px;
        width: 85px;
    }

    .ring-circle {
        width: 54px;
        height: 54px;
        border: 9px solid #d4af37;
    }

    .ring-inner {
        width: 20px;
        height: 20px;
    }

    .diamond-box {
        width: 28px;
        height: 28px;
    }

    .sparkle-icon {
        width: 18px;
        height: 18px;
    }

    .ring-box-lid {
        height: 62px;
    }
    
    /* Mobile-friendly improvements for tablet */
    .music-player {
        bottom: 20px;
        right: 20px;
    }
    
    .music-toggle {
        width: 52px;
        height: 52px;
    }
    
    /* Improve touch targets for tablet */
    .btn-yes, .btn-no {
        min-height: 50px;
        min-width: 140px;
    }
    
    /* Better image sizing */
    .hero-image-wrapper {
        max-width: 450px;
    }
    
    .hero-image {
        height: 350px;
    }
    
    /* Card layouts */
    .letters-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .memories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    /* Countdown for tablet */
    .countdown-box {
        padding: 20px 16px;
        min-width: 100px;
    }
    
    .countdown-number {
        font-size: 36px;
    }
    
    .countdown-label {
        font-size: 12px;
    }
}

@media (max-width: 400px) {
    .lock-card {
        padding: 20px;
    }

    .num-btn {
        height: 52px;
        width: 52px;
        font-size: 16px;
    }

    .numpad-grid {
        gap: 10px;
    }

    .passcode-text {
        font-size: 24px;
        letter-spacing: 6px;
    }

    .shower-love-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .love-timer {
        padding: 10px 16px;
    }
    
    .love-timer .timer-label {
        font-size: 12px;
    }
    
    .timer-value {
        font-size: 14px;
    }

    .arrow-down {
        font-size: 24px;
        margin-top: 10px;
    }

    .letter-icon {
        font-size: 130px;
    }

    .letter-prompt {
        font-size: 12px;
    }

    .letter-paper {
        padding: 24px 20px;
    }

    .letter-heading {
        font-size: 24px;
    }

    .letter-text {
        font-size: 14px;
    }

    .close-letter {
        width: 32px;
        height: 32px;
        font-size: 18px;
    }

    .flip-card-front {
        padding: 12px;
        padding-bottom: 56px;
    }

    .tape-effect {
        width: 100px;
        height: 28px;
    }

    .memory-label {
        font-size: 18px;
    }

    .love-letter-box {
        margin: 0 15px;
    }

    .love-letter-header {
        font-size: 16px;
        padding: 14px 20px;
    }

    .love-letter-body {
        padding: 28px 20px;
        font-size: 15px;
    }

    .love-letter-body::before,
    .love-letter-body::after {
        font-size: 60px;
    }

    .love-letter-footer {
        font-size: 18px;
        padding: 12px 20px;
    }

    .letters-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 8px;
    }
    
    .letter-card {
        padding: 32px 20px;
    }

    .letter-card {
        padding: 32px 20px;
    }

    .card-emoji {
        font-size: 48px;
    }

    .letter-title {
        font-size: 19px;
    }

    .letter-hint {
        font-size: 12px;
    }

    .letter-modal-content {
        padding: 32px 20px;
    }

    .letter-modal-close {
        top: -12px;
        right: -12px;
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    .letter-greeting {
        font-size: 22px;
    }

    .letter-modal-title {
        font-size: 24px;
    }

    .letter-modal-body p {
        font-size: 20px;
        line-height: 1.6;
    }

    .signature-line {
        font-size: 18px;
    }

    .signature-name {
        font-size: 24px;
    }

    .paper-fold {
        width: 48px;
        height: 48px;
    }

    .countdown-title {
        font-size: 13px !important;
        margin-bottom: 10px !important;
        text-align: center !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }

    .countdown-section {
        padding: 14px 8px;
    }

    .countdown-timer {
        gap: 4px !important;
        margin-bottom: 12px !important;
        padding: 0 !important;
        flex-wrap: nowrap !important;
        justify-content: center !important;
    }

    .countdown-box {
        padding: 6px 2px !important;
        min-width: 54px !important;
        border-radius: 8px !important;
        flex: 1 !important;
        max-width: 68px !important;
    }

    .countdown-number {
        font-size: 20px !important;
        margin-bottom: 4px !important;
        line-height: 1 !important;
    }

    .countdown-label {
        font-size: 8px !important;
        letter-spacing: 0.3px !important;
    }

    .future-plans-box {
        margin-top: 32px;
        padding-top: 24px;
    }

    .future-plans-title {
        font-size: 20px;
        text-align: center;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 20px;
        opacity: 0.8;
    }

    .bucket-list {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 0 6px;
    }

    .bucket-item {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 14px 16px;
        border-radius: 12px;
        font-size: 13px;
        font-weight: 500;
        white-space: normal;
        text-align: left;
        line-height: 1.5;
        word-break: break-word;
        transition: background 0.3s ease;
    }

    .bucket-item:hover {
        background: rgba(255, 255, 255, 0.08);
    }
        gap: 16px;
        padding: 0 8px;
    }

    .bucket-item {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 20px;
        border-radius: 12px;
        font-size: 15px;
        font-weight: 500;
        white-space: normal;
        text-align: left;
        line-height: 1.6;
        word-break: break-word;
        transition: background 0.3s ease;
    }

    .valentine-gif-container img {
        max-width: 300px;
    }

    .valentine-question {
        font-size: 24px;
    }

    .congrats-text {
        font-size: 28px;
    }

    .congrats-subtitle {
        font-size: 16px;
    }

    .btn-yes, .btn-no {
        padding: 12px 28px;
        font-size: 15px;
    }

    .ring-box-container {
        perspective: 800px;
    }

    .ring-box-3d {
        width: 140px;
        height: 140px;
    }

    .ring-box-bottom {
        height: 90px;
    }

    .ring-holder {
        height: 85px;
        width: 75px;
    }

    .ring-circle {
        width: 48px;
        height: 48px;
        border: 8px solid #d4af37;
    }

    .ring-inner {
        width: 18px;
        height: 18px;
    }

    .diamond-box {
        width: 24px;
        height: 24px;
    }

    .sparkle-icon {
        width: 16px;
        height: 16px;
    }

    .ring-box-lid {
        height: 52px;
    }
    
    .music-player {
        bottom: 16px;
        left: 16px;
    }
    
    .music-toggle {
        width: 48px;
        height: 48px;
    }
    
    .music-icon {
        width: 20px;
        height: 20px;
    }
    
    /* Improve button touch targets */
    .btn-yes, .btn-no {
        min-height: 48px;
        min-width: 120px;
    }
    
    /* Ensure readable text */
    body {
        font-size: 15px;
    }
    
    /* Better spacing for mobile */
    .gift-wrapper {
        padding: 16px;
    }
    
    /* Timeline improvements */
    .timeline-container {
        padding: 0 8px;
    }
    
    .timeline-item {
        padding-left: 48px;
    }
    
    /* Modal improvements */
    .letter-modal-content {
        width: 95%;
        max-height: 85vh;
    }
    
    /* Card spacing */
    .letter-card {
        margin: 0 4px;
    }
    
    /* Section spacing */
    section {
        scroll-margin-top: 20px;
    }
}

/* NEW SECTIONS STYLES */

/* Love Song Section */
.love-song-section {
    text-align: center;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease;
}

.hearts-decoration {
    font-size: 24px;
    letter-spacing: 8px;
    margin-bottom: 16px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.song-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--rose-600);
    margin-bottom: 8px;
}

.song-subtitle {
    font-size: 14px;
    color: var(--slate-400);
    font-style: italic;
}

/* Hero Section */
.hero-section {
    position: relative;
    z-index: 10;
    text-align: center;
    margin-bottom: 48px;
    animation: fadeInUp 1s ease;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.8);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 48px;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    margin: 0 0 24px 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    filter: grayscale(100%);
    transition: all 1000ms ease;
}

.hero-image-wrapper:hover .hero-image {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 18px;
    font-weight: 700;
    color: var(--rose-600);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.5px;
}

.valentine-greeting {
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, #e11d48 0%, #db2777 50%, #e11d48 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    text-shadow: 0 2px 10px rgba(225, 29, 72, 0.3);
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.5px;
}

.partner-name {
    font-size: 28px;
    font-family: 'Great Vibes', cursive;
    background: linear-gradient(90deg, #f43f5e 0%, #ec4899 50%, #f43f5e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    filter: drop-shadow(0 2px 8px rgba(244, 63, 94, 0.4));
}

.love-quote {
    font-size: 16px;
    color: #be185d;
    font-style: italic;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 2px dashed #fda4af;
    font-weight: 500;
}

.love-actions-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
}

.shower-love-btn {
    background: linear-gradient(135deg, #e11d48 0%, #db2777 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(225, 29, 72, 0.4);
    position: relative;
    overflow: hidden;
    animation: buttonBounce 2s ease-in-out infinite;
}

@keyframes buttonBounce {
    0%, 100% {
        transform: scale(1) translateY(0);
        box-shadow: 0 6px 20px rgba(225, 29, 72, 0.4);
    }
    25% {
        transform: scale(1.05) translateY(-3px);
        box-shadow: 0 10px 30px rgba(225, 29, 72, 0.6), 0 0 0 10px rgba(225, 29, 72, 0.1);
    }
    50% {
        transform: scale(1) translateY(0);
        box-shadow: 0 6px 20px rgba(225, 29, 72, 0.4);
    }
    75% {
        transform: scale(1.05) translateY(-3px);
        box-shadow: 0 10px 30px rgba(225, 29, 72, 0.6), 0 0 0 10px rgba(225, 29, 72, 0.1);
    }
}

.shower-love-btn:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 12px 35px rgba(225, 29, 72, 0.6);
    background: linear-gradient(135deg, #db2777 0%, #e11d48 100%);
    animation: none;
}

.shower-love-btn:active {
    transform: scale(0.95);
}

.shower-love-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.shower-love-btn:active::before {
    width: 300px;
    height: 300px;
}

.love-confetti {
    position: fixed;
    font-size: 40px;
    pointer-events: none;
    z-index: 9998;
    animation: confettiFloat 3s ease-out forwards;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    filter: drop-shadow(0 0 10px rgba(255, 105, 180, 0.4));
}

@keyframes confettiFloat {
    0% {
        transform: translate(-50%, -50%) translateY(0px) translateX(0px) rotate(0deg) scale(0.3);
        opacity: 0;
    }
    15% {
        opacity: 1;
        transform: translate(-50%, -50%) translateY(-80px) translateX(var(--spread-x, 0px)) rotate(60deg) scale(1);
    }
    40% {
        opacity: 1;
        transform: translate(-50%, -50%) translateY(-180px) translateX(var(--spread-x, 0px)) rotate(280deg) scale(1.1);
    }
    70% {
        opacity: 0.9;
        transform: translate(-50%, -50%) translateY(-280px) translateX(var(--spread-x, 0px)) rotate(500deg) scale(0.95);
    }
    100% {
        transform: translate(-50%, -50%) translateY(-350px) translateX(var(--spread-x, 0px)) rotate(720deg) scale(0.6);
        opacity: 0;
    }
}

.section-heading {
    font-size: 24px;
    font-weight: 700;
    color: var(--rose-600);
    margin-bottom: 12px;
}

.timer-label {
    font-size: 13px;
    color: #db2777;
    margin-bottom: 8px;
    font-weight: 600;
    text-align: center;
}

.love-timer {
    background: rgba(255, 245, 248, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 12px;
    display: inline-block;
    border: 2px solid rgba(254, 205, 211, 0.5);
    box-shadow: 0 4px 12px rgba(244, 63, 94, 0.2);
}

.love-timer .timer-label {
    display: inline;
    font-size: 13px;
    margin-right: 6px;
}

.timer-value {
    font-size: 16px;
    font-weight: 700;
    background: linear-gradient(135deg, #e11d48 0%, #db2777 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: monospace;
    display: inline;
}

/* Story Section */
.story-section {
    margin-bottom: 48px;
}

.section-header {
    text-align: center;
    margin-bottom: 24px;
}

/* Love Letter Styles */
.love-letter-container {
    margin-top: 32px;
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.love-letter-emoji {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.love-letter-emoji:hover {
    transform: scale(1.1);
}

.letter-icon {
    font-size: 180px;
    margin-bottom: 8px;
    animation: floatLetter 2.5s ease-in-out infinite;
    filter: drop-shadow(0 8px 16px rgba(244, 63, 94, 0.3));
}

@keyframes floatLetter {
    0%, 100% { 
        transform: translateY(0) rotate(-5deg) scale(1); 
    }
    25% {
        transform: translateY(-10px) rotate(0deg) scale(1.05);
    }
    50% { 
        transform: translateY(-15px) rotate(5deg) scale(1.1); 
    }
    75% {
        transform: translateY(-10px) rotate(0deg) scale(1.05);
    }
}

.letter-prompt {
    font-size: 14px;
    color: #db2777;
    font-weight: 600;
    margin: 0;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* Letter Content */
.letter-content {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.letter-content.show {
    opacity: 1;
    pointer-events: all;
}

.letter-paper {
    background: linear-gradient(135deg, #fff9f9 0%, #ffffff 100%);
    border-radius: 16px;
    padding: 40px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 2px solid #fecdd3;
    position: relative;
    animation: letterOpen 0.5s ease;
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes letterOpen {
    0% {
        transform: scale(0.8) rotateX(-10deg);
        opacity: 0;
    }
    100% {
        transform: scale(1) rotateX(0);
        opacity: 1;
    }
}

.close-letter {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(244, 63, 94, 0.1);
    border: 2px solid #fda4af;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    color: #db2777;
    transition: all 0.3s ease;
}

.close-letter:hover {
    background: #fda4af;
    color: white;
    transform: rotate(90deg);
}

.letter-heading {
    font-family: 'Great Vibes', cursive;
    font-size: 32px;
    color: #db2777;
    margin-bottom: 20px;
    margin-top: 0;
}

.letter-text {
    font-size: 16px;
    line-height: 1.8;
    color: #334155;
    margin-bottom: 16px;
}

.letter-signature {
    font-style: italic;
    color: #db2777;
    font-weight: 600;
    text-align: right;
    margin-top: 24px;
}

.arrow-down {
    font-size: 32px;
    display: block;
    margin-top: 16px;
    color: #db2777;
    animation: bounceArrow 1.5s ease-in-out infinite;
    cursor: pointer;
}

@keyframes bounceArrow {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.7;
    }
    50% {
        transform: translateY(8px);
        opacity: 1;
    }
}

.section-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--rose-600);
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.3px;
}

.subsection-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--rose-600);
    text-align: center;
    margin-bottom: 8px;
    margin-top: 32px;
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.3px;
}

.subsection-subtitle {
    font-size: 14px;
    color: var(--slate-500);
    text-align: center;
    margin-bottom: 24px;
}

.memories-desc {
    font-size: 14px;
    color: var(--slate-500);
    text-align: center;
    font-style: italic;
    margin-bottom: 32px;
}

/* Timeline */
.timeline {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    padding: 0 16px 8px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px;
    width: 2px;
    background: rgba(225, 29, 72, 0.2);
}

.timeline-item {
    position: relative;
    margin: 0 0 24px 48px;
    padding: 20px;
    background: #ffffff;
    border: 1px solid rgba(225, 29, 72, 0.2);
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: box-shadow 0.3s ease;
    overflow: visible;
}

.timeline-item:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}

.timeline-item::after {
    content: attr(data-emoji);
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 32px;
    opacity: 0.3;
    animation: floatEmoji 3s ease-in-out infinite;
    pointer-events: none;
}

.timeline-item:hover::after {
    opacity: 0.6;
    animation: floatEmojiHover 2s ease-in-out infinite;
}

@keyframes floatEmoji {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

@keyframes floatEmojiHover {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
    }
    50% {
        transform: translateY(-15px) rotate(10deg) scale(1.2);
    }
}

.timeline-item::before {
    display: none;
}

.timeline-date {
    font-size: 13px;
    font-weight: 700;
    color: #e11d48;
    margin-bottom: 2px;
}

.timeline-emoji {
    display: inline;
    width: auto;
    height: auto;
    padding: 0;
    border: none;
    background: transparent;
    font-size: 18px;
    box-shadow: none;
    line-height: 1;
    margin-right: 6px;
}

.timeline-item h4 {
    margin: 0 0 6px 0;
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    display: flex;
    align-items: center;
    gap: 6px;
    line-height: 1.2;
}

.timeline-item p {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    color: rgba(31, 41, 55, 0.7);
}

@media (min-width: 900px) {
    .timeline {
        padding: 0 24px 16px;
    }

    .timeline::before {
        left: 50%;
        transform: translateX(-50%);
    }

    .timeline-item {
        width: 50%;
        margin: 0 0 40px 0;
    }

    .timeline-item:nth-child(odd) {
        margin-left: 50%;
    }

    .timeline-item:nth-child(even) {
        margin-left: 0;
    }

    .timeline-item::before {
        top: 24px;
        left: auto;
        right: -44px;
    }

    .timeline-item:nth-child(even)::before {
        right: auto;
        left: -44px;
    }
}

/* Memories Section */
.memories-section {
    margin-top: 96px;
    margin-bottom: 48px;
}

.memories-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

.memory-card {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 100%;
    height: auto;
}

.memory-card:hover {
    transform: translateY(-8px) rotate(0deg) !important;
}

.flip-card-front {
    position: relative;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    background: white;
    padding: 16px;
    padding-bottom: 64px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tape-effect {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%) rotate(0.8deg);
    width: 128px;
    height: 32px;
    background: rgba(253, 242, 248, 0.8);
    backdrop-filter: blur(4px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    z-index: 20;
    clip-path: polygon(2% 0, 98% 0, 100% 100%, 0% 100%);
}

.photo-container {
    position: relative;
    width: 100%;
    flex: 1;
    overflow: hidden;
    background: #f9fafb;
    border: 1px solid #f3f4f6;
    aspect-ratio: 4/5;
}

.photo-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.memory-card:hover .photo-container img {
    transform: scale(1.1);
}

.photo-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 40%, rgba(255,255,255,0.2) 100%);
    pointer-events: none;
}

.photo-caption {
    position: absolute;
    bottom: 16px;
    left: 0;
    right: 0;
    text-align: center;
}

.memory-label {
    font-family: 'Great Vibes', cursive;
    color: #6b7280;
    font-size: 24px;
    transform: rotate(-1deg);
    margin: 0;
}

/* Add slight rotation to each card */
.memory-card:nth-child(1) .flip-card-front {
    transform: rotate(-2deg);
}

.memory-card:nth-child(2) .flip-card-front {
    transform: rotate(1deg);
}

.memory-card:nth-child(3) .flip-card-front {
    transform: rotate(-1.5deg);
}

.memory-card:nth-child(4) .flip-card-front {
    transform: rotate(1.5deg);
}

.memory-card:nth-child(5) .flip-card-front {
    transform: rotate(-1deg);
}

.memory-card:nth-child(6) .flip-card-front {
    transform: rotate(2deg);
}

/* Love Reasons Section */
.love-reasons-section {
    text-align: center;
    margin-bottom: 48px;
    padding: 32px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid var(--rose-200);
}

.love-button {
    background: linear-gradient(to right, var(--rose-500), var(--pink-600));
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(244, 63, 94, 0.3);
    fontfamily: inherit;
}

.love-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(244, 63, 94, 0.4);
}

.love-reasons-container {
    margin-top: 32px;
    animation: fadeInUp 0.5s ease;
    display: none;
}

.love-reasons-container.show {
    display: block;
}

.love-letter-box {
    max-width: 650px;
    margin: 0 auto;
    background: linear-gradient(135deg, #ffffff 0%, #fff5f7 100%);
    border: 3px solid var(--rose-300);
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(244, 63, 94, 0.2);
    overflow: hidden;
    transform: perspective(1000px) rotateX(2deg);
    transition: all 0.4s ease;
}

.love-letter-box:hover {
    transform: perspective(1000px) rotateX(0deg) translateY(-4px);
    box-shadow: 0 16px 48px rgba(244, 63, 94, 0.3);
}

.love-letter-header {
    background: linear-gradient(135deg, var(--rose-500), var(--pink-600));
    color: white;
    padding: 20px 32px;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    font-family: 'Great Vibes', cursive;
    letter-spacing: 1px;
}

.love-letter-body {
    padding: 40px 32px;
    font-size: 17px;
    line-height: 1.8;
    color: var(--slate-700);
    text-align: center;
    font-style: italic;
    background: white;
}

.love-letter-body p {
    margin: 0;
    position: relative;
    z-index: 1;
}

.love-letter-body::before {
    content: '"';
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 80px;
    color: rgba(244, 63, 94, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.love-letter-body::after {
    content: '"';
    position: absolute;
    bottom: -25px;
    right: 20px;
    font-size: 80px;
    color: rgba(244, 63, 94, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.love-letter-footer {
    background: linear-gradient(to right, rgba(244, 63, 94, 0.05), rgba(236, 72, 153, 0.05));
    padding: 16px 32px;
    text-align: right;
    font-family: 'Great Vibes', cursive;
    font-size: 22px;
    color: var(--rose-600);
    font-weight: 600;
}

/* Open When Letters */
.open-when-section {
    margin-bottom: 56px;
}

.letters-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 640px;
    margin: 0 auto;
    padding: 0 12px;
}

.letter-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    padding: 40px 24px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.letter-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(251, 207, 232, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.letter-card:hover::before {
    opacity: 1;
}

.letter-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.85);
}

.card-emoji {
    font-size: 60px;
    margin-bottom: 20px;
    display: block;
    animation: floatEmoji 3s ease-in-out infinite;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
    pointer-events: none;
    user-select: none;
}

@keyframes floatEmoji {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

.card-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.4) 50%, transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.letter-card:hover .card-shine {
    opacity: 1;
    animation: shine 1.5s ease-in-out;
}

@keyframes shine {
    from {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    to {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.letter-title {
    font-size: 22px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
    line-height: 1.3;
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.3px;
}

.letter-hint {
    font-size: 13px;
    color: #6b7280;
    font-style: italic;
    margin-top: 8px;
    line-height: 1.5;
}

/* Letter Modal */
.letter-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.letter-modal.show {
    display: flex;
}

.letter-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(12px);
}

.letter-modal-content {
    position: relative;
    background: #fffdf7;
    max-width: 600px;
    width: 100%;
    padding: 48px 32px;
    border-radius: 4px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(0, 0, 0, 0.05);
    z-index: 1;
    animation: modalFadeIn 0.4s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.notebook-lines {
    position: absolute;
    inset: 0;
    border-radius: 4px;
    pointer-events: none;
    opacity: 0.3;
    background-image: linear-gradient(#e5e5e5 1px, transparent 1px);
    background-size: 100% 32px;
    margin-top: 64px;
}

.letter-modal-close {
    position: absolute;
    top: -16px;
    right: -16px;
    background: white;
    color: var(--rose-500);
    padding: 12px;
    border-radius: 50%;
    border: 2px solid rgba(244, 63, 94, 0.2);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s ease;
    font-size: 18px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.letter-modal-close:hover {
    background: var(--rose-500);
    color: white;
    transform: rotate(90deg);
}

.letter-modal-inner {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    min-height: 350px;
}

.letter-modal-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 2px solid rgba(244, 63, 94, 0.2);
}

.letter-greeting {
    font-family: 'Great Vibes', cursive;
    font-size: 28px;
    color: var(--rose-600);
    display: block;
    margin-bottom: 8px;
}

.letter-modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--slate-800);
    display: block;
    letter-spacing: -0.5px;
}

.letter-modal-body {
    flex: 1;
    overflow-y: auto;
    max-height: 60vh;
    margin-bottom: 40px;
}

.letter-modal-body::-webkit-scrollbar {
    width: 6px;
}

.letter-modal-body::-webkit-scrollbar-track {
    background: rgba(244, 63, 94, 0.05);
    border-radius: 3px;
}

.letter-modal-body::-webkit-scrollbar-thumb {
    background: var(--rose-300);
    border-radius: 3px;
}

.letter-modal-body p {
    font-family: 'Great Vibes', cursive;
    font-size: 28px;
    color: #374151;
    line-height: 1.8;
    white-space: pre-wrap;
    margin: 0;
}

.letter-modal-footer {
    text-align: right;
    margin-top: auto;
}

.letter-signature {
    display: inline-block;
    transform: rotate(-2deg);
}

.signature-line {
    font-family: 'Great Vibes', cursive;
    font-size: 20px;
    color: #6b7280;
    margin-bottom: 4px;
}

.signature-name {
    font-family: 'Nunito', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--rose-600);
    margin: 0;
}

.paper-fold {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 64px;
    height: 64px;
    background: linear-gradient(to top left, rgba(209, 213, 219, 0.5), transparent);
    pointer-events: none;
    border-radius: 0 0 4px 0;
}

/* Countdown Section */
.countdown-section {
    margin-bottom: 56px;
    text-align: center;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 28px;
    padding: 48px 40px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.08);
}

.countdown-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--slate-800);
    margin-bottom: 40px;
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.5px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.countdown-box {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 28px 32px;
    min-width: 130px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.countdown-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.countdown-number {
    font-size: 52px;
    font-weight: 700;
    color: var(--rose-600);
    line-height: 1;
    margin-bottom: 8px;
    font-family: 'Nunito', sans-serif;
}

.countdown-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--slate-600);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.future-plans-box {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 2px dashed rgba(244, 63, 94, 0.2);
}

.future-plans-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--slate-800);
    margin-bottom: 24px;
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.3px;
}

.bucket-list {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.bucket-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 14px 20px;
    border-radius: 16px;
    border-left: 3px solid var(--rose-500);
    font-size: 13px;
    color: var(--slate-700);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.bucket-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Future Plans (old - hidden) */
.future-plans-section {
    margin-bottom: 48px;
    padding: 32px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid var(--rose-200);
}

/* Valentine Question */
.valentine-question-section {
    text-align: center;
    margin-bottom: 48px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid var(--rose-200);
    position: relative;
    z-index: 5;
}

.valentine-gif-container {
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.valentine-gif-container img {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.valentine-gif-container img:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.valentine-question {
    font-size: 32px;
    font-weight: 700;
    color: var(--rose-600);
    margin-bottom: 24px;
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.5px;
}

.valentine-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.congratulations-message {
    display: none;
    margin-top: 32px;
    animation: fadeInScale 0.6s ease forwards;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.congrats-text {
    font-size: 36px;
    font-weight: 700;
    color: var(--rose-600);
    margin-bottom: 16px;
    animation: bounce 1s ease infinite;
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.5px;
}

.congrats-subtitle {
    font-size: 20px;
    color: var(--slate-700);
    font-weight: 600;
}

.btn-yes, .btn-no {
    padding: 16px 40px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    position: relative;
    z-index: 10;
    pointer-events: auto;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    min-width: 140px;
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-yes {
    background: linear-gradient(to right, var(--rose-500), var(--pink-600));
    color: white;
    box-shadow: 0 8px 20px rgba(244, 63, 94, 0.3);
}

.btn-yes:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 28px rgba(244, 63, 94, 0.4);
}

.btn-no {
    background: var(--slate-100);
    color: var(--slate-700);
}

.btn-no:hover {
    transform: scale(0.95);
    background: var(--slate-200);
}

/* Final Surprise */
/* Final Surprise - Ring Box */
.final-surprise-section {
    text-align: center;
    margin-bottom: 48px;
    padding: 40px 20px;
}

.ring-box-container {
    perspective: 1000px;
    margin: 40px auto;
    width: 250px;
    height: 250px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    cursor: pointer;
}

.ring-box-3d {
    position: relative;
    width: 192px;
    height: 180px;
    transform-style: preserve-3d;
    transform: rotateX(20deg);
    transition: all 0.4s ease;
}

.ring-box-container:hover .ring-box-3d {
    transform: rotateX(15deg) scale(1.05);
}

.ring-box-bottom {
    position: absolute;
    bottom: 0;
    width: 192px;
    height: 128px;
    left: 0;
    background: #7f1d1d;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
}

.box-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, #991b1b, #450a0a);
    border-radius: 0 0 12px 12px;
}

.ring-holder {
    position: relative;
    z-index: 10;
    margin-top: -40px;
    opacity: 1;
    transform: translateY(-40px);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ring-box-container.opened .ring-holder {
    transform: translateY(-80px);
}

.ring-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 4px solid #facc15;
    box-shadow: 0 0 15px rgba(250, 204, 21, 0.6), 
                inset 0 0 10px rgba(250, 204, 21, 0.3);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fde047, #eab308);
}

.ring-inner {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(127, 29, 29, 0.5);
}

.diamond-shine {
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
}

.diamond-box {
    width: 32px;
    height: 32px;
    background: #dbeafe;
    transform: rotate(45deg);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
    border: 1px solid white;
}

.sparkle-icon {
    position: absolute;
    top: -16px;
    right: -16px;
    color: #fef3c7;
    width: 24px;
    height: 24px;
    animation: pulse 2s ease-in-out infinite;
}

.ring-box-lid {
    position: absolute;
    bottom: 128px;
    width: 192px;
    height: 48px;
    left: 0;
    background: #991b1b;
    border-radius: 12px 12px 0 0;
    transform-origin: bottom;
    transform-style: preserve-3d;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    z-index: 20;
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ring-box-container.opened .ring-box-lid {
    transform: rotateX(-110deg);
}

.lid-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #991b1b, #b91c1c);
    border-radius: 12px 12px 0 0;
    border-bottom: 1px solid #450a0a;
}

.lid-back {
    position: absolute;
    inset: 0;
    background: #450a0a;
    border-radius: 12px 12px 0 0;
    transform: rotateX(180deg) translateZ(-1px);
}

.surprise-message {
    display: none;
    margin-top: 32px;
}

.surprise-message.show {
    display: block;
    animation: fadeInUp 0.6s ease;
}

.surprise-message p {
    font-size: 20px;
    font-weight: 600;
    color: var(--rose-600);
    font-style: italic;
}

/* Floating Music Button */
.floating-music-btn {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--rose-500), var(--pink-600));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(244, 63, 94, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.floating-music-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(244, 63, 94, 0.6);
}

.floating-music-btn svg {
    width: 28px;
    height: 28px;
    position: relative;
    z-index: 2;
}

.music-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--rose-500);
    opacity: 0.6;
    animation: pulse 2s ease-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Background Hearts Effect */
.bg-hearts-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.bg-heart {
    position: absolute;
    top: -50px;
    font-size: 20px;
    opacity: 0;
    pointer-ne;
    animation: heartDrop 8s linear infinite;
    filter: blur(1px) drop-shadow(0 0 8px rgba(255, 105, 180, 0.6));
}

@keyframes heartDrop {
    0% {
        transform: translateY(-50px) rotate(0deg) scale(0.8);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
        transform: translateY(10vh) rotate(30deg) scale(1);
    }
    50% {
        opacity: 0.5;
        transform: translateY(50vh) rotate(180deg) scale(1.1);
    }
    80% {
        opacity: 0.3;
        transform: translateY(85vh) rotate(300deg) scale(0.9);
    }
    100% {
        transform: translateY(110vh) rotate(360deg) scale(0.7);
        opacity: 0;
    }
}
