
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #ff9a56 0%, #ff6b6b 50%, #feca57 100%);
            min-height: 100vh;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }
        header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            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);
        }

        .header {
            text-align: center;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 40px 20px;
            margin-bottom: 30px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
            position: relative;
            overflow: hidden;
        }

        .header::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 107, 107, 0.1), transparent);
            transform: rotate(45deg);
            animation: shimmer 3s infinite;
        }

        @keyframes shimmer {
            0% { transform: translateX(-100%) rotate(45deg); }
            100% { transform: translateX(100%) rotate(45deg); }
        }

        .header h1 {
            font-size: 3em;
            color: #e55039;
            margin-bottom: 15px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
            position: relative;
            z-index: 1;
        }

        .header p {
            font-size: 1.2em;
            color: #666;
            position: relative;
            z-index: 1;
        }

        .recipe-icon {
            font-size: 4em;
            margin-bottom: 20px;
            display: block;
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(-10px); }
            60% { transform: translateY(-5px); }
        }

        .section {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 25px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .section:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .section-header {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 3px solid #ff6b6b;
        }

        .section-icon {
            font-size: 2em;
            margin-left: 15px;
            background: linear-gradient(45deg, #ff6b6b, #feca57);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-title {
            font-size: 1.8em;
            color: #e55039;
            font-weight: bold;
        }

        .ingredients-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin-top: 20px;
        }

        .ingredient-category {
            background: linear-gradient(135deg, #fff5f5, #ffe8e8);
            border-radius: 15px;
            padding: 20px;
            border-left: 5px solid #ff6b6b;
            transition: all 0.3s ease;
        }

        .ingredient-category:hover {
            transform: scale(1.02);
            box-shadow: 0 8px 20px rgba(255, 107, 107, 0.2);
        }

        .ingredient-category h4 {
            color: #e55039;
            font-size: 1.3em;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }

        .ingredient-category h4::before {
            content: '🥄';
            margin-left: 10px;
            font-size: 1.2em;
        }

        .ingredient-list {
            list-style: none;
        }

        .ingredient-list li {
            padding: 8px 0;
            border-bottom: 1px dashed #ffcccb;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.2s ease;
        }

        .ingredient-list li:hover {
            background: rgba(255, 107, 107, 0.1);
            padding-right: 10px;
            border-radius: 8px;
        }

        .ingredient-list li:last-child {
            border-bottom: none;
        }

        .ingredient-name {
            font-weight: 500;
            color: #333;
        }

        .ingredient-amount {
            background: linear-gradient(45deg, #ff6b6b, #feca57);
            color: white;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.9em;
            font-weight: bold;
        }

        .steps-container {
            counter-reset: step-counter;
        }

        .step {
            background: linear-gradient(135deg, #f8f9ff, #e8f4fd);
            border-radius: 15px;
            padding: 25px;
            margin-bottom: 20px;
            border-right: 5px solid #4834d4;
            position: relative;
            transition: all 0.3s ease;
            counter-increment: step-counter;
        }

        .step:hover {
            transform: translateX(-10px);
            box-shadow: 0 10px 30px rgba(72, 52, 212, 0.2);
        }

        .step::before {
            content: counter(step-counter);
            position: absolute;
            top: -10px;
            right: -10px;
            background: linear-gradient(45deg, #4834d4, #686de0);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2em;
            box-shadow: 0 4px 15px rgba(72, 52, 212, 0.3);
        }

        .step h4 {
            color: #4834d4;
            font-size: 1.3em;
            margin-bottom: 15px;
            margin-top: 10px;
        }

        .step p {
            color: #555;
            font-size: 1.1em;
            line-height: 1.8;
        }

        .cooking-time {
            background: linear-gradient(45deg, #00d2d3, #54a0ff);
            color: white;
            padding: 5px 15px;
            border-radius: 25px;
            font-size: 0.9em;
            display: inline-block;
            margin-top: 10px;
            font-weight: bold;
        }

        .tips-section {
            background: linear-gradient(135deg, #fff7e6, #ffe5b4);
            border-left: 5px solid #feca57;
        }

        .tip {
            background: rgba(255, 255, 255, 0.7);
            padding: 15px;
            border-radius: 10px;
            margin-bottom: 15px;
            border-left: 3px solid #ff9f43;
            transition: all 0.3s ease;
        }

        .tip:hover {
            transform: translateX(-5px);
            box-shadow: 0 5px 15px rgba(255, 159, 67, 0.2);
        }

        .tip::before {
            content: '💡';
            margin-left: 10px;
            font-size: 1.2em;
        }

        .nutrition-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 15px;
            margin-top: 20px;
        }

        .nutrition-item {
            background: linear-gradient(135deg, #e8f8f5, #d1f2eb);
            padding: 15px;
            border-radius: 10px;
            text-align: center;
            border-top: 3px solid #00b894;
            transition: all 0.3s ease;
        }

        .nutrition-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 184, 148, 0.2);
        }

        .nutrition-value {
            font-size: 1.5em;
            font-weight: bold;
            color: #00b894;
        }

        .nutrition-label {
            color: #666;
            font-size: 0.9em;
            margin-top: 5px;
        }

        .fun-fact {
            background: linear-gradient(135deg, #fdcb6e, #e17055);
            color: white;
            padding: 20px;
            border-radius: 15px;
            margin: 20px 0;
            text-align: center;
            box-shadow: 0 8px 25px rgba(225, 112, 85, 0.3);
            position: relative;
            overflow: hidden;
        }

        .fun-fact::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: shine 4s infinite;
        }

        @keyframes shine {
            0% { transform: translateX(-100%) rotate(45deg); }
            100% { transform: translateX(100%) rotate(45deg); }
        }

        .fun-fact h3 {
            font-size: 1.4em;
            margin-bottom: 10px;
            position: relative;
            z-index: 1;
        }

        .fun-fact p {
            font-size: 1.1em;
            position: relative;
            z-index: 1;
        }

        .video-section {
            text-align: center;
            background: linear-gradient(135deg, #f5f3ff, #ede9fe);
            border-radius: 15px;
            padding: 30px;
            border: 2px dashed #8b5cf6;
        }

        .video-placeholder {
            background: #667eea;
            color: white;
            padding: 60px 20px;
            border-radius: 15px;
            font-size: 1.2em;
            margin: 20px 0;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .video-placeholder:hover {
            transform: scale(1.02);
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
        }

        .video-placeholder::before {
            content: '▶️';
            font-size: 3em;
            display: block;
            margin-bottom: 15px;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        .rating-section {
            background: linear-gradient(135deg, #fff0f6, #fce7f3);
            border-radius: 15px;
            padding: 25px;
            text-align: center;
            border: 2px solid #f472b6;
        }

        .stars {
            font-size: 2em;
            color: #fbbf24;
            margin: 15px 0;
            letter-spacing: 5px;
        }

        .rating-text {
            color: #be185d;
            font-size: 1.1em;
            font-weight: bold;
        }

        @media (max-width: 768px) {
            .container {
                padding: 10px;
            }
            
            .header h1 {
                font-size: 2em;
            }
            
            .ingredients-grid {
                grid-template-columns: 1fr;
            }
            
            .section {
                padding: 20px;
            }
            
            .step {
                padding: 20px;
            }
            
            .nutrition-info {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .scroll-indicator {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: rgba(255, 255, 255, 0.3);
            z-index: 9999;
        }

        .scroll-progress {
            height: 100%;
            background: linear-gradient(90deg, #ff6b6b, #feca57);
            width: 0%;
            transition: width 0.1s ease;
        }

        .floating-chef {
            position: fixed;
            bottom: 20px;
            left: 20px;
            font-size: 3em;
            z-index: 1000;
            animation: float 3s ease-in-out infinite;
            cursor: pointer;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
}
    