/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-pink: #FF69B4;
    --secondary-pink: #FFB6C1;
    --light-pink: #FFC0CB;
    --deep-pink: #FF1493;
    --purple: #DA70D6;
    --light-purple: #E6A8E6;
    --red: #FF0066;
    --white: #FFFFFF;
    --cream: #FFF5F5;
    --gold: #FFD700;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, var(--light-pink) 0%, var(--light-purple) 50%, var(--secondary-pink) 100%);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Floating Hearts Background */
.floating-hearts-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.floating-heart {
    position: absolute;
    font-size: 20px;
    animation: floatUp 10s infinite ease-in;
    opacity: 0.6;
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Emoji Shower */
.emoji-shower {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.shower-emoji {
    position: absolute;
    font-size: 30px;
    animation: showerFall 3s ease-in forwards;
}

@keyframes showerFall {
    0% {
        transform: translateY(-50px) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}

/* Music Toggle */
.music-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: 3px solid var(--primary-pink);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 24px;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.4);
}

.music-toggle:hover {
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.6);
}

.music-toggle.playing {
    animation: pulse 1s infinite;
}

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

/* Landing Section */
.landing-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
    padding: 20px;
}

.landing-section.hidden {
    display: none;
}

.landing-content {
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 60px 40px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(255, 105, 180, 0.3);
    max-width: 600px;
    width: 100%;
    animation: fadeInUp 1s ease;
}

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

.infinity-symbol {
    font-family: 'Dancing Script', cursive;
    font-size: 72px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--deep-pink), var(--purple), var(--primary-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(255, 105, 180, 0.6));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(255, 105, 180, 0.8));
    }
}

.main-question {
    font-family: 'Dancing Script', cursive;
    font-size: 48px;
    color: var(--deep-pink);
    margin-bottom: 15px;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    10%, 30% {
        transform: scale(1.05);
    }
    20%, 40% {
        transform: scale(1);
    }
}

.subtitle {
    font-size: 20px;
    color: var(--purple);
    margin-bottom: 40px;
    font-weight: 300;
}

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

.yes-button, .no-button {
    font-size: 24px;
    padding: 20px 40px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.yes-button {
    background: linear-gradient(135deg, var(--deep-pink), var(--red));
    color: white;
}

.yes-button:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.5);
}

.no-button {
    background: linear-gradient(135deg, #666, #999);
    color: white;
    position: relative;
    transition: all 0.15s ease;
}

.love-message {
    font-size: 16px;
    color: var(--primary-pink);
    font-style: italic;
}

/* Emoji Trigger Buttons */
.emoji-trigger {
    position: absolute;
    font-size: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100;
    animation: float 3s ease-in-out infinite;
}

.emoji-trigger:hover {
    transform: scale(1.3) rotate(20deg);
}

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

.heart-trigger-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.heart-trigger-2 {
    top: 15%;
    right: 10%;
    animation-delay: 1s;
}

.heart-trigger-3 {
    top: 10%;
    right: 5%;
    animation-delay: 0.5s;
}

.heart-trigger-4 {
    top: 5%;
    left: 5%;
    animation-delay: 1.5s;
}

.heart-trigger-5 {
    top: 50%;
    left: 3%;
    animation-delay: 0.8s;
}

.heart-trigger-6 {
    top: 30%;
    right: 3%;
    animation-delay: 1.2s;
}

.heart-trigger-7 {
    top: 70%;
    left: 5%;
    animation-delay: 0.3s;
}

.heart-trigger-8 {
    top: 60%;
    right: 5%;
    animation-delay: 1.8s;
}

.heart-trigger-9 {
    top: 20%;
    left: 8%;
    animation-delay: 0.6s;
}

/* Response Section */
.response-section {
    display: none;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
    padding: 20px;
}

.response-section.active {
    display: flex;
}

.response-content {
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 60px 40px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(255, 105, 180, 0.3);
    max-width: 700px;
    width: 100%;
    animation: explode 0.8s ease;
}

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

.response-title {
    font-family: 'Dancing Script', cursive;
    font-size: 52px;
    color: var(--deep-pink);
    margin-bottom: 20px;
}

.response-message {
    font-size: 24px;
    color: var(--purple);
    margin-bottom: 30px;
}

.continue-button {
    font-size: 22px;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--deep-pink), var(--purple));
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.4);
}

.continue-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.6);
}

/* Main Content */
.main-content {
    display: none;
    position: relative;
    z-index: 10;
}

