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

body {
    font-family: 'Georgia', serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #ff6e7f 75%, #bfe9ff 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle, rgba(255, 182, 193, 0.3) 2px, transparent 2px),
        radial-gradient(circle, rgba(255, 105, 180, 0.2) 1px, transparent 1px);
    background-size: 60px 60px, 40px 40px;
    background-position: 0 0, 30px 30px;
    animation: heartPattern 20s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes heartPattern {
    0% {
        background-position: 0 0, 30px 30px;
    }
    100% {
        background-position: 60px 60px, 90px 90px;
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Tela de Bloqueio */
.lock-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
}

.lock-container {
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 50px 40px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    max-width: 500px;
    width: 90%;
    animation: fadeInScale 0.8s ease-out;
}

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

/* Envelope Animado */
.envelope {
    position: relative;
    width: 150px;
    height: 100px;
    margin: 0 auto 30px;
}

.envelope-body {
    position: absolute;
    bottom: 0;
    width: 150px;
    height: 80px;
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    border-radius: 0 0 10px 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.envelope-flap {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-left: 75px solid transparent;
    border-right: 75px solid transparent;
    border-top: 60px solid #ff9a9e;
    transform-origin: top;
    animation: flapOpen 2s ease-in-out infinite;
}

@keyframes flapOpen {
    0%, 100% {
        transform: rotateX(0deg);
    }
    50% {
        transform: rotateX(-180deg);
    }
}

.letter {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3em;
    animation: letterFloat 2s ease-in-out infinite;
}

@keyframes letterFloat {
    0%, 100% {
        transform: translate(-50%, -50%);
    }
    50% {
        transform: translate(-50%, -70%);
    }
}

.lock-title {
    font-size: 2em;
    color: #c44569;
    margin-bottom: 10px;
    animation: glow 2s ease-in-out infinite alternate;
}

.lock-subtitle {
    font-size: 1.3em;
    color: #764ba2;
    margin-bottom: 30px;
    font-style: italic;
}

.lock-hint {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    padding: 15px;
    border-radius: 15px;
    margin-bottom: 25px;
}

.lock-hint p {
    color: #333;
    font-size: 1.1em;
    margin: 0;
    font-weight: 500;
}

.password-container {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 15px;
}

.password-input {
    padding: 15px 20px;
    font-size: 1.1em;
    border: 3px solid #764ba2;
    border-radius: 25px;
    outline: none;
    font-family: 'Georgia', serif;
    flex: 1;
    max-width: 250px;
    transition: all 0.3s;
    text-align: center;
}

.password-input:focus {
    border-color: #c44569;
    box-shadow: 0 0 15px rgba(196, 69, 105, 0.3);
    transform: scale(1.05);
}

.unlock-btn {
    padding: 15px 30px;
    font-size: 1.1em;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-family: 'Georgia', serif;
    font-weight: bold;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(245, 87, 108, 0.4);
}

.unlock-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(245, 87, 108, 0.6);
}

.unlock-btn:active {
    transform: translateY(0);
}

.error-message {
    color: #f5576c;
    font-size: 1em;
    min-height: 24px;
    font-weight: bold;
    animation: shake 0.5s;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

.lock-screen.unlocked {
    animation: fadeOut 0.8s forwards;
}

@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

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

.floating-heart {
    position: absolute;
    font-size: 20px;
    animation: float-up 6s linear infinite;
    opacity: 0;
}

@keyframes float-up {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0);
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(-100vh) scale(1.5);
    }
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 2;
}

.header {
    text-align: center;
    padding: 40px 20px;
    animation: fadeIn 1s ease-in;
}

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

.title {
    font-size: 3em;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 10px;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 2px 2px 4px rgba(0,0,0,0.3), 0 0 10px rgba(255,255,255,0.5);
    }
    to {
        text-shadow: 2px 2px 4px rgba(0,0,0,0.3), 0 0 20px rgba(255,255,255,0.8);
    }
}

.subtitle {
    font-size: 1.5em;
    color: #ffe5ec;
    font-style: italic;
}

.love-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    animation: slideIn 1s ease-out 0.3s backwards;
}

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

