<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
    :root {
      --primary-color: #FFA500;
      --secondary-color: #FFF8E1;
      --accent-color: #FFD54F;
      --dark-color: #5D4037;
      --light-color: #FFF8E1;
    }
    
    body {
      font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
      margin: 0;
      padding: 0;
      color: #333;
      background-color: #f9f9f9;
      line-height: 1.6;
    }
    
    .header {
      background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('/en/Foodcategory/image/yellow/daylily.webp');
      background-size: cover;
      background-position: center;
      color: white;
      text-align: center;
      padding: 100px 20px;
      position: relative;
    }
    
    .header h1 {
      font-size: 3rem;
      margin-bottom: 30px;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    }
    
    .buttons {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 15px;
    }
    
    .btn {
      background-color: var(--primary-color);
      color: white;
      padding: 12px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      transition: all 0.3s ease;
      border: 2px solid var(--primary-color);
    }
    
    .btn:hover {
      background-color: transparent;
      color: white;
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }
    
    .fullscreen-bg {
      padding: 50px 0;
    }
    
    .content-wrapper {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }
    
    .section-title {
      text-align: center;
      color: var(--dark-color);
      font-size: 2.5rem;
      margin-bottom: 50px;
      position: relative;
    }

    .section-title::after {
      content: "";
      display: block;
      width: 100px;
      height: 4px;
      background-color: var(--primary-color);
      margin: 15px auto;
    }
    
    .nutrition-row {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      margin-bottom: 60px;
      align-items: center;
    }
    
    .nutrition-image {
      flex: 1;
      min-width: 300px;
    }
    
    .nutrition-image img {
      width: 100%;
      border-radius: 10px;
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    
    .nutrition-text {
      flex: 1;
      min-width: 300px;
    }
    
    .nutrition-text h3 {
      color: var(--dark-color);
      font-size: 1.8rem;
      margin-top: 0;
    }
    
    .nutrition-text ul {
      padding-left: 20px;
    }
    
    .nutrition-text li {
      margin-bottom: 10px;
      line-height: 1.6;
    }
    
    .tip {
      background-color: var(--accent-color);
      padding: 15px;
      border-radius: 8px;
      margin-top: 20px;
      color: #333;
    }
    
    .growing-timeline {
      margin-bottom: 60px;
    }
    
    .timeline-row {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
    }
    
    .timeline-card {
      flex: 1;
      min-width: 250px;
      max-width: 350px;
      background-color: white;
      border-radius: 10px;
      padding: 25px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      position: relative;
      transition: transform 0.3s ease;
    }
    
    .timeline-card:hover {
      transform: translateY(-10px);
    }
    
    .step-number {
      position: absolute;
      top: -20px;
      left: -20px;
      background-color: var(--primary-color);
      color: white;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      font-size: 1.2rem;
    }
    
    .timeline-card h3 {
      color: var(--dark-color);
      margin-top: 10px;
    }
    
    .video-section {
      margin-bottom: 60px;
    }
    
    .video-description {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 30px;
      line-height: 1.6;
    }
    
    .video-wrapper {
      position: relative;
      padding-bottom: 56.25%;
      height: 0;
      overflow: hidden;
      max-width: 800px;
      margin: 0 auto;
      border-radius: 10px;
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    
    .video-wrapper iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: none;
    }
    
    .food-carousel {
      margin-bottom: 60px;
      overflow-x: auto;
      white-space: nowrap;
      padding: 10px;
    }
    
    .section-description {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 30px;
      line-height: 1.6;
    }
    
    .carousel-wrapper {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: nowrap;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      padding-bottom: 10px;
    }
    
    .carousel-wrapper::-webkit-scrollbar {
      display: none;
    }
    
    .carousel-item {
      flex: 0 0 auto;
      min-width: 250px;
      max-width: 350px;
      height: 250px;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      transition: all 0.3s ease;
      position: relative;
    }
    
    .carousel-item:hover {
      transform: scale(1.05);
      box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    }
    
    .carousel-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    
    .carousel-item:hover img {
      transform: scale(1.1);
    }
    
    .carousel-caption {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: rgba(0,0,0,0.7);
      color: white;
      padding: 10px;
      text-align: center;
      font-weight: bold;
      transition: all 0.3s ease;
    }
    
    .carousel-item:hover .carousel-caption {
      background: var(--primary-color);
    }
    
    .food-video-section {
      position: relative;
      max-width: 100%;
      margin: 0 auto;
      padding: 20px 0;
    }
    
    .swiper-container {
      overflow: hidden;
    }
    
    .swiper-slide {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 0 10px;
    }
    
    .video-card {
      background-color: white;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
      width: 100%;
      max-width: 320px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    
    .video-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    }
    
    .video-card iframe {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      transition: transform 0.3s ease;
    }
    
    .video-card:hover iframe {
      transform: scale(1.05);
    }
    
    .video-caption {
      width: 100%;
      padding: 15px;
      text-align: center;
      font-weight: bold;
      color: var(--dark-color);
    }
    
    .footer {
      background-color: var(--dark-color);
      color: white;
      text-align: center;
      padding: 30px 20px;
    }
    
    .footer p {
      margin: 5px 0;
    }
    
    /* Responsive */
    @media (max-width: 768px) {
      .header h1 {
        font-size: 2rem;
      }
      
      .section-title {
        font-size: 2rem;
      }
      
      .nutrition-row {
        flex-direction: column;
      }
      
      .timeline-card {
        min-width: 100%;
      }
      
      .swiper-slide {
        padding: 0 5px;
      }
    }
    
    .food-carousel {
      padding: 10px;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    
    .section-title, .nutrition-row, .growing-timeline, 
    .video-section, .food-carousel, .food-video-section {
      animation: fadeIn 1s ease forwards;
    }
    
    .top-nav {
      background-color: var(--dark-color);
      padding: 15px 0;
      position: sticky;
      top: 0;
      z-index: 1000;
    }
    
    .top-nav ul {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      list-style: none;
      margin: 0;
      padding: 0;
      gap: 15px;
    }
    
    .top-nav a {
      color: white;
      text-decoration: none;
      padding: 8px 15px;
      border-radius: 20px;
      transition: all 0.3s ease;
      font-weight: 500;
    }
    
    .top-nav a:hover {
      background-color: var(--primary-color);
      transform: translateY(-2px);
    }
    
    .color-home { background-color: #6a4c93; }
    .color-black { background-color: #212529; }
    .color-white { background-color: #adb5bd; color: #212529 !important; }
    .color-yellow { background-color: #ffd166; color: #212529 !important; }
    .color-red { background-color: #ef476f; }
    .color-orange { background-color: #f8961e; color: #212529 !important; }
    .color-green { background-color: #06d6a0; color: #212529 !important; }
    .color-blue { background-color: #118ab2; }
    .color-purple { background-color: #7209b7; }
    .color-luck { background-color: #ff9e00; color: #212529 !important; }
    
    .history-section {
      background: linear-gradient(to right, #FFF8E1, #FFECB3);
      padding: 40px;
      border-radius: 10px;
      margin: 40px 0;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .history-content {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 30px;
    }
    
    .history-text {
      flex: 1;
      min-width: 300px;
    }
    
    .history-image {
      flex: 1;
      min-width: 300px;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    
    .history-image img {
      width: 100%;
      height: auto;
      display: block;
    }
    
    .health-benefits {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
      margin: 40px 0;
    }
    
    .benefit-card {
      background: white;
      border-radius: 10px;
      padding: 25px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      transition: all 0.3s ease;
    }
    
    .benefit-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }
    
    .benefit-card h3 {
      color: var(--dark-color);
      display: flex;
      align-items: center;
      gap: 10px;
    }
    
    .benefit-icon {
      color: var(--primary-color);
      font-size: 1.5rem;
    }
 </pre></body></html>