/* AI Shot Section - 智能分镜展示区 */
    .ai-shot-section {
      padding: 8rem 0;
      background: var(--dark-bg);
      position: relative;
      overflow: hidden;
    }

    .ai-shot-section::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 800px;
      height: 800px;
      background: radial-gradient(circle, rgba(0, 153, 255, 0.08), transparent);
      pointer-events: none;
    }

    .ai-shot-container {
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .ai-shot-intro {
      text-align: center;
      max-width: 800px;
      margin: 0 auto 3rem;
    }

    .ai-shot-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.5rem 1.2rem;
      background: rgba(0, 153, 255, 0.1);
      border: 1px solid rgba(0, 153, 255, 0.3);
      border-radius: 20px;
      font-size: 0.85rem;
      color: #0099FF;
      font-weight: 600;
      margin-bottom: 1.5rem;
    }

    .ai-shot-badge-icon {
      width: 16px;
      height: 16px;
      flex-shrink: 0;
    }

    .ai-shot-badge-icon svg {
      width: 100%;
      height: 100%;
      fill: currentColor;
    }

    .ai-shot-subtitle {
      font-size: 1.2rem;
      color: var(--text-secondary);
      line-height: 1.8;
      margin-top: 1rem;
    }

    .ai-shot-demo {
      display: flex;
      flex-direction: column;
      gap: 4rem;
      margin-bottom: 2rem;
    }

    .ai-shot-visual {
      position: relative;
    }

    .ai-shot-image-wrapper {
      width: 90%;
      max-width: 900px;
      margin: 0 auto;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: var(--shadow-lg), 0 0 60px rgba(0, 153, 255, 0.12);
      border: 1px solid rgba(0, 153, 255, 0.2);
      transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
      background: #0A0B0D;
    }

    .ai-shot-image-wrapper:hover {
      transform: scale(1.02);
      box-shadow: var(--shadow-xl), 0 0 100px rgba(0, 153, 255, 0.3);
    }

    .ai-shot-image-wrapper img {
      width: 100%;
      height: auto;
      display: block;
    }

    .ai-shot-features {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
    }

    .ai-shot-feature-item {
      display: flex;
      gap: 1rem;
      padding: 1.8rem 1.5rem;
      background: var(--card-bg);
      border: 1px solid var(--glass-border);
      border-radius: 16px;
      transition: all 0.4s ease;
      backdrop-filter: blur(20px);
    }

    .ai-shot-feature-item:hover {
      transform: translateY(-4px);
      border-color: rgba(0, 153, 255, 0.3);
      box-shadow: var(--shadow-md);
    }

    .ai-shot-feature-icon {
      width: 48px;
      height: 48px;
      flex-shrink: 0;
      background: rgba(0, 153, 255, 0.1);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #0099FF;
    }

    .ai-shot-feature-icon svg {
      width: 24px;
      height: 24px;
      fill: currentColor;
    }

    .ai-shot-feature-content h4 {
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--text-primary);
      margin-bottom: 0.5rem;
    }

    .ai-shot-feature-content p {
      font-size: 0.95rem;
      color: var(--text-secondary);
      line-height: 1.6;
      margin: 0;
    }

    /* 移动端适配 */
    @media (max-width: 968px) {
      .ai-shot-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }
    }