.heart-icon {
    font-size: 4em;
    text-align: center;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.1);
    }
    50% {
        transform: scale(1);
    }
    75% {
        transform: scale(1.05);
    }
}

.love-card h2 {
    color: #c44569;
    text-align: center;
    margin: 20px 0;
    font-size: 2em;
}

.love-text {
    color: #333;
    font-size: 1.2em;
    line-height: 1.8;
    margin: 20px 0;
    text-align: justify;
}

.signature {
    text-align: right;
    font-style: italic;
    color: #c44569;
    font-size: 1.3em;
    margin-top: 30px;
}

.reasons {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    animation: slideIn 1s ease-out 0.6s backwards;
}

.reasons h2 {
    color: #c44569;
    text-align: center;
    margin-bottom: 30px;
    font-size: 2em;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.reason-card {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.reason-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.emoji {
    font-size: 3em;
    display: block;
    margin-bottom: 15px;
}

.reason-card p {
    color: #333;
    font-size: 1.1em;
    font-weight: 500;
}

.footer {
    text-align: center;
    padding: 40px 20px;
    animation: fadeIn 1s ease-in 0.9s backwards;
}

.big-heart {
    font-size: 5em;
    animation: heartbeat 1.5s ease-in-out infinite;
    margin-bottom: 20px;
}

.footer p {
    color: #fff;
    font-size: 2em;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    font-weight: bold;
}

/* Novas Seções */
.section-title {
    color: #fff;
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 40px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    animation: fadeIn 1s ease-in;
}

/* Seção de Memórias */
.memories-section {
    margin: 50px 0;
    padding: 40px 20px;
}

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

.memory-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,245,250,0.95) 100%);
    padding: 35px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    transition: all 0.4s;
    animation: slideIn 0.8s ease-out backwards;
}

.memory-card:nth-child(1) { animation-delay: 0.1s; }
.memory-card:nth-child(2) { animation-delay: 0.2s; }
.memory-card:nth-child(3) { animation-delay: 0.3s; }
.memory-card:nth-child(4) { animation-delay: 0.4s; }

.memory-card:hover {
    transform: translateY(-15px) rotate(2deg);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.memory-icon {
    font-size: 4em;
    margin-bottom: 20px;
    animation: heartbeat 2s ease-in-out infinite;
}

.memory-card h3 {
    color: #c44569;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.memory-card p {
    color: #555;
    font-size: 1.1em;
    line-height: 1.6;
}

/* Seção de Promessas */
.promises-section {
    margin: 50px 0;
    padding: 40px 20px;
}

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

.promise-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.3s;
    animation: slideIn 0.8s ease-out backwards;
}

.promise-item:nth-child(1) { animation-delay: 0.2s; }
.promise-item:nth-child(2) { animation-delay: 0.4s; }
.promise-item:nth-child(3) { animation-delay: 0.6s; }
.promise-item:nth-child(4) { animation-delay: 0.8s; }

.promise-item:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.promise-number {
    font-size: 3em;
    font-weight: bold;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 70px;
}

.promise-content h3 {
    color: #c44569;
    font-size: 1.5em;
    margin-bottom: 10px;
}

.promise-content p {
    color: #555;
    font-size: 1.1em;
    line-height: 1.6;
}

/* Seção de Galeria de Corações */
.gallery-section {
    margin: 50px 0;
    padding: 40px 20px;
    text-align: center;
}

.hearts-gallery {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin: 40px 0;
}

.gallery-heart {
    font-size: 4em;
    animation: floatRotate 3s ease-in-out infinite;
    cursor: pointer;
    transition: all 0.3s;
}

.gallery-heart:nth-child(1) { animation-delay: 0s; }
.gallery-heart:nth-child(2) { animation-delay: 0.2s; }
.gallery-heart:nth-child(3) { animation-delay: 0.4s; }
.gallery-heart:nth-child(4) { animation-delay: 0.6s; }
.gallery-heart:nth-child(5) { animation-delay: 0.8s; }
.gallery-heart:nth-child(6) { animation-delay: 1s; }
.gallery-heart:nth-child(7) { animation-delay: 1.2s; }
.gallery-heart:nth-child(8) { animation-delay: 1.4s; }

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

