* {
    box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
    background: linear-gradient(135deg, #fef9e7 0%, #fdeaa0 50%, #fef9e7 100%);
    background-attachment: fixed;
    font-family: 'Fredoka', sans-serif;
    flex-direction: column;
    overflow-x: hidden;
}

/* Floating egg/chicken decorations */
.floating-egg {
    position: fixed;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    opacity: 0.85;
    pointer-events: none;
    z-index: 0;
    animation: float 4s ease-in-out infinite;
}

.floating-egg-1 { top: 12%; left: 8%; animation-delay: 0s; }
.floating-egg-2 { top: 18%; right: 10%; animation-delay: 0.8s; }
.floating-egg-3 { bottom: 25%; left: 12%; animation-delay: 1.6s; }
.floating-egg-4 { bottom: 20%; right: 8%; animation-delay: 2.4s; }
.floating-egg-5 { top: 50%; left: 5%; animation-delay: 3.2s; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-12px) rotate(5deg); }
}

.container {
    text-align: center;
    position: relative;
    z-index: 1;
}

.subtitle {
    font-size: 1rem;
    color: #8b6914;
    margin: 0 0 8px 0;
    font-weight: 400;
    letter-spacing: 0.02em;
}

h1 {
    font-size: clamp(1.6rem, 5vw, 2.8rem);
    color: #5c3d0a;
    margin: 0;
    line-height: 1.2;
    animation: wiggle 3s ease-in-out infinite;
}

@keyframes wiggle {
    0%, 100% { transform: rotate(-0.5deg); }
    50% { transform: rotate(0.5deg); }
}

.tagline {
    font-size: 0.95rem;
    color: #8b6914;
    margin: 12px 0 20px 0;
    opacity: 0.9;
}

.buttons {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.yes-button {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.4em;
    font-weight: 600;
    padding: 14px 28px;
    background: linear-gradient(180deg, #e8c547 0%, #c9a227 100%);
    color: #2c1810;
    border: 3px solid #8b6914;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 0 #8b6914, 0 6px 12px rgba(0,0,0,0.15);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.yes-button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 0 #8b6914, 0 8px 16px rgba(0,0,0,0.2);
}

.yes-button:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #8b6914, 0 2px 8px rgba(0,0,0,0.15);
}

.no-button {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.4em;
    font-weight: 600;
    padding: 14px 28px;
    background: linear-gradient(180deg, #d4a84b 0%, #b8860b 100%);
    color: #2c1810;
    border: 3px solid #7a5c0a;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 0 #7a5c0a, 0 6px 12px rgba(0,0,0,0.15);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.no-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 0 #7a5c0a, 0 8px 16px rgba(0,0,0,0.2);
}

.no-button:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #7a5c0a, 0 2px 8px rgba(0,0,0,0.15);
}

.yes-button.bounce-once {
    animation: bounceOnce 0.4s ease;
}

@keyframes bounceOnce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-6px) scale(1.05); }
}

.gif_container {
    margin-top: 24px;
}

.gif_container img {
    max-width: 100%;
    width: 280px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(92, 61, 10, 0.25);
    border: 4px solid rgba(201, 162, 39, 0.5);
}
