
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #ff9a56 0%, #ff6b6b 50%, #feca57 100%);
            min-height: 100vh;
            overflow-x: hidden;
        }
                header {
            position: sticky;
            top: 0;
            z-index: 100;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.8rem;
            font-weight: bold;
            background: linear-gradient(45deg, #ff6b6b, #feca57);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .logo-icon {
            font-size: 2.2rem;
            background: linear-gradient(45deg, #ff6b6b, #feca57);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: bounce 2s ease-in-out infinite;
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-5px) rotate(5deg); }
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 0.5rem 1rem;
            border-radius: 25px;
        }

        .nav-links a:hover {
            background: linear-gradient(45deg, #ff6b6b, #feca57);
            color: white;
            transform: translateY(-2px);
        }

        .container {
            max-width: 1000px;
            margin: 0 auto;
            background: white;
            box-shadow: 0 30px 60px rgba(0,0,0,0.15);
            border-radius: 30px;
            overflow: hidden;
            margin-top: 2rem;
            margin-bottom: 2rem;
            position: relative;
        }

        .container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, #ff6b6b, #feca57, #48dbfb, #ff9ff3, #54a0ff);
            background-size: 400% 100%;
            animation: rainbow 3s ease infinite;
        }

        @keyframes rainbow {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .header {
            background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
            color: white;
            text-align: center;
            padding: 4rem 2rem;
            position: relative;
            overflow: hidden;
        }

        .header::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="25" cy="25" r="3" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="25" r="2" fill="rgba(255,255,255,0.05)"/><circle cx="50" cy="75" r="4" fill="rgba(255,255,255,0.08)"/></svg>') repeat;
            animation: float-bubbles 25s infinite linear;
        }

        @keyframes float-bubbles {
            0% { transform: translateX(0) translateY(0) rotate(0deg); }
            100% { transform: translateX(-100px) translateY(-100px) rotate(360deg); }
        }

        .header h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            position: relative;
            z-index: 2;
            text-shadow: 4px 4px 8px rgba(0,0,0,0.3);
            animation: pulse-glow 3s ease-in-out infinite alternate;
        }

        @keyframes pulse-glow {
            from { 
                text-shadow: 4px 4px 8px rgba(0,0,0,0.3), 0 0 30px rgba(255,255,255,0.2);
                transform: scale(1);
            }
            to { 
                text-shadow: 4px 4px 8px rgba(0,0,0,0.3), 0 0 50px rgba(255,255,255,0.4);
                transform: scale(1.02);
            }
        }

        .header p {
            font-size: 1.4rem;
            opacity: 0.95;
            position: relative;
            z-index: 2;
            font-style: italic;
        }

        .content {
            padding: 3rem;
        }

        .section {
            margin-bottom: 3rem;
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            padding: 2.5rem;
            border-radius: 25px;
            border-right: 8px solid #ff6b6b;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            position: relative;
            overflow: hidden;
        }

        .section::before {
            content: '';
            position: absolute;
            top: 0;
            right: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
            transition: right 0.6s ease;
        }

        .section:hover::before {
            right: 100%;
        }

        .section:hover {
            transform: translateY(-10px) scale(1.03);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
            border-right-color: #ee5a24;
        }

        .section h2 {
            color: #ee5a24;
            margin-bottom: 2rem;
            font-size: 2.3rem;
            display: flex;
            align-items: center;
            position: relative;
        }

        .section h2::after {
            content: '';
            position: absolute;
            bottom: -8px;
            right: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #ff6b6b, #ee5a24);
            border-radius: 2px;
            animation: expand 2s ease-out;
        }

        @keyframes expand {
            from { width: 0; }
            to { width: 80px; }
        }

        .icon {
            margin-left: 1rem;
            font-size: 2.5rem;
            filter: drop-shadow(3px 3px 6px rgba(0,0,0,0.1));
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(-10px); }
            60% { transform: translateY(-5px); }
        }

        .cooking-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 2rem;
            margin: 2.5rem 0;
            background: linear-gradient(135deg, #2d3436 0%, #636e72 100%);
            padding: 2rem;
            border-radius: 20px;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .cooking-stats::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
            animation: shine 3s infinite;
        }

        @keyframes shine {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        .stat-item {
            text-align: center;
            padding: 1.5rem;
            background: rgba(255,255,255,0.1);
            border-radius: 15px;
            backdrop-filter: blur(10px);
            transition: all 0.4s ease;
            position: relative;
            z-index: 2;
        }

        .stat-item:hover {
            background: rgba(255,255,255,0.2);
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 25px rgba(0,0,0,0.3);
        }

        .stat-value {
            font-size: 2rem;
            font-weight: bold;
            color: #ffeaa7;
            display: block;
            margin-bottom: 0.8rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .ingredients-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .ingredient-group {
            background: white;
            padding: 2rem;
            border-radius: 20px;
            border-right: 5px solid #26de81;
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .ingredient-group::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(38,222,129,0.05) 2px, transparent 2px);
            background-size: 20px 20px;
            animation: pattern-move 20s infinite linear;
        }

        @keyframes pattern-move {
            0% { transform: rotate(0deg) translate(0, 0); }
            100% { transform: rotate(360deg) translate(20px, 20px); }
        }

        .ingredient-group:hover {
            background: #f0fff4;
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 15px 35px rgba(38,222,129,0.15);
            border-right-color: #20bf6b;
        }

        .ingredient-group h3 {
            color: #20bf6b;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .ingredient-group h3::before {
            content: attr(data-emoji);
            margin-left: 0.8rem;
            font-size: 1.8rem;
        }

        .ingredient-list {
            list-style: none;
            position: relative;
            z-index: 2;
        }

        .ingredient-item {
            padding: 0.8rem 0;
            border-bottom: 2px solid #f1f2f6;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            position: relative;
        }

        .ingredient-item:hover {
            background: rgba(38,222,129,0.1);
            padding-right: 1rem;
            border-radius: 8px;
            transform: translateX(5px);
        }

        .ingredient-item::before {
            content: "🔹";
            margin-left: 0.8rem;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .ingredient-item:hover::before {
            transform: scale(1.2) rotate(45deg);
        }

        .steps-container {
            counter-reset: step-counter;
        }

        .step {
            background: white;
            margin: 2rem 0;
            padding: 2.5rem;
            border-radius: 20px;
            border-right: 6px solid #74b9ff;
            counter-increment: step-counter;
            position: relative;
            transition: all 0.5s ease;
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
            overflow: hidden;
        }

        .step::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, transparent 0%, rgba(116,185,255,0.03) 50%, transparent 100%);
            opacity: 0;
            transition: all 0.3s ease;
        }

        .step:hover::after {
            opacity: 1;
        }

        .step:hover {
            background: #f8fafe;
            transform: translateX(15px) scale(1.02);
            box-shadow: 0 15px 35px rgba(116,185,255,0.2);
            border-right-color: #0984e3;
        }

        .step::before {
            content: counter(step-counter);
            background: linear-gradient(135deg, #74b9ff, #0984e3);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: absolute;
            right: -25px;
            top: 2.5rem;
            font-weight: bold;
            font-size: 1.4rem;
            box-shadow: 0 6px 20px rgba(116,185,255,0.4);
            z-index: 2;
        }

        .step h3 {
            color: #0984e3;
            margin-bottom: 1.5rem;
            font-size: 1.6rem;
            font-weight: 600;
        }

        .step p {
            color: #2d3436;
            font-size: 1.15rem;
            line-height: 1.8;
        }

        .pro-tips {
            background: linear-gradient(135deg, #fd79a8 0%, #e84393 100%);
            color: white;
            padding: 2.5rem;
            border-radius: 25px;
            margin-top: 3rem;
            position: relative;
            overflow: hidden;
        }

        .pro-tips::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="50,15 60,35 85,35 67,50 73,75 50,60 27,75 33,50 15,35 40,35" fill="rgba(255,255,255,0.05)"/></svg>') repeat;
            animation: stars-twinkle 25s infinite linear;
        }

        @keyframes stars-twinkle {
            0% { transform: translateX(0) translateY(0) rotate(0deg); }
            100% { transform: translateX(-100px) translateY(-50px) rotate(180deg); }
        }

        .pro-tips h3 {
            margin-bottom: 2rem;
            font-size: 2rem;
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .tip-card {
            background: rgba(255,255,255,0.15);
            padding: 1.5rem;
            border-radius: 15px;
            margin: 1rem 0;
            backdrop-filter: blur(15px);
            border-right: 4px solid rgba(255,255,255,0.3);
            transition: all 0.4s ease;
            position: relative;
            z-index: 2;
        }

        .tip-card:hover {
            background: rgba(255,255,255,0.25);
            transform: translateX(10px) scale(1.02);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .pro-badge {
            background: linear-gradient(135deg, #ffeaa7, #fdcb6e);
            color: #2d3436;
            padding: 0.5rem 1.2rem;
            border-radius: 30px;
            font-size: 0.9rem;
            margin-left: 1rem;
            font-weight: bold;
            box-shadow: 0 3px 10px rgba(0,0,0,0.2);
            display: inline-block;
        }

        @media (max-width: 768px) {
            .container {
                margin: 1rem;
            }
            
            .header h1 {
                font-size: 2.5rem;
            }
            
            .content {
                padding: 2rem;
            }
            
            .ingredients-container {
                grid-template-columns: 1fr;
            }
            
            .cooking-stats {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .rating-section {
            background: linear-gradient(135deg, #ffe4e1, #ffd1dc);
            border-radius: 20px;
            padding: 30px;
            text-align: center;
            border: 3px solid #ffb6c1;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }


        .rating-number {
            font-size: 4rem;
            font-weight: bold;
            margin-bottom: 1rem;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
        }

        .rating-stars {
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .rating-stars .star {
            color: #ffeaa7;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            animation: twinkle 1.5s infinite alternate;
        }

        .rating-stars .star:nth-child(2) { animation-delay: 0.2s; }
        .rating-stars .star:nth-child(3) { animation-delay: 0.4s; }
        .rating-stars .star:nth-child(4) { animation-delay: 0.6s; }
        .rating-stars .star:nth-child(5) { animation-delay: 0.8s; }

        @keyframes float-particle {
                0% {
                    transform: translateY(0) rotate(0deg);
                    opacity: 0;
                }
                10% {
                    opacity: 1;
                }
                90% {
                    opacity: 1;
                }
                100% {
                    transform: translateY(-100vh) rotate(360deg);
                    opacity: 0;
                }
            }
            
            @keyframes pulse {
                0%, 100% {
                    transform: scale(1);
                }
                50% {
                    transform: scale(1.05);
                }
            }
        
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
        }