.gallery-heart:hover {
    transform: scale(1.5) rotate(20deg);
}

.gallery-text {
    color: #fff;
    font-size: 1.3em;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    font-style: italic;
}

/* Seção de Mensagem Final */
.final-message {
    margin: 50px 0;
    padding: 40px 20px;
}

.message-box {
    background: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(255,240,245,0.98) 100%);
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    text-align: center;
    border: 3px solid rgba(255,255,255,0.5);
    animation: slideIn 1s ease-out backwards;
}

.message-box h2 {
    color: #c44569;
    font-size: 2.5em;
    margin-bottom: 30px;
    animation: glow 2s ease-in-out infinite alternate;
}

.final-text {
    color: #333;
    font-size: 1.3em;
    line-height: 1.8;
    margin: 20px 0;
    text-align: center;
}

.hearts-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    font-size: 2.5em;
}

.hearts-row span {
    animation: heartbeat 1.5s ease-in-out infinite;
}

.hearts-row span:nth-child(1) { animation-delay: 0s; }
.hearts-row span:nth-child(2) { animation-delay: 0.2s; }
.hearts-row span:nth-child(3) { animation-delay: 0.4s; }
.hearts-row span:nth-child(4) { animation-delay: 0.6s; }
.hearts-row span:nth-child(5) { animation-delay: 0.8s; }
.hearts-row span:nth-child(6) { animation-delay: 1s; }

.footer-subtitle {
    font-size: 1.2em !important;
    color: #ffe5ec !important;
    margin-top: 10px;
}

/* Seções de Carrossel de Fotos */
.photo-carousel-section {
    margin: 50px 0;
    padding: 40px 20px;
}

.carousel-container {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    overflow: hidden;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 20px;
}

.carousel-slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.carousel-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 6em;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.carousel-caption {
    text-align: center;
    color: #c44569;
    font-size: 1.2em;
    font-style: italic;
    padding: 10px;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
}

.carousel-btn {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5em;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(245, 87, 108, 0.4);
}

.carousel-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(245, 87, 108, 0.6);
}

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

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-dot.active {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    transform: scale(1.3);
}

.carousel-description {
    margin-top: 30px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(255,236,210,0.5) 0%, rgba(252,182,159,0.5) 100%);
    border-radius: 15px;
    text-align: center;
}

.carousel-description h3 {
    color: #c44569;
    font-size: 1.8em;
    margin-bottom: 15px;
}

.carousel-description p {
    color: #555;
    font-size: 1.2em;
    line-height: 1.8;
    font-style: italic;
}

/* Seção de Declaração Especial */
.declaration-section {
    margin: 50px 0;
    padding: 40px 20px;
}

.declaration-box {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(255,240,245,0.98) 100%);
    padding: 60px 50px;
    border-radius: 30px;
    box-shadow: 0 25px 70px rgba(0,0,0,0.3);
    border: 3px solid rgba(255,182,193,0.5);
    position: relative;
    overflow: hidden;
}

.declaration-box::before {
    content: '💕';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 4em;
    opacity: 0.2;
    animation: heartbeat 2s ease-in-out infinite;
}

.declaration-box::after {
    content: '💕';
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-size: 4em;
    opacity: 0.2;
    animation: heartbeat 2s ease-in-out infinite;
    animation-delay: 1s;
}

.declaration-title {
    color: #c44569;
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 30px;
    animation: glow 2s ease-in-out infinite alternate;
}

.declaration-text {
    color: #333;
    font-size: 1.3em;
    line-height: 2;
    text-align: justify;
    margin: 25px 0;
    text-indent: 40px;
}

.declaration-highlight {
    color: #c44569;
    font-weight: bold;
    font-style: italic;
}

.declaration-ending {
    text-align: center;
    margin-top: 40px;
    color: #c44569;
    font-size: 1.5em;
    font-style: italic;
    font-weight: bold;
}

