
        * {
            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;
        }
        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: 900px;
            margin: 0 auto;
            background: white;
            box-shadow: 0 25px 50px rgba(0,0,0,0.15);
            border-radius: 25px;
            overflow: hidden;
            margin-top: 2rem;
            margin-bottom: 2rem;
        }

        .header {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            text-align: center;
            padding: 3.5rem 2rem;
            position: relative;
            overflow: hidden;
        }

        .header::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,10 60,35 90,35 70,55 80,85 50,70 20,85 30,55 10,35 40,35" fill="rgba(255,255,255,0.05)"/></svg>') repeat;
            animation: sparkle 30s infinite linear;
        }

        @keyframes sparkle {
            0% { transform: translateX(0) translateY(0); }
            100% { transform: translateX(-100px) translateY(-100px); }
        }

        .header h1 {
            font-size: 3rem;
            margin-bottom: 0.8rem;
            position: relative;
            z-index: 2;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
            animation: glow 2s ease-in-out infinite alternate;
        }

        @keyframes glow {
            from { text-shadow: 3px 3px 6px rgba(0,0,0,0.3), 0 0 20px rgba(255,255,255,0.2); }
            to { text-shadow: 3px 3px 6px rgba(0,0,0,0.3), 0 0 30px rgba(255,255,255,0.4); }
        }

        .header p {
            font-size: 1.3rem;
            opacity: 0.95;
            position: relative;
            z-index: 2;
        }

        .content {
            padding: 2.5rem;
        }

        .section {
            margin-bottom: 2.5rem;
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            padding: 2rem;
            border-radius: 20px;
            border-right: 6px solid #667eea;
            transition: all 0.4s ease;
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
        }

        .section:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 15px 35px rgba(0,0,0,0.12);
            border-right-color: #764ba2;
        }

        .section h2 {
            color: #764ba2;
            margin-bottom: 1.5rem;
            font-size: 2rem;
            display: flex;
            align-items: center;
            position: relative;
        }

        .section h2::after {
            content: '';
            position: absolute;
            bottom: -5px;
            right: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, #667eea, #764ba2);
            border-radius: 2px;
        }

        .icon {
            margin-left: 0.8rem;
            font-size: 2rem;
            filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.1));
        }

        .cooking-time {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
            background: linear-gradient(135deg, #2d3436 0%, #636e72 100%);
            padding: 1.5rem;
            border-radius: 15px;
            color: white;
        }

        .time-item {
            text-align: center;
            padding: 1rem;
            background: rgba(255,255,255,0.1);
            border-radius: 10px;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .time-item:hover {
            background: rgba(255,255,255,0.2);
            transform: translateY(-3px);
        }

        .time-value {
            font-size: 1.8rem;
            font-weight: bold;
            color: #ffeaa7;
            display: block;
            margin-bottom: 0.5rem;
        }

        .ingredients-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            margin-top: 1.5rem;
        }

        .ingredient-category {
            background: white;
            padding: 1.5rem;
            border-radius: 15px;
            border-right: 4px solid #ff6b6b;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
        }

        .ingredient-category:hover {
            background: #ffeaa7;
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.12);
        }

        .ingredient-category h3 {
            color: #ff6b6b;
            font-size: 1.3rem;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
        }

        .ingredient-category ul {
            list-style: none;
        }

        .ingredient-category li {
            padding: 0.5rem 0;
            border-bottom: 1px solid #f1f2f6;
            transition: all 0.2s ease;
        }

        .ingredient-category li:hover {
            background: rgba(255,107,107,0.1);
            padding-right: 0.5rem;
            border-radius: 5px;
        }

        .ingredient-category li::before {
            content: "🔸";
            margin-left: 0.5rem;
        }

        .steps {
            counter-reset: step-counter;
        }

        .step {
            background: white;
            margin: 1.5rem 0;
            padding: 2rem;
            border-radius: 15px;
            border-right: 5px solid #26de81;
            counter-increment: step-counter;
            position: relative;
            transition: all 0.4s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }

        .step:hover {
            background: #f0fff4;
            transform: translateX(10px) scale(1.02);
            box-shadow: 0 8px 25px rgba(38,222,129,0.2);
        }

        .step::before {
            content: counter(step-counter);
            background: linear-gradient(135deg, #26de81, #20bf6b);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: absolute;
            right: -20px;
            top: 2rem;
            font-weight: bold;
            font-size: 1.2rem;
            box-shadow: 0 4px 15px rgba(38,222,129,0.3);
        }

        .step h3 {
            color: #20bf6b;
            margin-bottom: 1rem;
            font-size: 1.4rem;
        }

        .step p {
            color: #2d3436;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .tips {
            background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
            color: white;
            padding: 2rem;
            border-radius: 20px;
            margin-top: 2rem;
            position: relative;
            overflow: hidden;
        }

        .tips::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 2px, transparent 2px);
            background-size: 20px 20px;
            animation: float-dots 15s infinite linear;
        }

        @keyframes float-dots {
            0% { transform: rotate(0deg) translateX(0); }
            100% { transform: rotate(360deg) translateX(20px); }
        }

        .tips h3 {
            margin-bottom: 1.5rem;
            font-size: 1.8rem;
            position: relative;
            z-index: 2;
        }

        .tip-item {
            background: rgba(255,255,255,0.15);
            padding: 1rem;
            border-radius: 10px;
            margin: 0.8rem 0;
            backdrop-filter: blur(10px);
            border-right: 3px solid rgba(255,255,255,0.3);
            transition: all 0.3s ease;
            position: relative;
            z-index: 2;
        }

        .tip-item:hover {
            background: rgba(255,255,255,0.25);
            transform: translateX(5px);
        }

        .secret-badge {
            background: linear-gradient(135deg, #e17055, #ff6b6b);
            color: white;
            padding: 0.4rem 1rem;
            border-radius: 25px;
            font-size: 0.85rem;
            margin-left: 0.8rem;
            font-weight: bold;
            box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        }

        .rating-summary {
            display: flex;
            gap: 2rem;
            margin: 2rem 0;
            flex-wrap: wrap;
        }

        .overall-rating {
            text-align: center;
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
            flex: 1;
            min-width: 200px;
        }

        .rating-number {
            font-size: 3.5rem;
            font-weight: bold;
            color: #ffa502;
            line-height: 1;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }

        .stars {
            margin: 1rem 0;
            font-size: 1.8rem;
        }

        .star {
            color: #ddd;
            transition: all 0.2s ease;
        }

        .star.filled {
            color: #ffa502;
            filter: drop-shadow(0 0 3px rgba(255,165,2,0.5));
        }

        .rating-text {
            color: #666;
            font-size: 1rem;
        }

        .rating-breakdown {
            flex: 2;
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
            min-width: 300px;
        }

        .rating-bar {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin: 0.8rem 0;
            font-size: 1rem;
        }

        .rating-bar span:first-child {
            min-width: 70px;
            font-weight: 500;
        }

        .rating-bar span:last-child {
            min-width: 35px;
            color: #666;
            font-weight: bold;
        }

        .bar {
            flex: 1;
            height: 10px;
            background: #f1f2f6;
            border-radius: 5px;
            overflow: hidden;
        }
        .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);
        }



        .fill {
            height: 100%;
            background: linear-gradient(90deg, #ffa502, #ff6348);
            border-radius: 5px;
            transition: width 0.8s ease;
        }

        @media (max-width: 768px) {
            .container {
                margin: 1rem;
            }
            
            .header h1 {
                font-size: 2.2rem;
            }
            
            .content {
                padding: 1.5rem;
            }
            
            .ingredients-grid {
                grid-template-columns: 1fr;
            }
            
            .cooking-time {
                grid-template-columns: 1fr;
            }
        }
            @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
        }