:root {
    --primary-color: #ff6b6b;
    --secondary-color: #f06292;
    --background-color: #fce4ec;
    --text-color: #4a4a4a;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, var(--background-color) 0%, #fff1f1 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

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

.proposal-card {
    min-height: 90vh;
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 100%;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
    margin: 20px auto;
}

.love-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.title {
    font-family: 'Dancing Script', cursive;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 3em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.poem-section {
    padding: 2rem;
    margin: 2rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.card {
    background: transparent;
    border: none;
}

.card-header {
    background: transparent !important;
    border-bottom: none !important;
}

.card-body {
    background: rgba(252, 228, 236, 0.3);
    border-radius: 15px;
    height: 400px;
    overflow-y: auto;
    scroll-behavior: smooth;
}

.poem-title {
    color: var(--primary-color);
    font-family: 'Dancing Script', cursive;
    font-size: 2em;
}

.poem {
    font-size: 1.2em;
    line-height: 1.8;
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    padding: 20px;
    width: 100%;
}

.poem-line {
    margin-bottom: 10px;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
    width: 100%;
    font-style: italic;
    font-size: 1.1em;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 2rem;
}

.btn {
    padding: 12px 35px;
    font-size: 1.2em;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.yes-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 4px 15px rgba(240, 98, 146, 0.3);
}

.yes-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(240, 98, 146, 0.4);
}

.no-btn {
    background: #e0e0e0;
    color: #666;
}

.no-btn:hover {
    background: #d5d5d5;
}

.heart-icon, .sad-icon {
    font-size: 1.2em;
}

.image-gallery img {
    transition: transform 0.3s ease;
    cursor: pointer;
}

.image-gallery img:hover {
    transform: scale(1.05);
}

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

.heart {
    position: absolute;
    color: var(--primary-color);
    font-size: 20px;
    animation: float 4s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(255, 107, 107, 0.3));
}

.no-buttons-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.no-btn {
    position: relative;
    overflow: hidden;
}

.no-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: translateX(-100%);
}

