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

body {
    font-family: 'Quicksand', sans-serif;
    background: linear-gradient(180deg, #fce4ec 0%, #f8bbd0 30%, #f48fb1 60%, #f06292 100%);
    color: #4a148c;
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.8;
}

/* Hero */
.hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 1.5rem;
    position: relative;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.3) 0%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.kirby-float {
    font-size: 4rem;
    position: absolute;
    top: 10%;
    left: 15%;
    animation: floaty 4s ease-in-out infinite;
}

@keyframes floaty {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

.hero h1 {
    font-family: 'Fredoka', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 3px 3px 0 rgba(74,20,140,0.2);
    margin-bottom: 0.5rem;
    line-height: 1.15;
}

.subtitle {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.3rem;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.kirby-bounce {
    font-size: 3rem;
    animation: bounce 2s ease-in-out infinite;
}

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

/* Story */
.story {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 1.5rem 4rem;
}

.page {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 2.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(233,30,99,0.1);
    transition: transform 0.2s;
}

.page:hover {
    transform: translateY(-2px);
}

.illustration {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    letter-spacing: 0.5rem;
}

.illustration.big {
    font-size: 3.5rem;
    letter-spacing: 1rem;
}

.page p {
    font-size: 1.08rem;
    margin-bottom: 0.8rem;
    color: #4a148c;
}

.page strong {
    color: #e91e63;
    font-weight: 700;
}

.ending {
    background: rgba(255,255,255,0.95);
    border: 2px solid rgba(233,30,99,0.2);
}

.kirby-goodnight {
    text-align: center;
    font-size: 2.5rem;
    margin-top: 1.5rem;
    animation: bounce 3s ease-in-out infinite;
}

/* Floating decorations */
.floating-kirby {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-item {
    position: absolute;
    font-size: 1.8rem;
    opacity: 0.15;
    animation: floatAround 12s ease-in-out infinite;
    animation-delay: var(--d, 0s);
}

.floating-item:nth-child(1) { top: 10%; left: 5%; }
.floating-item:nth-child(2) { top: 30%; right: 8%; }
.floating-item:nth-child(3) { top: 60%; left: 3%; }
.floating-item:nth-child(4) { bottom: 20%; right: 5%; }
.floating-item:nth-child(5) { bottom: 40%; left: 10%; }
.floating-item:nth-child(6) { top: 50%; right: 12%; }

@keyframes floatAround {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(15px, -15px) rotate(5deg); }
    50% { transform: translate(-10px, 10px) rotate(-3deg); }
    75% { transform: translate(20px, -5px) rotate(4deg); }
}

/* Footer */
footer {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem 1.5rem 3rem;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}

/* Responsive */
@media (max-width: 500px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    .page {
        padding: 1.5rem;
    }
    .page p {
        font-size: 1rem;
    }
}

/* Print */
@media print {
    body { background: white; }
    .page { box-shadow: none; border: 1px solid #ddd; break-inside: avoid; }
    .floating-kirby { display: none; }
}