
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      background: #ffffff;
      color: #1e0f3c;
      line-height: 1.4;
      overflow-x: hidden;
    }

    /* 纯白背景 + 微妙的光晕点缀 */
    .dynamic-gradient {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: -2;
      background: #ffffff;
    }

    /* 保留极淡的光晕，增加层次但不影响白色感 */
    .dynamic-gradient::before {
      content: "";
      position: absolute;
      width: 100%;
      height: 100%;
      background: radial-gradient(ellipse at 70% 30%, rgba(255, 215, 80, 0.12), transparent 60%);
      opacity: 1;
      animation: slowDrift 14s infinite alternate ease-in-out;
    }

    .dynamic-gradient::after {
      content: "";
      position: absolute;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle at 30% 80%, rgba(180, 140, 255, 0.08), transparent 60%);
      opacity: 1;
      animation: slowDriftReverse 18s infinite alternate;
    }

    @keyframes slowDrift {
      0% { transform: scale(1) translate(0%, 0%); }
      100% { transform: scale(1.05) translate(3%, -3%); }
    }

    @keyframes slowDriftReverse {
      0% { transform: scale(1) translate(0%, 0%); }
      100% { transform: scale(1.05) translate(-3%, 3%); }
    }

    .container {
      max-width: 1380px;
      margin: 0 auto;
      padding: 40px 30px 80px;
      position: relative;
      z-index: 2;
    }

    .series-badge {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      flex-wrap: wrap;
      gap: 20px;
      margin-bottom: 40px;
      padding-bottom: 24px;
      border-bottom: 2px solid #f0e8d8;
    }

    .logo-area h2 {
      font-size: 2rem;
      font-weight: 800;
      letter-spacing: -0.02em;
      background: linear-gradient(135deg, #e8941e, #ff9f29);
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
    }

    .logo-area p {
      font-size: 0.8rem;
      color: #6b4f9e;
      letter-spacing: 1px;
      font-weight: 500;
    }

    .series-title {
      text-align: right;
    }

    .series-title .main {
      font-size: 3rem;
      font-weight: 800;
      background: linear-gradient(145deg, #1e0f3c, #5f3aa8);
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
      line-height: 1;
    }

    .series-title .sub {
      font-size: 0.8rem;
      letter-spacing: 2px;
      color: #b8860b;
      font-weight: 600;
    }

    .flavor-manifesto {
      background: #f8f4ff;
      border-radius: 48px;
      padding: 28px 32px;
      margin-bottom: 48px;
      border: 1px solid #ede6f5;
      text-align: center;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    }

    .flavor-manifesto h3 {
      font-size: 1.6rem;
      font-weight: 700;
      background: linear-gradient(115deg, #e8941e, #d4781a);
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
      margin-bottom: 12px;
    }

    .flavor-manifesto p {
      max-width: 700px;
      margin: 0 auto;
      color: #3d2a66;
      font-size: 0.9rem;
      font-weight: 450;
    }

    .flavor-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 32px 28px;
      margin: 48px 0 70px;
    }

    .flavor-card {
      flex: 0 0 calc(25% - 28px);
      min-width: 240px;
      max-width: 320px;
      background: #ffffff;
      border-radius: 36px;
      overflow: hidden;
      transition: all 0.25s cubic-bezier(0.2, 0.9, 0.4, 1.1);
      border: 1px solid #eee8f5;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
      display: flex;
      flex-direction: column;
    }

    .flavor-card:hover {
      transform: translateY(-6px);
      border-color: #f5c842;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.10);
    }

    .card-img {
      aspect-ratio: 1 / 1;
      background: #f7f2ff;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
      position: relative;
    }

    .card-img img {
      max-width: 85%;
      max-height: 85%;
      object-fit: contain;
      filter: drop-shadow(0 6px 12px rgba(108, 73, 184, 0.20));
      transition: transform 0.2s;
    }

    .flavor-card:hover .card-img img {
      transform: scale(1.02);
    }

    .card-info {
      padding: 20px 20px 26px;
      text-align: center;
      background: #ffffff;
    }

    .brand-tag {
      font-size: 0.7rem;
      font-weight: 700;
      background: #f5edff;
      display: inline-block;
      padding: 4px 14px;
      border-radius: 40px;
      letter-spacing: 0.5px;
      color: #7a4fb0;
      margin-bottom: 12px;
    }

    .flavor-name {
      font-size: 1.3rem;
      font-weight: 700;
      background: linear-gradient(125deg, #3d1f73, #8a5fd6);
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
      margin-bottom: 8px;
      line-height: 1.3;
    }

    .flavor-desc {
      font-size: 0.7rem;
      color: #5c3c99;
      letter-spacing: 0.2px;
      font-weight: 500;
    }

    .ice-icon {
      margin-top: 12px;
      display: inline-block;
      font-size: 0.7rem;
      background: #f0eaff;
      padding: 4px 14px;
      border-radius: 50px;
      color: #6b3fa8;
      font-weight: 500;
    }

    .feature-note {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      gap: 24px;
      background: #f8f4ff;
      border-radius: 48px;
      padding: 28px 36px;
      margin: 30px 0 20px;
      border: 1px solid #ede6f5;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    }

    .mode-badge {
      display: flex;
      gap: 28px;
      flex-wrap: wrap;
    }

    .mode-item span {
      font-weight: 700;
      color: #c4880a;
    }

    .dealer-link {
      font-weight: 600;
      cursor: pointer;
      transition: 0.2s;
      border-bottom: 2px solid #d4b84c;
      color: #5f3aa8;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .dealer-link:hover {
      color: #e8941e;
      border-bottom-color: #e8941e;
    }

    .footer-note {
      text-align: center;
      margin: 40px 0 20px;
    }

    .footer-note span {
      background: #f5edff;
      padding: 8px 24px;
      border-radius: 80px;
      font-size: 0.8rem;
      font-weight: 500;
      color: #3d2a66;
      border: 1px solid #ede6f5;
    }

    .footer-note i {
      color: #c4880a;
      margin-right: 6px;
    }

    @media (max-width: 1024px) {
      .flavor-card {
        flex: 0 0 calc(33.33% - 28px);
      }
    }

    @media (max-width: 760px) {
      .container {
        padding: 20px 20px 60px;
      }
      .series-badge {
        flex-direction: column;
        text-align: center;
        align-items: center;
      }
      .series-title {
        text-align: center;
      }
      .flavor-card {
        flex: 0 0 calc(50% - 28px);
        min-width: 180px;
      }
      .flavor-name {
        font-size: 1.1rem;
      }
      .feature-note {
        flex-direction: column;
        text-align: center;
      }
      .mode-badge {
        justify-content: center;
      }
    }

    @media (max-width: 480px) {
      .flavor-card {
        flex: 0 0 100%;
        max-width: 380px;
      }
    }
