
        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        body {
            font-family: 'Segoe UI', Tahoma, sans-serif;
            background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ffcc29 100%);
            min-height: 100vh;
            color: #2b2b2b;
            overflow-x: hidden;
        }
        
        header {
            background: rgba(255, 255, 255, 0.95);
            padding: 20px 0;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(10px);
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .logo {
            font-size: 2em;
            font-weight: 900;
            background: linear-gradient(45deg, #ff6b35, #d62828);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .logo::before { content: "🍜 "; -webkit-text-fill-color: initial; }
        
        nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
            flex-wrap: wrap;
        }
        
        nav a {
            text-decoration: none;
            color: #2b2b2b;
            font-weight: 600;
            transition: color 0.3s;
            position: relative;
        }
        
        nav a:hover { color: #ff6b35; }
        
        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #ff6b35;
            transition: width 0.3s;
        }
        
        nav a:hover::after { width: 100%; }
        
        .hero {
            text-align: center;
            padding: 80px 20px;
            color: white;
        }
        
        .hero h1 {
            font-size: 4em;
            margin-bottom: 20px;
            text-shadow: 3px 3px 10px rgba(0,0,0,0.3);
            animation: bounceIn 1s ease;
        }
        
        .hero p {
            font-size: 1.4em;
            margin-bottom: 30px;
            text-shadow: 2px 2px 5px rgba(0,0,0,0.2);
        }
        
        .cta-btn {
            display: inline-block;
            padding: 15px 40px;
            background: white;
            color: #ff6b35;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.1em;
            box-shadow: 0 5px 20px rgba(0,0,0,0.2);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.3);
        }
        
        .noodle-icon {
            font-size: 8em;
            display: inline-block;
            animation: spin 8s linear infinite;
            margin-bottom: 20px;
        }
        
        @keyframes spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        
        @keyframes bounceIn {
            0% { opacity: 0; transform: scale(0.3); }
            50% { transform: scale(1.05); }
            100% { opacity: 1; transform: scale(1); }
        }
        
        section {
            padding: 60px 0;
        }
        
        .section-title {
            text-align: center;
            font-size: 2.5em;
            margin-bottom: 40px;
            color: white;
            text-shadow: 2px 2px 5px rgba(0,0,0,0.2);
        }
        
        .cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
        }
        
        .card {
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            transition: transform 0.3s, box-shadow 0.3s;
            cursor: pointer;
        }
        
        .card:hover {
            transform: translateY(-10px) rotate(-1deg);
            box-shadow: 0 15px 40px rgba(0,0,0,0.25);
        }
        
        .card-icon {
            font-size: 3.5em;
            margin-bottom: 15px;
        }
        
        .card h3 {
            color: #d62828;
            margin-bottom: 10px;
            font-size: 1.4em;
        }
        
        .card p {
            color: #555;
            line-height: 1.6;
        }
        
        .rating {
            margin-top: 15px;
            font-size: 1.2em;
        }
        
        .recipe-section {
            background: rgba(255,255,255,0.95);
            border-radius: 20px;
            padding: 40px;
            margin: 20px 0;
        }
        
        .recipe-section h3 {
            color: #d62828;
            margin-bottom: 15px;
            font-size: 1.8em;
        }
        
        .recipe-section ol, .recipe-section ul {
            margin-left: 25px;
            line-height: 1.8;
        }
        
        .facts {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }
        
        .fact {
            background: rgba(255,255,255,0.9);
            padding: 25px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .fact-number {
            font-size: 2.5em;
            font-weight: 900;
            color: #d62828;
        }
        
        .fact-label {
            color: #555;
            margin-top: 5px;
        }
        
        .counter {
            background: white;
            padding: 30px;
            border-radius: 20px;
            text-align: center;
            margin: 40px auto;
            max-width: 500px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }
        
        .counter h3 {
            color: #d62828;
            margin-bottom: 15px;
        }
        
        .counter-display {
            font-size: 3em;
            font-weight: 900;
            color: #ff6b35;
            margin: 15px 0;
        }
        
        .counter button {
            padding: 10px 25px;
            margin: 5px;
            border: none;
            border-radius: 25px;
            background: #ff6b35;
            color: white;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
        }
        
        .counter button:hover {
            background: #d62828;
            transform: scale(1.05);
        }
        
        footer {
            background: rgba(0,0,0,0.8);
            color: white;
            text-align: center;
            padding: 30px 20px;
            margin-top: 60px;
        }
        
        footer a {
            color: #ffcc29;
            text-decoration: none;
        }
        
        .steam {
            position: absolute;
            font-size: 2em;
            opacity: 0.6;
            animation: rise 4s infinite;
        }
        
        @keyframes rise {
            0% { transform: translateY(0); opacity: 0.8; }
            100% { transform: translateY(-100px); opacity: 0; }
        }
        
        @media (max-width: 768px) {
            .hero h1 { font-size: 2.5em; }
            .hero p { font-size: 1.1em; }
            .section-title { font-size: 1.8em; }
            nav ul { gap: 15px; font-size: 0.9em; }
        }
    