@media (max-width: 768px) {
    /* Container principal */
    .container {
        padding: 10px;
        max-width: 100%;
    }

    /* Tela de senha - Mobile */
    .lock-container {
        padding: 30px 20px;
        width: 95%;
        max-width: none;
    }

    .lock-title {
        font-size: 1.5em;
        line-height: 1.3;
    }

    .lock-subtitle {
        font-size: 1.1em;
    }

    .lock-hint p {
        font-size: 0.95em;
    }

    .password-container {
        flex-direction: column;
        gap: 15px;
    }

    .password-input {
        max-width: 100%;
        width: 100%;
        font-size: 1em;
        padding: 12px 15px;
    }

    .unlock-btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 1em;
    }

    .envelope {
        width: 120px;
        height: 80px;
    }

    .envelope-body {
        width: 120px;
        height: 60px;
    }

    .envelope-flap {
        border-left: 60px solid transparent;
        border-right: 60px solid transparent;
        border-top: 48px solid #ff9a9e;
    }

    .letter {
        font-size: 2.5em;
    }

    /* Títulos e textos */
    .title {
        font-size: 1.8em;
        line-height: 1.2;
        word-break: break-word;
    }

    .subtitle {
        font-size: 1.2em;
    }

    .section-title {
        font-size: 1.8em;
        padding: 0 10px;
    }

    /* Cards */
    .love-card, .reasons {
        padding: 20px;
        margin: 20px 0;
        border-radius: 15px;
    }

    .love-card h2 {
        font-size: 1.5em;
    }

    .love-text {
        font-size: 1em;
        text-align: left;
    }

    .signature {
        font-size: 1.1em;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .reason-card {
        padding: 20px;
    }

    .reason-card p {
        font-size: 1em;
    }

    /* Seções */
    .memories-section,
    .promises-section,
    .gallery-section,
    .photo-carousel-section,
    .declaration-section,
    .final-message {
        padding: 20px 10px;
        margin: 30px 0;
    }

    .memories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .memory-card {
        padding: 25px;
    }

    .memory-card h3 {
        font-size: 1.3em;
    }

    .memory-card p {
        font-size: 1em;
    }

    /* Promessas */
    .promise-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .promise-number {
        min-width: auto;
        font-size: 2.5em;
    }

    .promise-content h3 {
        font-size: 1.3em;
    }

    .promise-content p {
        font-size: 1em;
    }

    /* Galeria de corações */
    .hearts-gallery {
        gap: 20px;
        margin: 20px 0;
    }

    .gallery-heart {
        font-size: 3em;
    }

    .gallery-text {
        font-size: 1.1em;
        padding: 0 10px;
    }

    /* Carrossel */
    .carousel-container {
        padding: 20px 15px;
        border-radius: 20px;
    }

    .carousel-wrapper {
        height: 350px;
    }

    .carousel-image {
        height: 280px;
        font-size: 3em;
    }

    .carousel-caption {
        font-size: 1em;
        padding: 5px;
    }

    .carousel-description {
        padding: 15px;
        margin-top: 20px;
    }

    .carousel-description h3 {
        font-size: 1.4em;
    }

    .carousel-description p {
        font-size: 1em;
    }

    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 1.3em;
    }

    .carousel-dots {
        gap: 8px;
    }

    .carousel-dot {
        width: 10px;
        height: 10px;
    }

    /* Declaração */
    .declaration-box {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .declaration-title {
        font-size: 1.8em;
    }

    .declaration-text {
        font-size: 1em;
        line-height: 1.7;
        text-indent: 15px;
        text-align: left;
    }

    .declaration-ending {
        font-size: 1.2em;
    }

    .declaration-box::before,
    .declaration-box::after {
        font-size: 3em;
    }

    /* Mensagem final */
    .message-box {
        padding: 25px 15px;
        border-radius: 20px;
    }

    .message-box h2 {
        font-size: 1.8em;
    }

    .final-text {
        font-size: 1.05em;
        line-height: 1.6;
    }

    .hearts-row {
        gap: 10px;
        font-size: 2em;
        flex-wrap: wrap;
    }

    /* Footer */
    .footer {
        padding: 30px 10px;
    }

    .big-heart {
        font-size: 4em;
    }

    .footer p {
        font-size: 1.5em;
        padding: 0 10px;
    }

    .footer-subtitle {
        font-size: 1em !important;
    }

    /* Header */
    .header {
        padding: 30px 10px;
    }
}
