
        * {
            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;
            position: relative;
        }
        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);
        }
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" patternUnits="userSpaceOnUse" width="2" height="2"><circle cx="1" cy="1" r="0.3" fill="%23000" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
            pointer-events: none;
            z-index: -1;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .header {
            text-align: center;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(15px);
            border-radius: 25px;
            padding: 50px 30px;
            margin-bottom: 35px;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
            position: relative;
            overflow: hidden;
            border: 2px solid rgba(218, 165, 32, 0.3);
        }

        .header::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(218, 165, 32, 0.1), transparent);
            transform: rotate(45deg);
            animation: golden-shimmer 4s infinite;
        }

        @keyframes golden-shimmer {
            0% { transform: translateX(-100%) rotate(45deg); }
            100% { transform: translateX(100%) rotate(45deg); }
        }

        .header h1 {
            font-size: 3.5em;
            color: #8b4513;
            margin-bottom: 20px;
            text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
            position: relative;
            z-index: 1;
            font-weight: bold;
        }

        .header p {
            font-size: 1.3em;
            color: #666;
            position: relative;
            z-index: 1;
            margin-bottom: 20px;
        }

        .recipe-icon {
            font-size: 5em;
            margin-bottom: 25px;
            display: block;
            animation: rotate-bounce 3s ease-in-out infinite;
            filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
        }

        @keyframes rotate-bounce {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            25% { transform: translateY(-15px) rotate(5deg); }
            50% { transform: translateY(0) rotate(0deg); }
            75% { transform: translateY(-10px) rotate(-5deg); }
        }

        .section {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(15px);
            border-radius: 20px;
            padding: 35px;
            margin-bottom: 30px;
            box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(218, 165, 32, 0.2);
        }

        .section:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
        }

        .section-header {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 4px solid #d4af37;
            position: relative;
        }

        .section-icon {
            font-size: 2.5em;
            margin-left: 20px;
            background: linear-gradient(45deg, #d4af37, #ffd700);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
        }

        .section-title {
            font-size: 2em;
            color: #8b4513;
            font-weight: bold;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
        }

        .quick-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 20px;
            margin-top: 25px;
        }

        .info-item {
            background: linear-gradient(135deg, #fff8dc, #faebd7);
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            border: 2px solid #d4af37;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .info-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
            transition: left 0.6s;
        }

        .info-item:hover::before {
            left: 100%;
        }

        .info-item:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
        }

        .info-value {
            font-size: 1.8em;
            font-weight: bold;
            color: #8b4513;
            margin-bottom: 8px;
        }

        .info-label {
            color: #666;
            font-size: 1em;
            font-weight: 500;
        }

        .ingredients-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 25px;
        }

        .ingredient-category {
            background: linear-gradient(135deg, #fffbf0, #fef7e0);
            border-radius: 18px;
            padding: 25px;
            border-right: 6px solid #d4af37;
            transition: all 0.3s ease;
            position: relative;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        }

        .ingredient-category:hover {
            transform: scale(1.03);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
        }

        .ingredient-category h4 {
            color: #8b4513;
            font-size: 1.4em;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            font-weight: bold;
        }

        .ingredient-category h4::before {
            content: '🥄';
            margin-left: 15px;
            font-size: 1.3em;
            animation: spoon-stir 2s ease-in-out infinite;
        }

        @keyframes spoon-stir {
            0%, 100% { transform: rotate(0deg); }
            25% { transform: rotate(15deg); }
            75% { transform: rotate(-15deg); }
        }

        .ingredient-list {
            list-style: none;
        }

        .ingredient-list li {
            padding: 12px 0;
            border-bottom: 2px dashed #e6d3a3;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
            position: relative;
        }

        .ingredient-list li:hover {
            background: linear-gradient(90deg, rgba(212, 175, 55, 0.1), transparent);
            padding-right: 15px;
            border-radius: 10px;
            transform: translateX(-5px);
        }

        .ingredient-list li:last-child {
            border-bottom: none;
        }

        .ingredient-name {
            font-weight: 600;
            color: #333;
            font-size: 1.05em;
        }

        .ingredient-amount {
            background: linear-gradient(45deg, #ff6b6b, #feca57);
            color: white;
            padding: 6px 16px;
            border-radius: 25px;
            font-size: 0.95em;
            font-weight: bold;
            box-shadow: 0 3px 10px rgba(212, 175, 55, 0.3);
        }

        .steps-container {
            counter-reset: step-counter;
        }

        .step {
            background: linear-gradient(135deg, #f0f8ff, #e6f3ff);
            border-radius: 20px;
            padding: 30px;
            margin-bottom: 25px;
            border-left: 6px solid #4169e1;
            position: relative;
            transition: all 0.4s ease;
            counter-increment: step-counter;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }

        .step:hover {
            transform: translateX(-15px);
            box-shadow: 0 15px 40px rgba(65, 105, 225, 0.25);
        }

        .step::before {
            content: counter(step-counter);
            position: absolute;
            top: -15px;
            right: -15px;
            background: linear-gradient(45deg, #4169e1, #6495ed);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.4em;
            box-shadow: 0 6px 20px rgba(65, 105, 225, 0.4);
            border: 3px solid white;
        }

        .step h4 {
            color: #4169e1;
            font-size: 1.4em;
            margin-bottom: 18px;
            margin-top: 15px;
            font-weight: bold;
        }

        .step p {
            color: #555;
            font-size: 1.15em;
            line-height: 1.9;
        }

        .cooking-time {
            background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
            color: white;
            padding: 8px 20px;
            border-radius: 30px;
            font-size: 0.95em;
            display: inline-block;
            margin-top: 15px;
            font-weight: bold;
            box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
        }

        .temperature-indicator {
            background: linear-gradient(45deg, #ffa500, #ff8c00);
            color: white;
            padding: 6px 16px;
            border-radius: 25px;
            font-size: 0.9em;
            display: inline-block;
            margin-right: 10px;
            margin-top: 10px;
            font-weight: bold;
        }

        .tips-section {
            background: linear-gradient(135deg, #fff4e6, #ffe8cc);
            border-right: 6px solid #ff8c00;
        }

        .tip {
            background: rgba(255, 255, 255, 0.8);
            padding: 20px;
            border-radius: 15px;
            margin-bottom: 18px;
            border-right: 4px solid #ffa500;
            transition: all 0.3s ease;
            position: relative;
        }

        .tip:hover {
            transform: translateX(-8px);
            box-shadow: 0 8px 25px rgba(255, 165, 0, 0.2);
        }

        .tip::before {
            content: '💡';
            margin-left: 12px;
            font-size: 1.4em;
            filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
        }

        .fun-fact {
            background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
            color: white;
            padding: 30px;
            border-radius: 20px;
            margin: 25px 0;
            text-align: center;
            box-shadow: 0 10px 35px rgba(255, 107, 107, 0.4);
            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.15), transparent);
            transform: rotate(45deg);
            animation: sparkle 5s infinite;
        }

        @keyframes sparkle {
            0% { transform: translateX(-100%) rotate(45deg); }
            100% { transform: translateX(100%) rotate(45deg); }
        }

        .fun-fact h3 {
            font-size: 1.6em;
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
        }

        .fun-fact p {
            font-size: 1.2em;
            position: relative;
            z-index: 1;
            line-height: 1.7;
        }

        .serving-suggestions {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 25px;
        }

        .serving-item {
            background: linear-gradient(135deg, #e8f5e8, #f0fff0);
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            border: 2px solid #90ee90;
            transition: all 0.3s ease;
        }

        .serving-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(144, 238, 144, 0.3);
        }

        .serving-icon {
            font-size: 2.5em;
            margin-bottom: 10px;
            display: block;
        }

        .serving-title {
            font-weight: bold;
            color: #2e7d2e;
            margin-bottom: 8px;
        }

        .scroll-indicator {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 6px;
            background: rgba(255, 255, 255, 0.3);
            z-index: 9999;
        }

        .scroll-progress {
            height: 100%;
            background: linear-gradient(90deg, #d4af37, #ffd700);
            width: 0%;
            transition: width 0.1s ease;
        }

        .floating-chef {
            position: fixed;
            bottom: 25px;
            left: 25px;
            font-size: 3.5em;
            z-index: 1000;
            animation: chef-dance 4s ease-in-out infinite;
            cursor: pointer;
            filter: drop-shadow(3px 3px 8px rgba(0, 0, 0, 0.3));
        }

        @keyframes chef-dance {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            25% { transform: translateY(-12px) rotate(5deg); }
            50% { transform: translateY(-5px) rotate(0deg); }
            75% { transform: translateY(-8px) rotate(-5deg); }
        }

        .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);
        }

        .stars {
            font-size: 2.2em;
            color: #ffd700;
            margin: 20px 0;
            letter-spacing: 8px;
            filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
        }

        .star {
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .star:hover {
            transform: scale(1.3);
            filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8));
        }

        .rating-text {
            color: #c1437a;
            font-size: 1.2em;
            font-weight: bold;
            margin: 15px 0;
        }

        .action-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
            margin-top: 25px;
        }

        .btn {
            padding: 12px 25px;
            border: none;
            border-radius: 30px;
            font-size: 1em;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        }

        .btn-save {
            background: linear-gradient(45deg, #e91e63, #f06292);
            color: white;
        }

        .btn-share {
            background: linear-gradient(45deg, #2196f3, #64b5f6);
            color: white;
        }

        .btn-print {
            background: linear-gradient(45deg, #4caf50, #81c784);
            color: white;
        }

        @media (max-width: 768px) {
            .container {
                padding: 15px;
            }
            
            .header h1 {
                font-size: 2.5em;
            }
            
            .ingredients-grid {
                grid-template-columns: 1fr;
            }
            
            .section {
                padding: 25px;
            }
            
            .step {
                padding: 25px;
                margin-bottom: 20px;
            }
            
            .quick-info {
                grid-template-columns: repeat(2, 1fr);
            }

            .action-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn {
                width: 200px;
                justify-content: center;
            }
        }

        .notification {
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(45deg, #4caf50, #81c784);
            color: white;
            padding: 15px 30px;
            border-radius: 30px;
            font-weight: bold;
            z-index: 10000;
            box-shadow: 0 6px 25px rgba(76, 175, 80, 0.4);
            animation: slideDown 0.5s ease;
        }

        @keyframes slideDown {
            from { transform: translateX(-50%) translateY(-100%); }
            to { transform: translateX(-50%) translateY(0); }
        }

        .difficulty-badge {
            display: inline-block;
            background: linear-gradient(45deg, #ff9800, #ffc107);
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.9em;
            font-weight: bold;
            margin: 10px 0;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
}