   body {
      background-color: #020711;
      color: #e4ebff;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }

    .buy-hero {
      background: radial-gradient(circle at top left, #4f8bff 0%, #153b80 40%, #040816 100%);
      padding: 3rem 1.5rem;
      text-align: center;
      color: #f5f7ff;
    }

    .buy-hero h1 {
      font-size: clamp(2rem, 3vw, 2.6rem);
      margin-bottom: 0.75rem;
    }

    .buy-hero p {
      max-width: 760px;
      margin: 0 auto;
      font-size: 0.95rem;
      opacity: 0.9;
    }

    .buy-grid {
      max-width: 1100px;
      margin: 2.5rem auto 3rem auto;
      padding: 0 1.5rem;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .buy-item {
      border-radius: 16px;
      background: linear-gradient(135deg, #070b12 0%, #0e1c2f 40%, #071320 100%);
      box-shadow: 0 14px 34px rgba(0, 0, 0, 0.55);
      border: 1px solid rgba(80, 150, 255, 0.4);
      padding: 1.75rem 1.5rem;
    }

    .buy-item.suite {
      border-width: 2px;
      border-color: #ffd166;
      position: relative;
    }

    .buy-item-label {
      position: absolute;
      top: -0.9rem;
      left: 1.5rem;
      background: linear-gradient(135deg, #ffd166, #ff9f1c);
      color: #201500;
      padding: 0.2rem 0.75rem;
      border-radius: 999px;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .buy-item-header {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 0.75rem;
      align-items: baseline;
      margin-bottom: 0.6rem;
    }

    .buy-item-title {
      font-size: 1.1rem;
      margin: 0;
    }

    .buy-item-price {
      font-size: 1rem;
      font-weight: 600;
      color: #9ad0ff;
    }

    .buy-item-desc {
      font-size: 0.9rem;
      color: #c4d1ff;
      margin-bottom: 0.9rem;
    }

    .buy-item-list {
      font-size: 0.85rem;
      margin-bottom: 1rem;
    }

    .buy-item-list li + li {
      margin-top: 0.2rem;
    }

    .buy-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      align-items: center;
      justify-content: space-between;
    }

    .btn-gradient {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.55rem 1.4rem;
      border-radius: 999px;
      font-size: 0.9rem;
      font-weight: 600;
      border: none;
      cursor: pointer;
      background-image: linear-gradient(135deg, #4f8bff, #78c4ff);
      color: #041024;
      text-decoration: none;
      box-shadow: 0 6px 20px rgba(0, 119, 255, 0.45);
      transition: transform 0.12s ease, box-shadow 0.12s ease, filter 0.12s ease;
    }

    .btn-gradient:hover {
      transform: translateY(-1px);
      box-shadow: 0 10px 26px rgba(0, 119, 255, 0.6);
      filter: brightness(1.05);
      color: #041024;
    }

    .buy-link-secondary {
      font-size: 1rem;
      /* opacity: 0.85; */
      text-decoration: none;
      cursor: pointer;
      color: #8fa0cf;
    }

    .buy-footer {
      text-align: center;
      padding: 2rem 1.5rem 3rem 1.5rem;
      font-size: 0.85rem;
      color: #8fa0cf;
    }

    @media (max-width: 768px) {
      .buy-actions {
        flex-direction: column;
        align-items: flex-start;
      }
    }