
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    font-size: 14px;
    line-height: 1.5;
  }
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }
  .card {
    background: #fff;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 16px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
  }
  .section-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  .album-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #666;
    font-size: 14px;
  }
  .album-header .icon {
    margin: 0 6px;
    color: #999;
  }
  .company-album img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
  }
  .company-album table {
    border-collapse: collapse;
    width: 100%;
    border-color: #ffffff;
  }
  .company-album td {
    border: none;
    padding: 0;
  }
  .basic-info {
    margin-top: 24px;
  }
  .info-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 20px 0 16px;
  }
  .intro-row {
    display: flex;
    gap: 24px;
    margin-bottom: 16px;
  }
  .intro-text {
    flex: 2;
    color: #555;
    font-size: 14px;
    line-height: 1.6;
  }
  .intro-meta {
    flex: 1;
    border-left: 1px solid #eee;
    padding-left: 24px;
  }
  .meta-item {
    display: flex;
    margin-bottom: 10px;
    font-size: 14px;
  }
  .meta-label {
    color: #888;
    min-width: 130px;
  }
  .meta-value {
    color: #333;
  }
  .info-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 16px;
    border: 1px solid #eee;
  }
  .info-table td {
    padding: 16px 12px;
    border: 1px solid #eee;
    vertical-align: middle;
    font-size: 14px;
  }
  .info-table .label {
    color: #888;
    width: 22%;
    background: #fafafa;
  }
  .info-table .value {
    color: #333;
    width: 28%;
  }
  .info-table a {
    color: #1a73e8;
    text-decoration: underline;
  }
  .markets-table-wrapper {
    margin-top: 24px;
    border: 1px solid #eee;
    border-radius: 4px;
    overflow: hidden;
  }
  .markets-table-title {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    padding: 14px 16px;
    border-bottom: 1px solid #eee;
    background: #fff;
  }
  .markets-table {
    width: 100%;
    border-collapse: collapse;
  }
  .markets-table thead th {
    background: #fafafa;
    color: #888;
    font-weight: 500;
    text-align: left;
    padding: 12px 16px;
    font-size: 13px;
    border-bottom: 1px solid #eee;
  }
  .markets-table tbody td {
    padding: 14px 16px;
    border-bottom: 1px solid #f3f3f3;
    font-size: 14px;
    color: #333;
    vertical-align: middle;
  }
  .markets-table tbody tr:last-child td {
    border-bottom: none;
  }
  .markets-table tbody tr.muted td {
    color: #bbb;
  }
  .markets-table .col-market { width: 30%; }
  .markets-table .col-revenue { width: 25%; color: #333; }
  .markets-table .col-product { width: 25%; }
  .markets-table .col-verified { width: 20%; }
  .view-more-wrapper {
    text-align: center;
    margin-top: 24px;
  }
  .view-more-btn {
    background: #fff;
    border: 1px solid #ccc;
    color: #333;
    padding: 10px 28px;
    border-radius: 24px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s;
  }
  .view-more-btn:hover {
    border-color: #1a73e8;
    color: #1a73e8;
  }
  .buyer-interaction {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding-top: 8px;
  }
  .interaction-item {
    text-align: center;
  }
  .interaction-label {
    color: #888;
    font-size: 14px;
    margin-bottom: 8px;
  }
  .interaction-value {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
  }
  .interaction-value .icon {
    margin-right: 6px;
    font-weight: normal;
  }
  .divider {
    width: 1px;
    background: #eee;
  }
  .floating-chat {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #00c853;
    color: #fff;
    padding: 10px 18px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    cursor: pointer;
    z-index: 999;
  }
