
        * {
            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: 800px;
            margin: 0 auto;
            background: white;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            border-radius: 20px;
            overflow: hidden;
            margin-top: 2rem;
            margin-bottom: 2rem;
        }

        .header {
            background: linear-gradient(45deg, #ff6b6b, #ee5a24);
            color: white;
            text-align: center;
            padding: 3rem 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="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
            animation: float 20s infinite linear;
        }

        @keyframes float {
            0% { transform: translateX(0) translateY(0) rotate(0deg); }
            100% { transform: translateX(-50px) translateY(-50px) rotate(360deg); }
        }

        .header h1 {
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
            position: relative;
            z-index: 2;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .header p {
            font-size: 1.2rem;
            opacity: 0.9;
            position: relative;
            z-index: 2;
        }

        .content {
            padding: 2rem;
        }

        .section {
            margin-bottom: 2rem;
            background: #f8f9fa;
            padding: 1.5rem;
            border-radius: 15px;
            border-right: 5px solid #ff6b6b;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .section:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }

        .section h2 {
            color: #ee5a24;
            margin-bottom: 1rem;
            font-size: 1.8rem;
            display: flex;
            align-items: center;
        }

        .icon {
            margin-left: 0.5rem;
            font-size: 1.5rem;
        }

        .ingredients-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
            margin-top: 1rem;
        }

        .ingredient-item {
            background: white;
            padding: 1rem;
            border-radius: 10px;
            border-right: 3px solid #ffa502;
            transition: all 0.3s ease;
        }

        .ingredient-item:hover {
            background: #fff5f5;
            transform: translateX(5px);
        }

        .steps {
            counter-reset: step-counter;
        }

        .step {
            background: white;
            margin: 1rem 0;
            padding: 1.5rem;
            border-radius: 10px;
            border-right: 4px solid #26de81;
            counter-increment: step-counter;
            position: relative;
            transition: all 0.3s ease;
        }

        .step:hover {
            background: #f0fff4;
            transform: translateX(5px);
        }

        .step::before {
            content: counter(step-counter);
            background: #26de81;
            color: white;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: absolute;
            right: -15px;
            top: 1.5rem;
            font-weight: bold;
        }

        .tips {
            background: linear-gradient(135deg, #74b9ff, #0984e3);
            color: white;
            padding: 1.5rem;
            border-radius: 15px;
            margin-top: 2rem;
        }

        .tips h3 {
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .tip-item {
            background: rgba(255,255,255,0.2);
            padding: 0.8rem;
            border-radius: 8px;
            margin: 0.5rem 0;
            backdrop-filter: blur(10px);
        }

        .cooking-time {
            display: flex;
            justify-content: space-around;
            background: #2d3436;
            color: white;
            padding: 1rem;
            border-radius: 10px;
            margin: 1rem 0;
        }

        .time-item {
            text-align: center;
        }

        .time-value {
            font-size: 1.5rem;
            font-weight: bold;
            color: #ffeaa7;
        }

        @media (max-width: 768px) {
            .container {
                margin: 1rem;
            }
            
            .header h1 {
                font-size: 2rem;
            }
            
            .content {
                padding: 1rem;
            }
            
            .ingredients-grid {
                grid-template-columns: 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);
        }



        .secret-badge {
            background: #e17055;
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            margin-right: 0.5rem;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
        }
