* {

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

body {
    font-family: 'Comic Sans MS', cursive, sans-serif;
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 50%, #fecfef 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.glitter {
    font-size: 2.5rem;
    color: #ff1493;
    text-shadow: 2px 2px 4px #ffb6c1;
    animation: bounce 1s infinite;
    margin: 20px 0;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.donkey-container {
    background: white;
    border-radius: 20px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.donkey-img {
    max-width: 100%;
    width: 400px;
    border-radius: 15px;
    border: 5px solid #ff69b4;
    transition: transform 0.3s;
}

.donkey-img:hover {
    transform: rotate(5deg) scale(1.05);
}

.caption {
    font-size: 1.5rem;
    color: #ff1493;
    margin-top: 15px;
    font-weight: bold;
}

.facts-section {
    background: rgba(255,255,255,0.9);
    border-radius: 20px;
    padding: 25px;
    margin: 20px 0;
}

.facts-section h2 {
    color: #ff1493;
    margin-bottom: 15px;
}

.facts-section ul {
    list-style: none;
    text-align: left;
    padding: 0 20px;
}

.facts-section li {
    padding: 10px 0;
    font-size: 1.1rem;
    border-bottom: 1px dashed #ffb6c1;
}

.surprise-btn {
    background: linear-gradient(45deg, #ff6b6b, #ff1493);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.3rem;
    border-radius: 50px;
    cursor: pointer;
    margin: 20px 0;
    animation: pulse 2s infinite;
    font-family: inherit;
}

.surprise-btn:hover {
    transform: scale(1.1);
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,20,147,0.7); }
    50% { box-shadow: 0 0 0 20px rgba(255,20,147,0); }
}

.hidden {
    display: none;
}

#surprise {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    margin: 20px 0;
}

#surprise h2 {
    color: #ff1493;
    font-size: 2rem;
}

.emoji-rain {
    font-size: 2rem;
    animation: shake 0.5s infinite;
}

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

.marquee {
    background: #ff1493;
    color: white;
    padding: 10px;
    margin-top: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.marquee span {
    display: inline-block;
    animation: marquee 10s linear infinite;
}

@keyframes marquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}