
  html {
    scroll-behavior: smooth;
  }

  .x60-support-page {
    width: 100%;
    background: #fff;
    font-family: Arial, Helvetica, sans-serif;
    color: #111;
  }

  .x60-hero {
    width: 100%;
    padding: 70px 24px 60px;
    box-sizing: border-box;
  }

  .x60-hero-container {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 480px 1fr;
    gap: 90px;
    align-items: start;
  }

  .x60-gallery-main {
    width: 480px;
    height: 480px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .x60-main-product-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }

  .x60-product-info h1 {
    margin: 0 0 34px;
    font-size: 38px;
    line-height: 1.1;
    font-weight: 700;
    color: #000;
    letter-spacing: -1px;
    text-transform: uppercase;
  }

  .x60-sold-date {
    margin: 0 0 16px;
    font-size: 15px;
    color: #777;
  }

  .x60-product-desc {
    margin: 0 0 22px;
    font-size: 17px;
    line-height: 1.55;
    color: #111;
  }

  .x60-card-grid {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .x60-card {
    position: relative;
    height: 120px;
    padding: 18px 16px;
    background: #f4f5f6;
    border-radius: 5px;
    text-decoration: none;
    color: #111;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.25s ease;
  }

  .x60-card:hover {
    background: #eceeef;
    transform: translateY(-2px);
  }

  .x60-card-icon {
    width: 32px;
    height: 32px;
    color: #000;
  }

  .x60-card-icon svg {
    width: 32px;
    height: 32px;
    stroke: currentColor;
  }

  .x60-card-title {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 400;
    color: #111;
  }

  .x60-card-arrow {
    position: absolute;
    right: 16px;
    bottom: 16px;
    width: 36px;
    height: 36px;
    background: #d8dadd;
    border-radius: 50%;
  }

  .x60-card-arrow::after {
    content: "";
    position: absolute;
    left: 12px;
    top: 9px;
    width: 11px;
    height: 11px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
  }

  @media (max-width: 900px) {
    .x60-hero {
      padding: 40px 16px;
    }

    .x60-hero-container {
      grid-template-columns: 1fr;
      gap: 40px;
    }

    .x60-gallery-main {
      width: 100%;
      height: auto;
      aspect-ratio: 1 / 1;
    }

    .x60-product-info h1 {
      font-size: 32px;
    }

    .x60-card-grid {
      grid-template-columns: 1fr;
      gap: 16px;
    }
  }
