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

body {
    min-height: 100vh;
    background: linear-gradient(135deg, #fef3e2 0%, #fde4c4 50%, #f5d5a8 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Georgia', serif;
    overflow: hidden;
    position: relative;
}

/* Floating crumbs background */
.crumb {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #d4a574;
    border-radius: 2px;
    opacity: 0.4;
    animation: float 15s infinite ease-in-out;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.4;
    }
    50% {
        transform: translateY(-100px) rotate(180deg);
        opacity: 0.7;
    }
}

/* Main container */
.container {
    text-align: center;
    z-index: 10;
    padding: 2rem;
}

/* Title */
h1 {
    font-size: 3rem;
    color: #5c4033;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 0.5rem;
    animation: titlePulse 4s ease-in-out infinite;
}

@keyframes titlePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

/* Coloring link */
.coloring-link {
    display: inline-block;
    font-size: 1.4rem;
    color: #5c4033;
    background: linear-gradient(135deg, #f5d5a8 0%, #e8c080 100%);
    padding: 0.8rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    margin-top: 1.5rem;
    border: 3px solid #c99a52;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.coloring-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* Forum link */
.forum-link {
    display: inline-block;
    font-size: 1.4rem;
    color: white;
    background: linear-gradient(135deg, #3B82F6 0%, #14B8A6 100%);
    padding: 0.8rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    margin-top: 1.5rem;
    border: 3px solid #0D9488;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.forum-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

/* Coming Soon text */
.coming-soon {
    font-size: 1.5rem;
    color: #8b6914;
    letter-spacing: 0.5rem;
    text-transform: uppercase;
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
}

.coming-soon span {
    display: inline-block;
    animation: letterWave 2s ease-in-out infinite;
}

.coming-soon span:nth-child(1) { animation-delay: 0s; }
.coming-soon span:nth-child(2) { animation-delay: 0.1s; }
.coming-soon span:nth-child(3) { animation-delay: 0.2s; }
.coming-soon span:nth-child(4) { animation-delay: 0.3s; }
.coming-soon span:nth-child(5) { animation-delay: 0.4s; }
.coming-soon span:nth-child(6) { animation-delay: 0.5s; }
.coming-soon span:nth-child(7) { animation-delay: 0.6s; }
.coming-soon span:nth-child(8) { animation-delay: 0.7s; }
.coming-soon span:nth-child(9) { animation-delay: 0.8s; }
.coming-soon span:nth-child(10) { animation-delay: 0.9s; }
.coming-soon span:nth-child(11) { animation-delay: 1s; }

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

/* Tagline */
.tagline {
    font-size: 1.1rem;
    color: #7a5c3c;
    margin-top: 2rem;
    font-style: italic;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
    from {
        opacity: 0;
        transform: translateY(20px);
    }
}

/* Sparkle effect */
.sparkle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: radial-gradient(circle, #fff 0%, transparent 70%);
    border-radius: 50%;
    animation: sparkle 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Loading dots */
.loading {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.loading span {
    width: 12px;
    height: 12px;
    background: #b8860b;
    border-radius: 50%;
    animation: loadingBounce 1.4s ease-in-out infinite;
}

.loading span:nth-child(1) { animation-delay: 0s; }
.loading span:nth-child(2) { animation-delay: 0.2s; }
.loading span:nth-child(3) { animation-delay: 0.4s; }

@keyframes loadingBounce {
    0%, 80%, 100% {
        transform: scale(0.6);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Scene image */
.scene-image {
    max-width: 90%;
    width: 400px;
    display: block;
    margin: 2.5rem auto 0;
    border: 6px solid #c99a52;
    border-radius: 12px;
    box-shadow:
        0 0 0 3px #f5d5a8,
        0 0 0 6px #b8860b,
        0 15px 35px rgba(0,0,0,0.2);
    animation: fadeInUp 1s ease-out 0.8s forwards, jitter 8s ease-in-out 1.8s infinite;
    opacity: 0;
}

@keyframes jitter {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    15% {
        transform: translate(3px, -2px) rotate(0.5deg);
    }
    30% {
        transform: translate(-2px, 3px) rotate(-0.3deg);
    }
    45% {
        transform: translate(4px, 1px) rotate(0.4deg);
    }
    60% {
        transform: translate(-3px, -2px) rotate(-0.5deg);
    }
    75% {
        transform: translate(2px, 4px) rotate(0.2deg);
    }
    90% {
        transform: translate(-1px, -3px) rotate(-0.4deg);
    }
}

/* Responsive */
@media (max-width: 600px) {
    h1 {
        font-size: 2rem;
    }
    .coming-soon {
        font-size: 1rem;
        letter-spacing: 0.3rem;
    }
    .logo-container {
        transform: scale(0.8);
    }
}
