body {
    margin: 0;
    padding: 0;
    font-family: 'Comic Sans MS', cursive, sans-serif;
    color: #a83261;
    min-height: 100vh;
    position: relative;
    background: linear-gradient(135deg, #ffe0f7 0%, #ffd6e0 30%, #fbb1b1 100%);
    overflow-x: hidden;
}
.hearts-bg {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: 0;
    pointer-events: none;
    background-image: url('data:image/svg+xml;utf8,<svg width="50" height="50" xmlns="http://www.w3.org/2000/svg"><text y="35" font-size="40" opacity="0.15" x="0">💖</text></svg>');
    background-repeat: repeat;
    animation: heartsMove 20s linear infinite;
}
@keyframes heartsMove {
    from { background-position: 0 0; }
    to { background-position: 100vw 100vh; }
}
main {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem 1rem 1rem;
}
header, footer {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(255,255,255,0.7);
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px #ffb3c6;
}
.galeria {
    margin: 2rem auto 1.5rem auto;
}
.galeria h2 {
    text-align: center;
    margin-bottom: 1rem;
}
.fotos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}
.fotos img {
    border-radius: 20px;
    width: 180px;
    height: 180px;
    object-fit: cover;
    box-shadow: 0 0 20px #ffb3c6;
    border: 3px solid #fff0f6;
    background: #fff0f6;
    transition: transform .3s, box-shadow .3s;
}
.fotos img:hover {
    transform: scale(1.07) rotate(-3deg);
    box-shadow: 0 2px 30px #a83261;
}
.carta {
    background: #fff0f6;
    margin: 2rem auto 2rem auto;
    padding: 2rem 1.5rem;
    max-width: 600px;
    border-radius: 18px;
    box-shadow: 0 0 16px #ffaec9;
    text-align: center;
    font-size: 1.16rem;
}
button {
    background-color: #ffb3c6;
    color: #a83261;
    border: none;
    padding: .8rem 2rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-family: inherit;
    margin-top: 1.3rem;
    margin-bottom: 1rem;
    cursor: pointer;
    box-shadow: 0 2px 8px #ffd6e0;
    transition: background .2s, transform .2s;
}
button:hover {
    background-color: #ffd6e0;
    transform: scale(1.08);
}
.escondido {
    display: none;
}
.perguntaChance {
    text-align: center;
    margin: 2.5rem auto 2rem auto;
    background: #fff8fc;
    padding: 2.3rem 1.5rem;
    max-width: 440px;
    border-radius: 18px;
    box-shadow: 0 0 20px #ffb3c6;
}
.perguntaChance.destaque {
    border: 2px dashed #ffb3c6;
    box-shadow: 0 0 40px #ffaec9;
    animation: destaquePergunta 2s infinite alternate;
}
@keyframes destaquePergunta {
    from { box-shadow: 0 0 40px #ffaec9; }
    to   { box-shadow: 0 0 60px #ffb3c6; }
}
.botoesPergunta {
    margin: 1.7rem 0 1.3rem 0;
}
.botoesPergunta button {
    margin: 0 1.3rem;
    min-width: 90px;
    font-size: 1.2rem;
    border: 2px solid #fff0f6;
}
#respostaChance {
    margin-top: 1.5rem;
    font-size: 1.2rem;
    color: #a83261;
    font-weight: bold;
    min-height: 30px;
}
footer {
    margin-top: 2.5rem;
    font-size: 1.1rem;
}
@media (max-width: 600px) {
    .fotos img {
        width: 110px;
        height: 110px;
    }
    main, .carta, .perguntaChance {
        padding: 0.5rem;
        max-width: 95vw;
    }
}