.no-btn:hover::after {
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

/* Bootstrap Carousel customization */
.carousel {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.carousel-item {
    height: 500px;
}

.carousel-item img {
    height: 100%;
    object-fit: cover;
}

.carousel-caption {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    padding: 20px;
    color: var(--primary-color);
    font-family: 'Dancing Script', cursive;
    font-size: 1.5em;
}

/* Responsive adjustments for slideshow */
@media (max-width: 768px) {
    .slideshow-container {
        margin: 10px auto;
    }
    
    .slides img {
        height: 300px;
    }
    
    .slide-caption {
        font-size: 1.2em;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .proposal-card {
        padding: 1.5rem;
    }
    
    .title {
        font-size: 2em;
    }
    
    .poem {
        font-size: 1em;
        line-height: 1.6;
    }
    
    .buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .no-buttons-container {
        flex-direction: column;
    }
}

/* Side photos styles */
.side-photo {
    height: 100vh;
    position: sticky;
    top: 0;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
}

.left-photo {
    left: 0;
}

.right-photo {
    right: 0;
}

.side-image {
    width: 100%;
    height: 90vh;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

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

/* Loading styles */
.loading, .error {
    padding: 40px;
    text-align: center;
    font-size: 1.5em;
    color: var(--primary-color);
    font-family: 'Dancing Script', cursive;
}

.error {
    color: #ff4444;
}

/* Loading overlay styles */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

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

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid var(--background-color);
    border-top: 5px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.loading-text {
    font-family: 'Dancing Script', cursive;
    font-size: 2em;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.loading-progress {
    font-size: 1.2em;
    color: var(--secondary-color);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Celebration overlay styles */
.celebration-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 192, 203, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.celebration-content {
    text-align: center;
    max-width: 800px;
    padding: 2rem;
}

.flower-reveal {
    margin-bottom: 2rem;
}

.flower-photo {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 50%;
    border: 8px solid white;
    box-shadow: 0 0 30px rgba(255, 105, 180, 0.5);
}

.celebration-text h2 {
    font-family: 'Dancing Script', cursive;
    color: white;
    font-size: 3em;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.funny-lines p {
    font-size: 1.5em;
    color: white;
    margin: 1rem 0;
    font-family: 'Poppins', sans-serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    transform: translateX(0);
    opacity: 1;
}

/* Game styles */
.game-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 192, 203, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.game-container {
    background: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
    width: 80%;
    max-width: 600px;
    text-align: center;
}

.game-header {
    margin-bottom: 20px;
    position: relative;
}

.game-header h3 {
    font-family: 'Dancing Script', cursive;
    color: var(--primary-color);
    font-size: 2em;
    margin-bottom: 10px;
}

.game-area {
    position: relative;
    width: 100%;
    height: 300px;
    background: var(--background-color);
    border-radius: 15px;
    overflow: hidden;
    cursor: default;
    min-height: 500px;
}

.hero {
    position: absolute;
    right: -100px; /* Start off-screen */
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 80px;
    height: 80px;
    transition: none;
}

.hero-face {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.shield {
    position: absolute;
    font-size: 2.5em;
    z-index: 3;
    transition: none;
    transform-origin: center;
}

.cupid {
    position: absolute;
    font-size: 2em;
    right: 20%;
    user-select: none;
}

.player {
    position: absolute;
    font-size: 2em;
    left: 10%;
    user-select: none;
}

.game-score {
    font-size: 1.2em;
    color: var(--primary-color);
    font-weight: bold;
}

.escape-btn {
    background: linear-gradient(45deg, #9c27b0, #673ab7);
    color: white;
}

.arrow {
    position: absolute;
    font-size: 1.5em;
    left: 15%;
    user-select: none;
    z-index: 1;
    transition: none;
}

/* Door game styles */
.doors-area {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    padding: 20px;
    padding-bottom: 60px;
    gap: 20px;
}

.door {
    font-size: 5em;
    cursor: pointer;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.door:hover {
    transform: scale(1.1);
}

.door-face {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.door-message {
    white-space: nowrap;
    font-size: 0.3em;
    color: var(--primary-color);
    width: max-content;
    background: white;
    padding: 5px 10px;
    border-radius: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin-top: 10px;
    max-width: 200px;
    white-space: normal;
    text-align: center;
}

/* Unscramble game styles */
.scramble-word {
    font-size: 2.5em;
    font-weight: bold;
    color: var(--primary-color);
    margin: 20px 0;
    letter-spacing: 5px;
}

.unscramble-input {
    padding: 10px 20px;
    font-size: 1.2em;
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    margin: 10px 0;
    text-align: center;
    text-transform: uppercase;
}

.submit-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 25px;
    font-size: 1.1em;
    cursor: pointer;
    margin-top: 10px;
}

.love-message {
    margin-top: 20px;
    color: var(--primary-color);
    font-size: 1.2em;
}

/* Game selection styles */
.game-selection {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px;
}

.game-choice {
    background: white;
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 20px;
    width: 200px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.game-choice:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.game-icon {
    font-size: 3em;
}

.game-choice h4 {
    color: var(--primary-color);
    margin: 10px 0;
    font-family: 'Dancing Script', cursive;
    font-size: 1.5em;
}

.game-choice p {
    color: var(--text-color);
    font-size: 0.9em;
    text-align: center;
}

.attempts-counter {
    margin-top: 20px;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2em;
}

.back-btn {
    position: absolute;
    left: 20px;
    top: 20px;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9em;
    transition: all 0.3s ease;
}

.back-btn:hover {
    transform: translateX(-5px);
    background: var(--secondary-color);
}

.game-result {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 192, 203, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: 20px;
}

.result-content {
    background: white;
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 400px;
}

.result-content h3 {
    color: var(--primary-color);
    font-family: 'Dancing Script', cursive;
    font-size: 1.8em;
    margin: 0;
    white-space: normal;
    text-align: center;
    max-width: 300px;
}

.hint-text {
    color: var(--secondary-color);
    font-size: 1.2em;
    margin: 10px 0;
    font-style: italic;
}

.success-message {
    text-align: center;
    padding: 20px;
}

.typing-text {
    font-family: 'Courier New', monospace;
    color: var(--primary-color);
    font-size: 1.2em;
    margin-top: 15px;
    min-height: 3em;
}

.celebration-heart {
    pointer-events: none;
    position: fixed;
    animation: float 2s ease-out forwards;
}

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

/* Love Potion Game styles */
.potion-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px;
    position: relative;
    height: 100%;
    overflow-y: auto;
}

.cauldron {
    width: 150px;
    height: 150px;
    background: #333;
    border-radius: 50% 50% 15px 15px;
    position: relative;
    overflow: hidden;
    margin: 20px 0;
}

.potion-liquid {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80%;
    background: #ff6b6b;
    transition: background-color 0.5s ease;
    border-radius: 0 0 15px 15px;
}

.bubbles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.bubble {
    position: absolute;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    animation: bubble 2s infinite;
}

@keyframes bubble {
    0% {
        width: 10px;
        height: 10px;
        bottom: 0;
        opacity: 1;
    }
    100% {
        width: 20px;
        height: 20px;
        bottom: 100%;
        opacity: 0;
    }
}

.ingredients-shelf {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
    max-width: 500px;
    padding: 0 20px;
}

.ingredient {
    padding: 10px 20px;
    background: white;
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    cursor: pointer;
    transition: transform 0.3s ease;
    margin-bottom: 10px;
    text-align: center;
    min-width: 150px;
}

.ingredient:hover {
    transform: scale(1.1);
}

.sparkle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    animation: sparkle 1s ease-out;
}

@keyframes sparkle {
    0% {
        transform: scale(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: scale(2) rotate(180deg);
        opacity: 0;
    }
}

.potion-explosion {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    animation: explosion 1s ease-out forwards;
}

@keyframes explosion {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(3);
        opacity: 0;
    }
}

.recipe-book {
    background: rgba(255, 255, 255, 0.9);
    padding: 15px;
    border-radius: 15px;
    margin: 20px 0;
    max-width: 500px;
    width: 90%;
}

.recipe-book h4 {
    color: var(--primary-color);
    font-family: 'Dancing Script', cursive;
    font-size: 1.5em;
    margin-bottom: 10px;
}

.recipe-book p {
    color: var(--text-color);
    font-size: 1.1em;
}

/* Custom scrollbar */
.card-body::-webkit-scrollbar {
    width: 8px;
}

.card-body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.4);
    border-radius: 4px;
}

.card-body::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

/* Responsive adjustments */
@media (max-height: 800px) {
    .poem-section {
        max-height: 50vh;
    }
}

.love-letter-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
    cursor: pointer;
}

.love-letter {
    width: 200px;
    height: 150px;
    background: linear-gradient(45deg, #ff6b6b, #ff8a8a);
    border-radius: 10px;
    position: relative;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
    transition: all 0.3s ease;
    transform-origin: center;
}

.love-letter:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
}

.letter-front {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.heart-seal {
    font-size: 3em;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.to-text {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8em;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

/* Add a subtle envelope fold effect */
.love-letter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        transparent 0%, 
        transparent 49.5%, 
        rgba(255,255,255,0.1) 50%, 
        transparent 50.5%, 
        transparent 100%);
    border-radius: 10px;
}

/* Modal styles */
.modal-dialog {
    max-width: 800px !important;  /* Make modal wider */
}

.modal-content {
    background: linear-gradient(135deg, #fff5f5 0%, #fff9f9 100%);
    border: none;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    height: 90vh;
    display: flex;
    flex-direction: column;
}

.custom-scroll {
    overflow-y: auto;
    height: calc(90vh - 100px);
    padding: 2rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 0 0 20px 20px;
}

.poem-container {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.modal-header {
    background: transparent;
    padding: 1.5rem;
    flex-shrink: 0;  /* Prevent header from shrinking */
}

.modal-title {
    font-family: 'Dancing Script', cursive;
    color: var(--primary-color);
    font-size: 2.5em;
    width: 100%;
    text-align: center;
}

.modal-body {
    padding: 2rem;
    height: calc(80vh - 100px);  /* Subtract header height */
    overflow-y: auto;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 0 0 20px 20px;
    flex-grow: 1;  /* Allow body to grow */
}

.btn-close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.btn-close:hover {
    opacity: 1;
}

.poem {
    font-size: 1.2em;
    line-height: 1.8;
    color: var(--text-color);
    text-align: left;
    padding: 0;
    padding-bottom: 2rem;
}

.poem-line {
    margin-bottom: 15px;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
    font-style: italic;
    font-size: 1.1em;
    white-space: pre-wrap;
}

/* Custom scrollbar */
.custom-scroll::-webkit-scrollbar {
    width: 8px;
}

.custom-scroll::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.4);
    border-radius: 4px;
}

.custom-scroll::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

/* Responsive adjustments for modal */
@media (max-height: 700px) {
    .modal-content {
        min-height: 90vh;
    }
    .modal-body {
        height: calc(90vh - 100px);
    }
}

.poem-page {
    text-align: center;
    padding: 20px;
}

.stanza-title {
    font-family: 'Dancing Script', cursive;
    color: var(--primary-color);
    font-size: 2em;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.stanza-content {
    margin-bottom: 2rem;
    min-height: 300px;
}

.page-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 2rem;
}

.nav-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.page-number {
    font-family: 'Dancing Script', cursive;
    color: var(--primary-color);
    font-size: 1.2em;
}

.devil-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.devil-content {
    text-align: center;
    color: #ff0000;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.devil-emoji {
    font-size: 5em;
    margin-bottom: 20px;
    animation: devilPulse 2s infinite;
}

.devil-message {
    font-family: 'Creepster', cursive;
    font-size: 2.5em;
}

.devil-message .small-text {
    font-size: 0.4em;
    font-family: 'Poppins', sans-serif;
    color: #ff6666;
    margin-top: 20px;
}

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

/* Final Screen Styles */
.final-screen {
    min-height: 100vh;
    width: 100vw;
    background: linear-gradient(135deg, var(--background-color) 0%, #fff1f1 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.final-content {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    max-width: 1200px;
    width: 90%;
    display: flex;
    gap: 2rem;
    align-items: center;
    backdrop-filter: blur(10px);
}

.final-image-container {
    flex: 1;
    max-width: 600px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.final-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.final-image:hover {
    transform: scale(1.02);
}

.final-message {
    flex: 1;
    text-align: center;
    padding: 2rem;
}

.final-message h2 {
    font-family: 'Dancing Script', cursive;
    color: var(--primary-color);
    font-size: 3em;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.final-message p {
    font-size: 1.5em;
    color: var(--text-color);
    line-height: 1.6;
}

/* Responsive design for final screen */
@media (max-width: 992px) {
    .final-content {
        flex-direction: column;
        text-align: center;
    }

    .final-image-container {
        max-width: 100%;
    }

    .final-message {
        padding: 1rem;
    }

    .final-message h2 {
        font-size: 2.5em;
    }

    .final-message p {
        font-size: 1.2em;
    }
} 