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

body {
    font-family: 'Arial', sans-serif;
    overflow: hidden;
    height: 100vh;
    background: #f99345ff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thank-you-container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f99345ff 0%, #ff7b3d 100%);
    overflow: hidden;
}

.main-content {
    text-align: center;
    z-index: 10;
    position: relative;
    animation: slideInUp 1s ease-out;
}

/* Chuva de queijos */
.cheese-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.cheese {
    position: absolute;
    font-size: 3rem;
    animation: cheeseFall 4s infinite linear;
    opacity: 0.9;
}

.cheese-1 { left: 10%; animation-delay: 0s; }
.cheese-2 { left: 20%; animation-delay: 0.5s; }
.cheese-3 { left: 30%; animation-delay: 1s; }
.cheese-4 { left: 40%; animation-delay: 1.5s; }
.cheese-5 { left: 50%; animation-delay: 2s; }
.cheese-6 { left: 60%; animation-delay: 2.5s; }
.cheese-7 { left: 70%; animation-delay: 3s; }
.cheese-8 { left: 80%; animation-delay: 3.5s; }
.cheese-9 { left: 90%; animation-delay: 0.8s; }
.message .animated-text {
    font-size: 3rem;
    color: white;
    font-weight: bold;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.1rem;
}

.letter {
    display: inline-block;
    animation: letterBounce 2s infinite ease-in-out;
    transform-origin: bottom center;
}

.letter:nth-child(1) { animation-delay: 0.1s; }
.letter:nth-child(2) { animation-delay: 0.2s; }
.letter:nth-child(3) { animation-delay: 0.3s; }
.letter:nth-child(4) { animation-delay: 0.4s; }
.letter:nth-child(5) { animation-delay: 0.5s; }
.letter:nth-child(6) { animation-delay: 0.6s; }
.letter:nth-child(7) { animation-delay: 0.7s; }
.letter:nth-child(8) { animation-delay: 0.8s; }
.letter:nth-child(10) { animation-delay: 1s; }
.letter:nth-child(11) { animation-delay: 1.1s; }
.letter:nth-child(12) { animation-delay: 1.2s; }
.letter:nth-child(13) { animation-delay: 1.3s; }
.letter:nth-child(15) { animation-delay: 1.5s; }
.letter:nth-child(16) { animation-delay: 1.6s; }
.letter:nth-child(17) { animation-delay: 1.7s; }
.letter:nth-child(18) { animation-delay: 1.8s; }
.letter:nth-child(19) { animation-delay: 1.9s; }
.letter:nth-child(20) { animation-delay: 2s; }
.letter:nth-child(21) { animation-delay: 2.1s; }

.space {
    width: 0.5rem;
}

.success-icon {
    font-size: 4rem;
    color: #4CAF50;
    background: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem auto;
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
    animation: pulse 1.5s infinite;
}

/* Confetes */
.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    background: linear-gradient(45deg, #FF6B6B, #4ECDC4, #45B7D1, #96CEB4, #FFEAA7);
    animation: confettiFall 3s infinite linear;
}

.confetti:nth-child(1) { left: 10%; animation-delay: 0s; }
.confetti:nth-child(2) { left: 20%; animation-delay: 0.2s; }
.confetti:nth-child(3) { left: 30%; animation-delay: 0.4s; }
.confetti:nth-child(4) { left: 40%; animation-delay: 0.6s; }
.confetti:nth-child(5) { left: 50%; animation-delay: 0.8s; }
.confetti:nth-child(6) { left: 60%; animation-delay: 1s; }
.confetti:nth-child(7) { left: 70%; animation-delay: 1.2s; }
.confetti:nth-child(8) { left: 80%; animation-delay: 1.4s; }
.confetti:nth-child(9) { left: 90%; animation-delay: 1.6s; }
.confetti:nth-child(10) { left: 95%; animation-delay: 1.8s; }

/* Brilhos */
.sparkle {
    position: absolute;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.8);
    animation: sparkleFloat 3s infinite ease-in-out;
    pointer-events: none;
}

.sparkle-1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.sparkle-2 {
    top: 30%;
    right: 20%;
    animation-delay: 1s;
}

.sparkle-3 {
    bottom: 30%;
    left: 25%;
    animation-delay: 2s;
}

.sparkle-4 {
    bottom: 20%;
    right: 15%;
    animation-delay: 0.5s;
}

/* Animações */
@keyframes slideInUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes cheeseFall {
    0%, 100% {
        transform: translateY(-100vh) rotate(0deg);
        opacity: 0.9;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0.5;
    }
}

@keyframes letterBounce {
    0%, 100% {
        transform: translateY(0) scale(1);
        text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
    }
    50% {
        transform: translateY(-20px) scale(1.1);
        text-shadow: 5px 5px 15px rgba(255,255,255,0.8), 3px 3px 6px rgba(0,0,0,0.3);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 12px 35px rgba(76, 175, 80, 0.5);
    }
}

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

@keyframes sparkleFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .message .animated-text {
        font-size: 2rem;
    }
    
    .cheese {
        font-size: 2.5rem;
    }
    
    .success-icon {
        font-size: 3rem;
        width: 60px;
        height: 60px;
    }
    
    .sparkle {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .message .animated-text {
        font-size: 1.5rem;
    }
    
    .cheese {
        font-size: 2rem;
    }
    
    .success-icon {
        font-size: 2.5rem;
        width: 50px;
        height: 50px;
    }
}