.go-page {
  --eq-blue: #015AFF;
  --eq-green: #16B36A;
  --eq-orange: #F28C38;
  --eq-text: #0b1020;
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #ffffff 0, #f4f7ff 48%, #e5ecff 100%);
  color: var(--eq-text);
  -webkit-font-smoothing: antialiased;
}

.go-page *,
.go-page *::before,
.go-page *::after {
  box-sizing: border-box;
}

.go-page a {
  color: inherit;
  text-decoration: none;
}

.go-page-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 24px 12px 40px;
}

.go-shell {
  width: 100%;
  max-width: 520px;
}

.go-card {
  position: relative;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(1, 90, 255, 0.15), 0 4px 10px rgba(0, 0, 0, 0.06);
  padding: 22px 20px 24px;
  overflow: hidden;
}

.go-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 0 0, rgba(1, 90, 255, 0.06), transparent 55%),
    radial-gradient(circle at 100% 0, rgba(22, 179, 106, 0.06), transparent 55%),
    radial-gradient(circle at 0 100%, rgba(242, 140, 56, 0.05), transparent 60%);
  z-index: 0;
  pointer-events: none;
}

.go-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.go-header-main {
  flex: 1 1 auto;
  text-align: center;
}

.go-avatar-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.go-avatar {
  width: 112px;
  height: 112px;
  border-radius: 20px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.22), 0 0 0 1px rgba(148, 163, 184, 0.4);
  object-fit: contain;
  background: #0b1020;
}

.go-subhandle {
  font-size: 0.86rem;
  color: #6b7280;
  margin-bottom: 4px;
}

.go-share-trigger {
  border: none;
  background: rgba(15, 23, 42, 0.06);
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #111827;
  transition: background 0.16s ease, transform 0.12s ease, box-shadow 0.16s ease;
  flex-shrink: 0;
}

.go-share-trigger i {
  font-size: 1.05rem;
}

.go-share-trigger:hover {
  background: rgba(1, 90, 255, 0.14);
  box-shadow: 0 4px 12px rgba(1, 90, 255, 0.28);
  transform: translateY(-1px);
}

.go-share-trigger:active {
  transform: translateY(0);
  box-shadow: none;
}

.go-section-title {
  position: relative;
  z-index: 1;
  margin-top: 10px;
  margin-bottom: 16px;
  text-align: center;
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--eq-blue);
}

.go-offers-wrap {
  position: relative;
  z-index: 1;
  margin-top: 4px;
}

.go-offer-card {
  width: 100%;
  border-radius: 10px;
  padding: 12px 14px 11px;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.7);
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.12);
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.14s ease, box-shadow 0.14s ease, border-color 0.14s ease;
}

.go-offer-card:first-of-type {
  border-color: rgba(1, 90, 255, 0.85);
  box-shadow: 0 10px 20px rgba(1, 90, 255, 0.25), 0 4px 8px rgba(15, 23, 42, 0.12);
}

.go-offer-card:hover {
  transform: translateY(-2px);
  border-color: rgba(1, 90, 255, 0.9);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.16);
}

.go-offer-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.go-offer-row-top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}

.go-offer-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 14px;
  border-radius: 8px;
  background: linear-gradient(135deg, #0f68ff, #37a4ff);
  font-size: 0.78rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.04em;
}

.go-offer-specs-basic {
  font-size: 0.9rem;
  font-weight: 700;
  color: #374151;
  margin: 8px 0 2px;
}

.go-offer-pricing {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  margin-top: 4px;
}

.go-price-old {
  font-size: 0.8rem;
  color: #9ca3af;
  text-decoration: line-through;
}

.go-price-old span {
  font-weight: 600;
}

.go-price-new {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--eq-green);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.go-price-new-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 7px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  background: rgba(242, 140, 56, 0.12);
  color: #9a3412;
}

.go-price-new-badge i {
  font-size: 0.78rem;
}

.go-social-wrap {
  margin-top: 18px;
  position: relative;
  z-index: 1;
}

.go-social-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: #4b5563;
  text-align: center;
  margin-bottom: 8px;
}

.go-social-icons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.go-social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.go-social-icons a img {
  display: block;
  width: 28px;
  height: 28px;
}

.go-social-icons a:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.18);
  background: rgba(255, 255, 255, 0.5);
}

.go-footer {
  margin-top: 18px;
  padding-top: 10px;
  border-top: 1px solid rgba(209, 213, 219, 0.9);
  font-size: 0.74rem;
  color: #9ca3af;
  text-align: center;
}

.go-footer a {
  color: #6b7280;
  font-weight: 500;
}

.go-footer a:hover {
  color: var(--eq-blue);
}

.go-share-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  z-index: 60;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}

.go-share-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.go-share-modal {
  width: 100%;
  max-width: 460px;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(148, 163, 184, 0.4);
  padding: 20px 20px 18px;
  position: relative;
}

.go-share-close {
  position: absolute;
  top: 10px;
  right: 10px;
  border: none;
  background: rgba(148, 163, 184, 0.18);
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #111827;
  transition: background 0.16s ease, transform 0.12s ease;
}

.go-share-close:hover {
  background: rgba(15, 23, 42, 0.12);
  transform: translateY(-1px);
}

.go-share-header {
  text-align: center;
  margin-bottom: 12px;
}

.go-share-title {
  font-size: 0.98rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: #0f172a;
}

.go-share-sub {
  font-size: 0.78rem;
  color: #6b7280;
}

.go-share-user-card {
  margin-top: 8px;
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.go-share-user-card img {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  object-fit: contain;
  background: #0b1020;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.25), 0 0 0 1px rgba(148, 163, 184, 0.4);
}

.go-share-user-text {
  text-align: center;
}

.go-share-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: #111827;
}

.go-share-url {
  font-size: 0.76rem;
  color: #6b7280;
}

.go-share-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 6px;
}

.go-share-item {
  flex: 0 0 auto;
  width: 80px;
  text-align: center;
}

.go-share-iconimg {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: transparent;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: none;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.go-share-iconimg img {
  width: 32px;
  height: 32px;
  display: block;
}

.go-share-iconimg:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.24);
  background: rgba(248, 250, 252, 0.9);
}

.go-share-btn-solid {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: none;
  outline: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.35);
  transition: transform 0.16s ease, box-shadow 0.16s ease, opacity 0.16s ease, background 0.16s ease;
}

.go-share-btn-solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.4);
}

.go-share-btn-solid:active {
  transform: translateY(0);
}

.go-share-btn-copy {
  background: linear-gradient(135deg, #111827, #4b5563);
}

.go-share-btn-email {
  background: #f97316;
}

.go-share-label {
  font-size: 0.7rem;
  color: #4b5563;
  margin-top: 4px;
}

.go-toast {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  background: rgba(15, 23, 42, 0.92);
  color: #f9fafb;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  display: none;
  align-items: center;
  gap: 6px;
  z-index: 80;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.45);
}

.go-toast.is-visible {
  display: inline-flex;
}

.go-toast i {
  font-size: 0.86rem;
  color: #22c55e;
}

@media (max-width: 480px) {
  .go-card {
    padding: 18px 16px 20px;
    border-radius: 20px;
  }

  .go-avatar {
    width: 100px;
    height: 100px;
  }

  .go-offer-card {
    padding: 11px 12px 10px;
  }

  .go-share-modal {
    padding: 18px 16px 16px;
  }
}
