.news-section {
    padding: 60px 20px;
    max-width: 1400px;
    margin: 0 auto;
    background: #0b0e17;
    color: #fff;
    font-family: 'Segoe UI', system-ui, sans-serif;
  }

  .section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
  }

  .section-title h3 {
    font-size: 2.8rem;
    background: linear-gradient(90deg, #4facfe, #a47cf3);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 2px;
    margin-bottom: 10px;
  }

  .section-title h5 span {
    color: #6ec1e4;
    font-size: 0.9rem;
    letter-spacing: 4px;
    text-transform: uppercase;
  }

  .news-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }

  .news-card {
    width: 300px;
    background: rgba(20, 25, 45, 0.75);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    transform: translateY(50px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
  }

  .news-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
      0 0 25px rgba(79, 172, 254, 0.6),
      0 0 45px rgba(164, 124, 243, 0.4);
    z-index: 10;
  }

  .news-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 2px solid #4facfe;
  }

  .news-content {
    padding: 20px;
  }

  .news-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: #ffffff;
    line-height: 1.4;
    font-weight: 600;
  }

  .news-date {
    font-size: 0.9rem;
    color: #6ec1e4;
    letter-spacing: 1px;
  }

  /* 非对称错位效果 */
  .news-card:nth-child(2n) {
    transform: translateY(50px) rotate(-1.5deg);
  }
  .news-card:nth-child(3n) {
    transform: translateY(50px) rotate(2deg);
  }

  @media (max-width: 768px) {
    .news-card {
      width: 100%;
      max-width: 350px;
    }
    .section-title h3 {
      font-size: 2rem;
    }
  }