@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

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

body {
    background: 
        radial-gradient(circle at 20% 80%, rgba(155, 89, 182, 0.35) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(142, 68, 173, 0.35) 0%, transparent 50%),
        linear-gradient(135deg, #3a3a3a 0%, #4a4a4a 25%, #4d3b6e 50%, #3a3a3a 75%, #3a3a3a 100%);
    background-size: 100% 100%, 100% 100%, 400% 400%;
    animation: gradientShift 20s ease infinite;
    color: #ffffff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow: hidden;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 0%, 0% 0%, 0% 50%; }
    25% { background-position: 0% 0%, 0% 0%, 100% 50%; }
    50% { background-position: 0% 0%, 0% 0%, 100% 100%; }
    75% { background-position: 0% 0%, 0% 0%, 0% 100%; }
}

.container {
    text-align: center;
    max-width: 750px;
    padding: 50px;
    background: rgba(35, 35, 35, 0.6);
    border-radius: 24px;
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(155, 89, 182, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    animation: containerFloat 6s ease-in-out infinite;
    transform-style: preserve-3d;
}

.container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, rgba(155, 89, 182, 0.3), rgba(142, 68, 173, 0.3));
    border-radius: 26px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.container:hover::before {
    opacity: 1;
}

@keyframes containerFloat {
    0%, 100% { transform: translateY(0px) rotateX(0deg); }
    50% { transform: translateY(-8px) rotateX(2deg); }
}

.chef-emoji {
    font-size: 5rem;
    margin-bottom: 20px;
    animation: chefBounce 3s ease-in-out infinite;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
}

@keyframes chefBounce {
    0%, 100% { transform: translateY(0px) scale(1) rotate(0deg); }
    25% { transform: translateY(-10px) scale(1.05) rotate(-2deg); }
    50% { transform: translateY(-5px) scale(1.02) rotate(1deg); }
    75% { transform: translateY(-8px) scale(1.03) rotate(-1deg); }
}

.image-placeholder {
    width: 320px;
    height: 220px;
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 50%, #6a1b9a 100%);
    border-radius: 20px;
    margin: 0 auto 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: imageGlow 4s ease-in-out infinite alternate;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

@keyframes imageGlow {
    0% { box-shadow: 0 8px 32px rgba(155, 89, 182, 0.3); }
    100% { box-shadow: 0 12px 48px rgba(155, 89, 182, 0.5); }
}

.image-placeholder:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 60px rgba(155, 89, 182, 0.4);
}

h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #9b59b6 0%, #e74c3c 50%, #f39c12 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: titleGradient 4s ease infinite, titleFloat 3s ease-in-out infinite;
    text-shadow: none;
    position: relative;
}

@keyframes titleGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

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

p {
    font-size: 1.4rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

p:nth-of-type(1) { animation-delay: 0.2s; }
p:nth-of-type(2) { animation-delay: 0.4s; }

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

.subtitle {
    font-size: 1.2rem;
    color: #9b59b6;
    font-style: italic;
    font-weight: 400;
    margin-top: 30px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.6s forwards, subtitlePulse 2s ease-in-out infinite;
}

@keyframes subtitlePulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.cooking-icons {
    margin: 40px 0;
    font-size: 2.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.8s forwards;
}

.cooking-icons span {
    display: inline-block;
    margin: 0 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: iconFloat 4s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.cooking-icons span:nth-child(1) { animation-delay: 0s; }
.cooking-icons span:nth-child(2) { animation-delay: -1.3s; }
.cooking-icons span:nth-child(3) { animation-delay: -2.6s; }

.cooking-icons span:hover {
    transform: translateY(-8px) scale(1.2) rotate(15deg);
    filter: drop-shadow(0 8px 16px rgba(155, 89, 182, 0.4));
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-8px) rotate(5deg); }
    50% { transform: translateY(-4px) rotate(-3deg); }
    75% { transform: translateY(-6px) rotate(2deg); }
}