.main-content.active {
    display: block;
}

/* Navigation */
.navigation {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    z-index: 500;
    box-shadow: 0 2px 10px rgba(255, 105, 180, 0.2);
}

.navigation ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 0 20px;
}

.navigation a {
    text-decoration: none;
    color: var(--deep-pink);
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 8px 15px;
    border-radius: 20px;
}

.navigation a:hover {
    background: var(--light-pink);
    transform: translateY(-2px);
}

/* Section Styles */
.section {
    padding: 80px 20px;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Dancing Script', cursive;
    font-size: 48px;
    color: var(--deep-pink);
    text-align: center;
    margin-bottom: 50px;
    text-shadow: 2px 2px 4px rgba(255, 105, 180, 0.3);
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary-pink), var(--purple));
    transform: translateX(-50%);
}

.timeline-item {
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
    margin-right: 0;
}

.timeline-date {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: var(--deep-pink);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(255, 105, 180, 0.3);
}

.timeline-content {
    background: white;
    padding: 30px;
    border-radius: 20px;
    width: 45%;
    margin-top: 50px;
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.2);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.3);
}

.timeline-content h3 {
    color: var(--deep-pink);
    margin-bottom: 10px;
    font-size: 24px;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
}

/* Countdown Section */
.countdown-section {
    background: rgba(255, 255, 255, 0.8);
}

.countdown-display {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.countdown-box {
    background: linear-gradient(135deg, var(--primary-pink), var(--purple));
    padding: 30px;
    border-radius: 20px;
    min-width: 120px;
    box-shadow: 0 8px 20px rgba(255, 105, 180, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: countPulse 2s ease-in-out infinite;
}

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

.count-number {
    font-size: 48px;
    font-weight: 700;
    color: white;
    display: block;
}

.count-label {
    font-size: 18px;
    color: white;
    margin-top: 10px;
}

.countdown-message {
    text-align: center;
    font-size: 20px;
    color: var(--deep-pink);
    font-weight: 600;
}

/* Love Cards */
.love-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.love-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.love-card:hover {
    transform: translateY(-10px) rotate(2deg);
    box-shadow: 0 12px 30px rgba(255, 105, 180, 0.4);
}

.card-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.love-card h3 {
    color: var(--deep-pink);
    font-size: 24px;
    margin-bottom: 15px;
}

.love-card p {
    color: #666;
    line-height: 1.6;
}

/* Quiz Section */
.quiz-section {
    background: rgba(255, 255, 255, 0.9);
}

.quiz-container {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.3);
}

.quiz-intro {
    text-align: center;
}

.quiz-intro p {
    font-size: 20px;
    color: #666;
    margin-bottom: 30px;
}

.quiz-start-button, .quiz-restart-button {
    font-size: 20px;
    padding: 15px 35px;
    background: linear-gradient(135deg, var(--primary-pink), var(--purple));
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.3);
}

.quiz-start-button:hover, .quiz-restart-button:hover {
    transform: scale(1.05);
}

.question-text {
    font-size: 22px;
    color: var(--deep-pink);
    margin-bottom: 25px;
    font-weight: 600;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.quiz-option {
    padding: 15px 20px;
    background: var(--cream);
    border: 2px solid var(--secondary-pink);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
}

.quiz-option:hover {
    background: var(--light-pink);
    transform: translateX(10px);
}

.quiz-option.correct {
    background: #90EE90;
    border-color: #228B22;
}

.quiz-option.incorrect {
    background: #FFB6B6;
    border-color: #DC143C;
}

.quiz-results {
    text-align: center;
}

.quiz-results h3 {
    font-size: 32px;
    color: var(--deep-pink);
    margin-bottom: 20px;
}

#quizMessage {
    font-size: 20px;
    color: #666;
    margin-bottom: 30px;
}

/* Games Section */
.games-section {
    background: rgba(255, 255, 255, 0.85);
}

.games-menu {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.game-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(255, 105, 180, 0.4);
}

.game-icon {
    font-size: 70px;
    margin-bottom: 20px;
}

.game-card h3 {
    color: var(--deep-pink);
    font-size: 24px;
    margin-bottom: 10px;
}

.game-card p {
    color: #666;
    margin-bottom: 20px;
}

.play-button {
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--primary-pink), var(--purple));
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.play-button:hover {
    transform: scale(1.05);
}

.game-container {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.3);
}

.game-container h3 {
    color: var(--deep-pink);
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
}

