
  .drumkit-hero-fresh {
    max-width: 1120px;
    margin: 0 auto 40px;
    font-family: "Arial", sans-serif;
    color: #333;
  }

  .drumkit-hero-fresh-inner {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 26px;
    align-items: center;
    padding: 26px 30px;
    border-radius: 16px;
    background: #ffffff;
    border: 2px solid #FF5722;
    overflow: hidden;
    transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
  }

  /* 顶部/右侧一点点颜色流动感，不用阴影 */
  .drumkit-hero-fresh-inner::before {
    content: "";
    position: absolute;
    right: -40px;
    top: -40px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle at center,
      rgba(255, 87, 34, 0.18),
      rgba(33, 150, 243, 0.06),
      transparent 70%);
    pointer-events: none;
  }

  .drumkit-hero-fresh-inner::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, #FF5722, #2196F3);
  }

  .drumkit-hero-fresh-inner:hover {
    border-color: #2196F3;
    transform: translateY(-2px);
    background: linear-gradient(
      135deg,
      rgba(255, 87, 34, 0.04),
      rgba(33, 150, 243, 0.04)
    );
  }

  .drumkit-hero-img {
    flex: 1 1 380px;
    text-align: center;
    position: relative;
    z-index: 1;
  }

  .drumkit-hero-img img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.35s ease;
  }

  .drumkit-hero-fresh-inner:hover .drumkit-hero-img img {
    transform: scale(1.03);
  }

  .drumkit-hero-text {
    flex: 1 1 360px;
    position: relative;
    z-index: 1;
  }

  .tag-line {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #FF5722;
    margin-bottom: 8px;
  }

  .tag-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, #FF5722, #2196F3);
  }

  .drumkit-hero-text h2 {
    margin: 0 0 8px;
    font-size: 24px;
    text-transform: uppercase;
  }

  .drumkit-hero-text h2 span {
    color: #FF5722;
  }

  .slogan-line {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 4px 0 14px;
  }

  .slogan-text {
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #2196F3;
  }

  .slogan-accent {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, #2196F3, rgba(33,150,243,0));
  }

  .drumkit-hero-text p {
    font-size: 14px;
    line-height: 1.9;
    margin: 6px 0;
    color: #555;
  }

  .mini-spec {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
  }

  .mini-spec span {
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid #E0E0E0;
    background: #F9FAFB;
    color: #444;
    white-space: nowrap;
  }

  .mini-spec span.highlight {
    border-color: #FF5722;
    color: #FF5722;
    background: rgba(255,87,34,0.05);
  }

  @media (max-width: 900px) {
    .drumkit-hero-fresh-inner {
      padding: 22px 16px;
    }
  }

  @media (max-width: 768px) {
    .drumkit-hero-fresh-inner {
      flex-direction: column;
    }
    .drumkit-hero-text h2 {
      font-size: 20px;
    }
    .slogan-text {
      font-size: 12px;
      letter-spacing: 0.14em;
    }
  }
