.ai-card-gradient-text {
      background: linear-gradient(90deg, #ba4eec 0%, #0e1bca 100%);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      color: transparent;
    }

    .ai-image-shadow {
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    }

    .ai-brand-gradient-text {
      background: linear-gradient(90deg, #8b3dff 0%, #1f5eff 50%, #00cfff 100%);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      color: transparent;
    }

    #table_ai_features.table-grid {
      --grid-columns: 3;
      display: grid;
      grid-template-columns: 1.8fr 1fr 1fr;
      border: 1px solid #e5e9f2;
      border-radius: 14px;
      overflow: hidden;
      background: #ffffff;
      min-width: 760px;
      position: relative;
      isolation: isolate;
    }

    #table_ai_features .table-grid-row {
      display: contents;
    }

    #table_ai_features .table-grid-data {
      position: relative;
      z-index: 2;
      padding: 14px 16px;
      border-right: 1px solid #e5e9f2;
      border-bottom: 1px solid #e5e9f2;
      text-align: center;
      background: transparent;
    }

    #table_ai_features .table-grid-data:nth-child(3n) {
      border-right: none;
    }

    #table_ai_features .table-grid-row:first-child .table-grid-data {
      background: #f7f8fc;
      font-weight: 600;
    }

    #table_ai_features .table-grid-row:last-child .table-grid-data {
      border-bottom: none;
    }

    #table_ai_features .grid-highlight-border {
      position: absolute;
      top: 8px;
      left: 0;
      right: 0;
      bottom: 8px;
      margin-left: 8px;
      margin-right: 8px;
      border: none;
      background: transparent;
      border-radius: 12px;
      z-index: 1;
      pointer-events: none;
    }

    @media (max-width: 767.98px) {
      #table_ai_features.table-grid {
        min-width: 680px;
      }
    }

    .ai-prompt-cards {
      position: relative;
      overflow: hidden;
      margin-left: 0;
      margin-right: 0;
      padding: 4px 0;
      display: flex;
      flex-direction: column;
      gap: 12px;
      mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
      -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
    }

    .ai-prompt-cards-track {
      display: flex;
      align-items: stretch;
      gap: 12px;
      width: max-content;
      animation: aiHorizontalMarquee 30s linear infinite;
      will-change: transform;
    }

    .ai-prompt-cards:hover .ai-prompt-cards-track {
      animation-play-state: paused;
    }

    .ai-prompt-cards-track.is-reverse {
      animation-direction: reverse;
      animation-duration: 34s;
    }

    .ai-prompt-cards-track>div {
      flex: 0 0 320px;
      max-width: 320px;
      margin-bottom: 0 !important;
      padding-left: 0;
      padding-right: 0;
    }

    .ai-prompt-cards .card {
      height: 100%;
      background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
      border: 1px solid #e8f0fb;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .ai-prompt-cards .card:hover {
      transform: translateY(-4px);
      box-shadow: 0 14px 24px rgba(16, 27, 71, 0.14);
    }

    @keyframes aiHorizontalMarquee {
      from {
        transform: translateX(0);
      }

      to {
        transform: translateX(-50%);
      }
    }

    .chat-stream {
      margin-top: 16px;
      padding: 14px;
      border: 1px solid #e6ecf5;
      border-radius: 14px;
      background: #f8fbff;
      display: flex;
      flex-direction: column;
      gap: 10px;
      transform: translateY(0) !important;
    }

    .chat-msg {
      display: flex;
      align-items: flex-end;
      gap: 8px;
      opacity: 0;
      transform: translateY(10px);
      transition: opacity 0.35s ease, transform 0.35s ease;
      will-change: opacity, transform;
    }

    .chat-msg.is-revealed {
      opacity: 1;
      transform: translateY(0);
    }

    .chat-msg-user {
      justify-content: flex-end;
    }

    .chat-msg-bot {
      justify-content: flex-start;
    }

    .chat-bubble {
      max-width: 88%;
      padding: 10px 12px;
      border-radius: 12px;
      font-size: 13px;
      line-height: 1.45;
      box-shadow: 0 4px 12px rgba(17, 24, 39, 0.07);
    }

    .chat-bubble-user {
      background: #daf7e8;
      color: #0e4f37;
      border-bottom-right-radius: 4px;
    }

    .chat-bubble-bot {
      background: #ffffff;
      color: #24324a;
      border-bottom-left-radius: 4px;
      border: 1px solid #e5ebf3;
    }

    .chat-avatar {
      width: 26px;
      height: 26px;
      border-radius: 50%;
      object-fit: cover;
      background: #dfe7f3;
      flex: 0 0 26px;
    }

    @media (max-width: 767.98px) {
      .ai-prompt-cards-track>div {
        flex-basis: 270px;
        max-width: 270px;
      }

      .chat-stream {
        margin-top: 12px;
        padding: 12px;
      }

      .chat-bubble {
        max-width: 92%;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .ai-prompt-cards {
        overflow-x: auto;
        mask-image: none;
        -webkit-mask-image: none;
      }

      .ai-prompt-cards-track {
        animation: none;
      }

      .ai-prompt-cards .card {
        transition: none;
      }

      .chat-msg {
        transition: none;
        transform: none;
      }
    }