.back-button {
    padding: 10px 25px;
    background: #666;
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    margin-bottom: 20px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.back-button:hover {
    background: #888;
}

.game-board {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.game-card-item {
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--secondary-pink), var(--light-purple));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(255, 105, 180, 0.3);
}

.game-card-item:hover {
    transform: scale(1.05);
}

.game-card-item.flipped {
    background: white;
}

.game-card-item.matched {
    background: #90EE90;
    cursor: default;
}

.memory-board {
    grid-template-columns: repeat(4, 1fr);
}

.game-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    font-size: 20px;
    color: #666;
}

.game-stats strong {
    color: var(--deep-pink);
}

/* Sentence Game */
.sentence-game {
    text-align: center;
}

.sentence-text {
    font-size: 24px;
    color: var(--deep-pink);
    margin-bottom: 30px;
    line-height: 1.8;
    min-height: 100px;
}

.word-blank {
    display: inline-block;
    min-width: 120px;
    padding: 5px 15px;
    border-bottom: 3px dashed var(--primary-pink);
    margin: 0 5px;
    font-weight: 700;
    color: var(--purple);
}

.word-options {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.word-option {
    padding: 12px 25px;
    background: var(--light-pink);
    border: 2px solid var(--primary-pink);
    border-radius: 25px;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
}

.word-option:hover {
    background: var(--secondary-pink);
    transform: scale(1.05);
}

.word-option.correct {
    background: #90EE90;
    border-color: #228B22;
}

.word-option.incorrect {
    background: #FFB6B6;
    border-color: #DC143C;
}

.next-sentence-button {
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--primary-pink), var(--purple));
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

.next-sentence-button:hover {
    transform: scale(1.05);
}

/* Memories Section */
.memories-section {
    background: rgba(255, 255, 255, 0.9);
}

.memories-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.memory-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.memory-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(255, 105, 180, 0.4);
}

.memory-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: all 0.3s ease;
}

.memory-card:hover .memory-image {
    transform: scale(1.05);
}

.memory-placeholder-fallback {
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--light-pink), var(--light-purple));
}

.placeholder-icon {
    font-size: 80px;
}

.memory-caption {
    padding: 20px;
    text-align: center;
    background: white;
}

.memory-caption p {
    font-size: 18px;
    font-weight: 600;
    color: var(--deep-pink);
    margin-bottom: 8px;
}

.memory-caption span {
    font-size: 14px;
    color: #999;
    font-style: italic;
}

/* Keep old memory-placeholder styles for backward compatibility */
.memory-placeholder {
    background: white;
    padding: 40px 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.memory-placeholder:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 12px 30px rgba(255, 105, 180, 0.4);
}

.memory-placeholder p {
    font-size: 18px;
    font-weight: 600;
    color: var(--deep-pink);
    margin-bottom: 8px;
}

.memory-placeholder span {
    font-size: 14px;
    color: #999;
    font-style: italic;
}

.memories-note {
    text-align: center;
    margin-top: 30px;
    font-size: 16px;
    color: #666;
    font-style: italic;
}

/* Love Letter Section */
.love-letter-section {
    background: rgba(255, 255, 255, 0.95);
}

.love-letter {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(255, 105, 180, 0.3);
    border: 3px solid var(--light-pink);
}

.letter-header {
    font-family: 'Dancing Script', cursive;
    font-size: 28px;
    color: var(--deep-pink);
    margin-bottom: 30px;
}

.letter-body p {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
    text-align: justify;
}

.letter-signature {
    font-family: 'Dancing Script', cursive;
    font-size: 24px;
    color: var(--deep-pink);
    margin-top: 40px;
    text-align: right;
}

.letter-signature strong {
    font-size: 32px;
}

/* Final Section */
.final-section {
    background: linear-gradient(135deg, var(--light-pink), var(--light-purple));
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.final-message {
    text-align: center;
    color: white;
}

.final-message h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 52px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}

.final-message p {
    font-size: 24px;
    margin-bottom: 30px;
}

.final-message .infinity-symbol {
    font-size: 80px;
    margin: 30px 0;
}

.final-tagline {
    font-size: 28px;
    font-weight: 600;
}

/* Love Calculator Section */
.love-calculator-section {
    background: rgba(255, 255, 255, 0.9);
}

.calculator-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(255, 105, 180, 0.3);
    text-align: center;
}

.calculator-display h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 36px;
    color: var(--deep-pink);
    margin-bottom: 30px;
}

