* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Chinese';
    src: url('font/zh-cn.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'Chinese', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #faf9f6;
    min-height: 100vh;
    padding: 20px;
    overflow-x: hidden;
    position: relative;
}

/* Lanternas de fundo */
.lanterns {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.lantern {
    position: absolute;
    width: 60px;
    height: 80px;
    background: linear-gradient(135deg, #ff4444 0%, #cc0000 50%, #ff4444 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    box-shadow: 
        0 0 20px rgba(255, 68, 68, 0.6),
        0 0 40px rgba(255, 68, 68, 0.4),
        inset 0 0 20px rgba(255, 200, 0, 0.3);
    animation: glow 2s ease-in-out infinite alternate, sway 3s ease-in-out infinite;
}

.lantern::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 10px;
    background: #8b0000;
    border-radius: 50% 50% 0 0;
}

.lantern::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 15px;
    background: #ffd700;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}

@keyframes glow {
    0% {
        box-shadow: 
            0 0 20px rgba(255, 68, 68, 0.6),
            0 0 40px rgba(255, 68, 68, 0.4),
            inset 0 0 20px rgba(255, 200, 0, 0.3);
    }
    100% {
        box-shadow: 
            0 0 30px rgba(255, 68, 68, 0.8),
            0 0 60px rgba(255, 68, 68, 0.6),
            inset 0 0 30px rgba(255, 200, 0, 0.5);
    }
}

@keyframes sway {
    0%, 100% {
        transform: translateX(0) rotate(0deg);
    }
    50% {
        transform: translateX(10px) rotate(3deg);
    }
}

.lantern-1 {
    top: 10%;
    left: 15%;
    animation-delay: 0s;
}

.lantern-2 {
    top: 20%;
    right: 20%;
    animation-delay: 0.5s;
}

.lantern-3 {
    top: 50%;
    left: 10%;
    animation-delay: 1s;
}

.lantern-4 {
    top: 45%;
    right: 12%;
    animation-delay: 1.5s;
}

.lantern-5 {
    top: 75%;
    left: 18%;
    animation-delay: 2s;
}

.lantern-6 {
    top: 70%;
    right: 15%;
    animation-delay: 2.5s;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 40px 20px;
    z-index: 1;
}

/* Hero Section */
.hero {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 40px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.hero img {
    width: 100%;
    height: auto;
    display: block;
}

/* Mensagem */
.message {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.message h1 {
    color: #d4202e;
    font-size: 2.5em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.message p {
    color: #333;
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 15px;
}

.message .signature {
    font-style: italic;
    color: #d4202e;
    margin-top: 30px;
    font-size: 1.3em;
}

/* Stickers */
.sticker {
    position: absolute;
    width: 120px;
    height: 120px;
    background-color: transparent;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}

.sticker img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.sticker:hover {
    transform: scale(1.1) !important;
    filter: drop-shadow(0 8px 20px rgba(212, 32, 46, 0.5));
}

/* Posicionamento dos stickers */
.sticker-1 {
    top: 20px;
    left: 10%;
    transform: rotate(-10deg);
}

.sticker-2 {
    top: 20px;
    right: 10%;
    transform: rotate(10deg);
}

.sticker-3 {
    top: 35%;
    left: 5%;
    transform: rotate(-5deg);
}

.sticker-4 {
    top: 35%;
    right: 5%;
    transform: rotate(5deg);
}

.sticker-5 {
    top: 60%;
    left: 8%;
    transform: rotate(8deg);
}

.sticker-6 {
    top: 60%;
    right: 8%;
    transform: rotate(-8deg);
}

.sticker-7 {
    bottom: 20px;
    left: 15%;
    transform: rotate(5deg);
}

.sticker-8 {
    bottom: 20px;
    right: 15%;
    transform: rotate(-5deg);
}

/* Responsivo */
@media (max-width: 768px) {
    .message h1 {
        font-size: 1.8em;
    }
    
    .message p {
        font-size: 1em;
    }
    
    .sticker {
        width: 80px;
        height: 80px;
        font-size: 0.7em;
    }
}
