.result-section-title {
          float: left;
          padding: 1rem;
          display: flex;
          align-items: center;
          gap: 8px;
        }
        .result-section-title .icon {
          width: 1.125em;
          height: 1.125em;
          flex-shrink: 0;
        }

        .info-tags {
          display: flex;
          flex-wrap: wrap;
          gap: 6px;
        }
        .info-tag {
          display: inline-flex;
          align-items: center;
          padding: 3px 10px;
          background: #fff;
          border: 2px solid #e8edf8;
          border-radius: 4px;
          font-size: 13px;
          line-height: 1.4;
        }
        .info-tag--ok { border-color: #b8dfc8; }
        .info-tag--hit { border-color: #ffcc80; }
        .info-tag-name { color: #666; }
        .info-tag-name::after {
          content: '·';
          margin: 0 5px;
          color: #d0d7e8;
        }
        .info-tag-val {
          display: inline-flex;
          align-items: center;
          line-height: 1;
        }
        .info-status-icon {
          width: 14px;
          height: 14px;
          display: block;
          flex-shrink: 0;
        }
        .info-meta {
          margin: 8px 0 0;
          font-size: 14px;
          line-height: 1.5;
          color: #333;
        }
        .info-meta-k { color: #666; }
        .info-meta-k::after { content: '：'; }
        .info-sub {
          color: #666;
          font-size: 13px;
        }
        .info-empty { color: #9d9d9d; }

        .abuse-grid {
          display: grid;
          grid-template-columns: 1fr 1fr;
          gap: 0 24px;
          font-size: 14px;
          line-height: 1.5;
          color: #333;
        }
        .abuse-cell {
          display: flex;
          align-items: flex-start;
          gap: 10px;
          padding: 7px 0;
          border-bottom: 1px solid #eef2f8;
        }
        .abuse-cell--full { grid-column: 1 / -1; }
        .abuse-k {
          width: 30px;
          flex-shrink: 0;
          color: #666;
          font-size: 13px;
        }
        .abuse-k--wide { width: 56px; }
        .abuse-v {
          flex: 1;
          min-width: 0;
          word-break: break-word;
        }
        .abuse-v a {
          color: var(--primary-blue);
          text-decoration: none;
        }
        .abuse-v a:hover { text-decoration: underline; }

@media (max-width: 640px) {
          .abuse-grid {
            grid-template-columns: 1fr;
            gap: 0;
          }
        }

        .fold-box {
          position: relative;
          overflow: hidden;
        }
        .fold-switch { display: none; }
        .fold-box-body {
          max-height: 65px;
          overflow: hidden;
          transition: max-height 0.35s ease;
        }
        .fold-switch:checked + * + .fold-box-body {
          max-height: 1000px;
        }
        .fold-box-mask {
          position: absolute;
          left: 0;
          right: 0;
          bottom: 0;
          height: 30px;
          display: flex;
          align-items: center;
          justify-content: center;
          cursor: pointer;
          background: linear-gradient(to bottom, rgb(246 248 255 / 50%) 0%, rgb(246 248 255) 100%);
          transition: transform 0.3s;
        }
        .fold-switch:checked ~ .fold-box-mask svg {
          transform: rotate(180deg);
        }

        .fraud-dot {
          display: inline-block;
          width: 14px;
          height: 14px;
          border-radius: 50%;
          transition: transform 0.25s ease, background 0.25s ease;
        }
        .fraud-score {
          font-weight: bold;
          transition: opacity 0.3s ease;
        }
        .fraud-summary {
          margin-top: 4px;
          font-size: 1em;
          color: #666;
          max-width: 600px;
          line-height: 1.4;
          transition: opacity 0.4s ease;
        }
        .pulse { animation: pulse 1.2s infinite; }
@keyframes pulse {
          0% { box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.25); }
          70% { box-shadow: 0 0 0 8px rgba(0, 0, 0, 0); }
          100% { box-shadow: 0 0 0 0 rgba(0, 0, 0, 0); }
        }

#searchBtn {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .search-bar .primary-button .button-content {
            width: 18px;
            height: 18px;
            position: relative;
        }

        .search-bar .primary-button .spinner {
            display: none;
            width: 18px;
            height: 18px;
            margin: 0;
            border-width: 2px;
            box-sizing: border-box;
            flex-shrink: 0;
            animation: spin 1s linear infinite;
        }

        .search-bar .primary-button.is-loading {
            opacity: 0.88;
            pointer-events: none;
        }

        .search-bar .primary-button.is-loading .spinner {
            display: block;
        }

        .search-bar .primary-button.is-loading .button-text {
            display: none;
        }