.love-percentage {
    margin: 30px 0;
    display: flex;
    justify-content: center;
}

.percentage-circle {
    position: relative;
    width: 200px;
    height: 200px;
}

.progress-ring {
    transform: rotate(-90deg);
}

.progress-ring-circle {
    transition: stroke-dashoffset 0.5s ease;
}

.progress-ring-circle-fill {
    stroke-dasharray: 534.07;
    stroke-dashoffset: 534.07;
    transition: stroke-dashoffset 2s ease;
}

.percentage-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    font-weight: 700;
    color: var(--deep-pink);
    font-family: 'Poppins', sans-serif;
}

.love-result {
    font-size: 20px;
    color: var(--purple);
    margin: 20px 0;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calculate-button {
    font-size: 20px;
    padding: 15px 35px;
    background: linear-gradient(135deg, var(--primary-pink), var(--purple));
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.3);
}

.calculate-button:hover {
    transform: scale(1.05);
}

/* Reasons Section */
.reasons-section {
    background: rgba(255, 255, 255, 0.85);
}

.reasons-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.reasons-counter {
    background: white;
    padding: 50px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.3);
}

.counter-number {
    font-size: 72px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--deep-pink), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 20px;
    animation: countUp 2s ease;
}

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

.reasons-counter p {
    font-size: 18px;
    color: #666;
    margin-bottom: 25px;
}

.add-reason-button {
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--primary-pink), var(--red));
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.add-reason-button:hover {
    transform: scale(1.05);
}

.reasons-showcase {
    background: white;
    padding: 50px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.show-reason-button {
    padding: 15px 35px;
    background: linear-gradient(135deg, var(--purple), var(--primary-pink));
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.show-reason-button:hover {
    transform: scale(1.05);
}

.reason-display {
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reason-text {
    font-size: 22px;
    color: var(--deep-pink);
    font-style: italic;
    line-height: 1.6;
    animation: fadeIn 0.8s ease;
}

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

/* Virtual Kiss Section */
.kiss-section {
    background: rgba(255, 255, 255, 0.9);
}

.kiss-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: white;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(255, 105, 180, 0.3);
}

.kiss-instruction {
    font-size: 20px;
    color: #666;
    margin-bottom: 30px;
}

.kiss-button {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--deep-pink), var(--red));
    border: 5px solid white;
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.4);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    transition: all 0.3s ease;
}

.kiss-button:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(255, 105, 180, 0.6);
}

.kiss-button:active {
    transform: scale(0.95);
}

.kiss-emoji {
    font-size: 60px;
    display: block;
    margin-bottom: 10px;
}

.kiss-text {
    color: white;
    font-weight: 600;
    font-size: 18px;
}

.kiss-counter {
    font-size: 20px;
    color: var(--deep-pink);
}

.kiss-counter strong {
    font-size: 28px;
}

/* Messages Section */
.messages-section {
    background: rgba(255, 255, 255, 0.85);
}

.messages-container {
    max-width: 700px;
    margin: 0 auto;
}

.message-display {
    margin-bottom: 30px;
}

.message-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.3);
    border-left: 5px solid var(--primary-pink);
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.message-text {
    font-size: 24px;
    color: var(--deep-pink);
    line-height: 1.8;
    text-align: center;
    font-style: italic;
}

.generate-message-button {
    display: block;
    margin: 0 auto;
    padding: 15px 40px;
    background: linear-gradient(135deg, var(--primary-pink), var(--purple));
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.3);
}

.generate-message-button:hover {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-question {
        font-size: 36px;
    }
    
    .infinity-symbol {
        font-size: 56px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .button-container {
        flex-direction: column;
    }
    
    .yes-button, .no-button {
        font-size: 20px;
        padding: 15px 30px;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px !important;
    }
    
    .timeline-date {
        left: 30px;
        transform: translateX(-50%);
    }
    
    .countdown-box {
        min-width: 100px;
        padding: 20px;
    }
    
    .count-number {
        font-size: 36px;
    }
    
    .game-board {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .love-letter {
        padding: 30px 20px;
    }
    
    .navigation ul {
        gap: 10px;
    }
    
    .navigation a {
        font-size: 14px;
        padding: 6px 10px;
    }
}

@media (max-width: 480px) {
    .landing-content {
        padding: 40px 20px;
    }
    
    .main-question {
        font-size: 28px;
    }
    
    .subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .countdown-display {
        gap: 15px;
    }
    
    .game-board {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .game-card-item {
        font-size: 30px;
    }
}
