
        * {
            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;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
            pointer-events: none;
            z-index: -1;
        }
        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);
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .header {
            text-align: center;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            border-radius: 30px;
            padding: 60px 40px;
            margin-bottom: 40px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
            position: relative;
            overflow: hidden;
            border: 3px solid rgba(255, 107, 53, 0.3);
        }

        .header::before {
            content: '';
            position: absolute;
            top: -100%;
            right: -100%;
            width: 300%;
            height: 300%;
            background: conic-gradient(from 0deg, transparent, rgba(255, 107, 53, 0.1), transparent, rgba(247, 147, 30, 0.1), transparent);
            animation: pizza-spin 6s linear infinite;
        }

        @keyframes pizza-spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .header h1 {
            font-size: 4em;
            color: #c41e3a;
            margin-bottom: 25px;
            text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
            position: relative;
            z-index: 1;
            font-weight: bold;
        }

        .header p {
            font-size: 1.4em;
            color: #666;
            position: relative;
            z-index: 1;
            margin-bottom: 25px;
            font-style: italic;
        }

        .pizza-icon {
            font-size: 6em;
            margin-bottom: 30px;
            display: block;
            animation: pizza-bounce 3s ease-in-out infinite;
            filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.3));
        }

        @keyframes pizza-bounce {
            0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
            25% { transform: translateY(-20px) rotate(5deg) scale(1.1); }
            50% { transform: translateY(-10px) rotate(0deg) scale(1); }
            75% { transform: translateY(-15px) rotate(-5deg) scale(1.05); }
        }

        .flag-badge {
            display: inline-block;
            background: linear-gradient(45deg, #009246, #ffffff, #ce2b37);
            color: white;
            padding: 10px 20px;
            border-radius: 25px;
            font-size: 1em;
            font-weight: bold;
            margin: 15px 0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .section {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            border-radius: 25px;
            padding: 40px;
            margin-bottom: 35px;
            box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            border: 2px solid rgba(255, 107, 53, 0.2);
        }

        .section:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
        }

        .section-header {
            display: flex;
            align-items: center;
            margin-bottom: 35px;
            padding-bottom: 25px;
            border-bottom: 5px solid #ff6b35;
            position: relative;
        }

        .section-icon {
            font-size: 3em;
            margin-left: 25px;
            background: linear-gradient(45deg, #ff6b6b, #feca57);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.1));
        }

        .section-title {
            font-size: 2.2em;
            color: #c41e3a;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
        }

        .pizza-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 25px;
            margin-top: 30px;
        }

        .info-card {
            background: linear-gradient(135deg, #fff5f0, #ffe8d6);
            padding: 25px;
            border-radius: 20px;
            text-align: center;
            border: 3px solid #ff6b35;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .info-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.3), transparent);
            transition: left 0.8s;
        }

        .info-card:hover::before {
            left: 100%;
        }

        .info-card:hover {
            transform: translateY(-8px) scale(1.05);
            box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
        }

        .info-value {
            font-size: 2em;
            font-weight: bold;
            color: #c41e3a;
            margin-bottom: 10px;
            position: relative;
            z-index: 1;
        }

        .info-label {
            color: #666;
            font-size: 1.1em;
            font-weight: 600;
            position: relative;
            z-index: 1;
        }

        .ingredients-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 35px;
            margin-top: 30px;
        }

        .ingredient-section {
            background: linear-gradient(135deg, #fff8f5, #fff0e6);
            border-radius: 20px;
            padding: 30px;
            border-right: 8px solid #ff6b35;
            transition: all 0.4s ease;
            position: relative;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }

        .ingredient-section:hover {
            transform: scale(1.03);
            box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
        }

        .ingredient-section h4 {
            color: #c41e3a;
            font-size: 1.6em;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            font-weight: bold;
        }

        .ingredient-section h4::before {
            content: '🍕';
            margin-left: 15px;
            font-size: 1.4em;
            animation: ingredient-wiggle 2s ease-in-out infinite;
        }

        @keyframes ingredient-wiggle {
            0%, 100% { transform: rotate(0deg); }
            25% { transform: rotate(10deg); }
            75% { transform: rotate(-10deg); }
        }

        .ingredient-list {
            list-style: none;
        }

        .ingredient-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            border-bottom: 3px dashed #ffd4a6;
            transition: all 0.3s ease;
            position: relative;
        }

        .ingredient-item:hover {
            background: linear-gradient(90deg, rgba(255, 107, 53, 0.1), transparent);
            padding-right: 20px;
            border-radius: 12px;
            transform: translateX(-10px);
        }

        .ingredient-item:last-child {
            border-bottom: none;
        }

        .ingredient-name {
            font-weight: 600;
            color: #333;
            font-size: 1.1em;
        }

        .ingredient-amount {
            background: linear-gradient(45deg, #ff6b35, #f7931e);
            color: white;
            padding: 8px 18px;
            border-radius: 30px;
            font-size: 1em;
            font-weight: bold;
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
        }

        .steps-timeline {
            counter-reset: step-counter;
        }

        .step {
            background: linear-gradient(135deg, #f0f8ff, #e6f3ff);
            border-radius: 25px;
            padding: 35px;
            margin-bottom: 30px;
            border-left: 8px solid #1e90ff;
            position: relative;
            transition: all 0.4s ease;
            counter-increment: step-counter;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .step:hover {
            transform: translateX(-20px);
            box-shadow: 0 20px 50px rgba(30, 144, 255, 0.3);
        }

        .step::before {
            content: counter(step-counter);
            position: absolute;
            top: -20px;
            right: -20px;
            background: linear-gradient(45deg, #1e90ff, #87ceeb);
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.6em;
            box-shadow: 0 8px 25px rgba(30, 144, 255, 0.5);
            border: 4px solid white;
        }

        .step h4 {
            color: #1e90ff;
            font-size: 1.6em;
            margin-bottom: 20px;
            margin-top: 20px;
            font-weight: bold;
        }

        .step p {
            color: #555;
            font-size: 1.2em;
            line-height: 2;
        }

        .time-temp {
            display: flex;
            gap: 15px;
            margin-top: 20px;
            flex-wrap: wrap;
        }

        .time-badge {
            background: linear-gradient(45deg, #32cd32, #90ee90);
            color: white;
            padding: 10px 25px;
            border-radius: 30px;
            font-size: 1em;
            font-weight: bold;
            box-shadow: 0 5px 15px rgba(50, 205, 50, 0.4);
        }

        .temp-badge {
            background: linear-gradient(45deg, #ff4500, #ff6347);
            color: white;
            padding: 10px 25px;
            border-radius: 30px;
            font-size: 1em;
            font-weight: bold;
            box-shadow: 0 5px 15px rgba(255, 69, 0, 0.4);
        }

        .tips-section {
            background: linear-gradient(135deg, #fff9e6, #fff3cc);
            border-right: 8px solid #ffa500;
        }

        .tip {
            background: rgba(255, 255, 255, 0.9);
            padding: 25px;
            border-radius: 18px;
            margin-bottom: 20px;
            border-right: 5px solid #ffa500;
            transition: all 0.3s ease;
            position: relative;
        }

        .tip:hover {
            transform: translateX(-10px);
            box-shadow: 0 10px 30px rgba(255, 165, 0, 0.25);
        }

        .tip::before {
            content: '💡';
            margin-left: 15px;
            font-size: 1.6em;
            filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
        }

        .toppings-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-top: 30px;
        }

        .topping-category {
            background: linear-gradient(135deg, #f0fff0, #e8f5e8);
            padding: 25px;
            border-radius: 20px;
            border: 3px solid #32cd32;
            transition: all 0.3s ease;
        }

        .topping-category:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(50, 205, 50, 0.3);
        }

        .topping-title {
            font-size: 1.4em;
            font-weight: bold;
            color: #228b22;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }

        .topping-title::before {
            content: '🧀';
            margin-left: 10px;
            font-size: 1.3em;
        }

        .topping-list {
            list-style: none;
        }

        .topping-list li {
            padding: 8px 0;
            color: #333;
            font-size: 1.1em;
            border-bottom: 1px dashed #90ee90;
        }

        .topping-list li:last-child {
            border-bottom: none;
        }

        .fun-fact {
            background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
            color: white;
            padding: 35px;
            border-radius: 25px;
            margin: 30px 0;
            text-align: center;
            box-shadow: 0 15px 45px 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.2), transparent);
            transform: rotate(45deg);
            animation: fact-shine 6s infinite;
        }

        @keyframes fact-shine {
            0% { transform: translateX(-100%) rotate(45deg); }
            100% { transform: translateX(100%) rotate(45deg); }
        }

        .fun-fact h3 {
            font-size: 1.8em;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }

        .fun-fact p {
            font-size: 1.3em;
            position: relative;
            z-index: 1;
            line-height: 1.8;
        }

        .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, #ff6b35, #f7931e);
            width: 0%;
            transition: width 0.1s ease;
        }

        .floating-pizza {
            position: fixed;
            bottom: 30px;
            left: 30px;
            font-size: 4em;
            z-index: 1000;
            animation: pizza-float 4s ease-in-out infinite;
            cursor: pointer;
            filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.3));
        }

        @keyframes pizza-float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            25% { transform: translateY(-15px) rotate(5deg); }
            50% { transform: translateY(-8px) rotate(0deg); }
            75% { transform: translateY(-12px) rotate(-5deg); }
        }

        .rating-section {
            background: linear-gradient(135deg, #ffe4e1, #ffd1dc);
            border-radius: 25px;
            padding: 35px;
            text-align: center;
            border: 4px solid #ff69b4;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .stars {
            font-size: 2.5em;
            color: #ffd700;
            margin: 25px 0;
            letter-spacing: 10px;
            filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.2));
        }

        .star {
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .star:hover {
            transform: scale(1.4);
            filter: drop-shadow(0 0 15px rgba(255, 215, 0, 1));
        }

        .rating-text {
            color: #dc143c;
            font-size: 1.3em;
            font-weight: bold;
            margin: 20px 0;
        }

        .action-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            margin-top: 30px;
        }

        .btn {
            padding: 15px 30px;
            border: none;
            border-radius: 35px;
            font-size: 1.1em;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .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.8em;
            }
            
            .ingredients-container {
                grid-template-columns: 1fr;
            }
            
            .section {
                padding: 30px;
            }
            
            .step {
                padding: 30px;
                margin-bottom: 25px;
            }
            
            .pizza-info {
                grid-template-columns: repeat(2, 1fr);
            }

            .action-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn {
                width: 250px;
                justify-content: center;
            }

            .toppings-grid {
                grid-template-columns: 1fr;
            }
        }

        .notification {
            position: fixed;
            top: 30px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(45deg, #4caf50, #81c784);
            color: white;
            padding: 18px 35px;
            border-radius: 35px;
            font-weight: bold;
            z-index: 10000;
            box-shadow: 0 8px 30px rgba(76, 175, 80, 0.5);
            animation: slideDown 0.6s 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: 10px 20px;
            border-radius: 25px;
            font-size: 1em;
            font-weight: bold;
            margin: 15px 0;
        }

        .nutrition-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 20px;
            margin-top: 25px;
        }

        .nutrition-item {
            background: linear-gradient(135deg, #e8f5e8, #f0fff0);
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            border: 2px solid #90ee90;
            transition: all 0.3s ease;
        }

        .nutrition-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(144, 238, 144, 0.3);
        }

        .nutrition-value {
            font-size: 1.8em;
            font-weight: bold;
            color: #228b22;
            margin-bottom: 8px;
        }

        .nutrition-label {
            color: #666;
            font-size: 1em;
            font-weight: 500;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
}