/* ── RESET ─────────────────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── BASE ──────────────────────────────────────────────── */
body {
  background: #0a0d0f;
  color: #e8edf2;
  font-family: 'Barlow', system-ui, sans-serif;
  line-height: 1.5;
  min-height: 100vh;
  overflow-x: hidden;
}
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(57,255,106,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57,255,106,.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

/* ── LOGO ──────────────────────────────────────────────── */
.gc-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .02em;
  cursor: pointer;
  user-select: none;
}
.gc-logo span { color: #39ff6a; }

/* ── TOPBAR ────────────────────────────────────────────── */
.gc-topbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100; height: 60px;
  background: rgba(10,13,15,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(57,255,106,.12);
}
.gc-topbar-inner {
  display: flex; align-items: center; gap: 20px;
  height: 100%; max-width: 1280px; margin: 0 auto; padding: 0 32px;
}
.gc-search-wrap {
  flex: 1; display: flex; align-items: center; gap: 10px;
  height: 38px; background: #0f1318;
  border: 1px solid rgba(57,255,106,.14); border-radius: 6px;
  padding: 0 14px; transition: border-color .2s, box-shadow .2s;
}
.gc-search-wrap:focus-within {
  border-color: rgba(57,255,106,.45);
  box-shadow: 0 0 0 2px rgba(57,255,106,.07);
}
.gc-search-input {
  flex: 1; background: none; border: none; outline: none;
  color: #e8edf2; font-family: 'Barlow', sans-serif; font-size: 14px;
}
.gc-search-input::placeholder { color: #6b7a8a; }
.gc-topnav { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.gc-nav-link {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 14px; background: none; border: none;
  color: #6b7a8a; font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 14px; letter-spacing: .05em;
  text-transform: uppercase; cursor: pointer; border-radius: 4px;
  transition: color .15s, background .15s;
}
.gc-nav-link:hover { color: #e8edf2; background: rgba(255,255,255,.04); }
.gc-nav-link.active { color: #39ff6a; }
.gc-nav-count {
  background: #39ff6a; color: #0a0d0f;
  font-size: 11px; font-weight: 800; min-width: 18px; height: 18px;
  border-radius: 9px; display: flex; align-items: center; justify-content: center; padding: 0 4px;
}
.gc-avatar {
  width: 34px; height: 34px; background: #39ff6a; border: none;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: opacity .15s, box-shadow .15s;
}
.gc-avatar:hover { opacity: .85; box-shadow: 0 0 0 3px rgba(57,255,106,.2); }

/* ── LAYOUT ────────────────────────────────────────────── */
.gc-main { position: relative; z-index: 1; padding-top: 60px; min-height: 100vh; }
.gc-page { max-width: 1280px; margin: 0 auto; padding: 40px 48px 80px; }
.gc-page-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 28px; gap: 16px;
}
.gc-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: #39ff6a; margin-bottom: 6px;
}
.gc-page-title {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  font-size: 44px; text-transform: uppercase; line-height: .95; letter-spacing: -.01em;
}
.gc-result-count { font-size: 13px; color: #6b7a8a; flex-shrink: 0; padding-bottom: 4px; }

/* ── GAME GRID ─────────────────────────────────────────── */
.gc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 14px;
}

/* ── GAME CARD ─────────────────────────────────────────── */
.gc-card {
  background: #0f1318; border: 1px solid rgba(57,255,106,.1);
  border-radius: 8px; overflow: hidden; cursor: pointer;
  transition: border-color .2s, transform .15s, box-shadow .2s;
  text-decoration: none; color: #e8edf2; display: block;
}
.gc-card:link, .gc-card:visited, .gc-card:hover, .gc-card:active {
  color: #e8edf2;
  text-decoration: none;
}
.gc-card:hover { border-color: rgba(57,255,106,.38); transform: translateY(-2px); box-shadow: 0 14px 36px rgba(0,0,0,.45); }
.gc-card-art { position: relative; aspect-ratio: 460/215; overflow: hidden; background: #141a20; }
.gc-card-art img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s; }
.gc-card:hover .gc-card-art img { transform: scale(1.05); }
.gc-card-disc {
  position: absolute; top: 8px; right: 8px;
  background: #39ff6a; color: #0a0d0f;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: 12px; padding: 2px 7px; border-radius: 3px; letter-spacing: .04em;
}
.gc-wish-btn {
  position: absolute; top: 8px; left: 8px;
  background: rgba(10,13,15,.75); border: none; border-radius: 4px;
  width: 30px; height: 30px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; opacity: 0; transition: opacity .15s, background .15s;
}
.gc-card:hover .gc-wish-btn { opacity: 1; }
.gc-wish-btn.on { opacity: 1; background: #39ff6a; }
.gc-card-body { padding: 12px 14px 14px; }
.gc-card-title {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 15px; text-transform: uppercase; letter-spacing: .02em;
  line-height: 1.2; margin-bottom: 3px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  color: #e8edf2;
}
.gc-card-meta { font-size: 12px; color: #6b7a8a; margin-bottom: 10px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.gc-card-foot { display: flex; align-items: center; justify-content: space-between; }
.gc-card-price { display: flex; align-items: baseline; gap: 4px; }
.gc-from { font-size: 11px; color: #6b7a8a; }
.gc-card-final { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 20px; color: #39ff6a; line-height: 1; }

/* ── STORE BADGE ───────────────────────────────────────── */
.gc-store-badge {
  border-radius: 6px; display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  letter-spacing: .04em; flex-shrink: 0; text-transform: uppercase;
}

/* ── TAGS + DISCOUNT ───────────────────────────────────── */
.gc-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 22px; }
.gc-tag {
  display: inline-block; padding: 3px 10px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  border-radius: 2px; font-size: 11px; color: #6b7a8a;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 600;
  text-transform: uppercase; letter-spacing: .06em;
}
.gc-discount {
  background: #39ff6a; color: #0a0d0f;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: 12px; padding: 2px 7px; border-radius: 3px; flex-shrink: 0;
}

/* ── PRICE TABLE ───────────────────────────────────────── */
.gc-section-label {
  font-size: 11px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: #39ff6a; margin-bottom: 12px;
}
.gc-price-table { border: 1px solid rgba(57,255,106,.12); border-radius: 8px; overflow: hidden; margin-bottom: 14px; }
.gc-price-row {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  border: none; border-bottom: 1px solid rgba(255,255,255,.04);
  border-left: 3px solid transparent;
  background: #0f1318; width: 100%; cursor: pointer;
  color: #e8edf2; transition: background .15s; text-align: left;
  text-decoration: none;
}
.gc-price-row:last-child { border-bottom: none; }
.gc-price-row:hover { background: rgba(57,255,106,.04); }
.gc-price-row.best { background: rgba(57,255,106,.07); border-left-color: #39ff6a; }
.gc-price-info { flex: 1; min-width: 0; }
.gc-store-name { font-size: 14px; font-weight: 600; display: flex; align-items: center; gap: 6px; }
.gc-star { color: #39ff6a; font-size: 11px; }
.gc-price-orig { font-size: 12px; color: #6b7a8a; text-decoration: line-through; margin-top: 1px; }
.gc-price-final {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: 22px; line-height: 1; margin-left: auto;
}
.gc-price-row.best .gc-price-final { color: #39ff6a; }
.gc-fineprint { font-size: 12px; color: #6b7a8a; line-height: 1.65; }

/* ── BUTTONS ───────────────────────────────────────────── */
.gc-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 20px; border-radius: 4px;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 14px; letter-spacing: .06em; text-transform: uppercase;
  cursor: pointer; border: none; transition: all .2s;
}
.gc-btn-primary { background: #39ff6a; color: #0a0d0f; }
.gc-btn-primary:hover:not(:disabled) { background: #fff; box-shadow: 0 8px 24px rgba(57,255,106,.3); }
.gc-btn-outline { background: transparent; color: #39ff6a; border: 1px solid rgba(57,255,106,.45); }
.gc-btn-outline:hover:not(:disabled) { background: rgba(57,255,106,.08); border-color: #39ff6a; }
.gc-btn:disabled { opacity: .4; cursor: not-allowed; }

/* ── INPUTS ────────────────────────────────────────────── */
.gc-field-label {
  display: block; font-size: 11px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: #39ff6a; margin-bottom: 6px;
}
.gc-input {
  width: 100%; padding: 12px 14px;
  background: #0a0d0f; border: 1px solid rgba(57,255,106,.14);
  border-radius: 6px; color: #e8edf2; font-family: 'Barlow', sans-serif;
  font-size: 15px; transition: border-color .2s, box-shadow .2s;
}
.gc-input:focus { outline: none; border-color: #39ff6a; box-shadow: 0 0 0 2px rgba(57,255,106,.12); }
.gc-target-row { position: relative; }
.gc-target-cur { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: #6b7a8a; font-size: 16px; pointer-events: none; }
.gc-target-input { padding-left: 28px !important; }

/* ── GAME DETAIL ───────────────────────────────────────── */
.gc-back {
  display: inline-flex; align-items: center; gap: 6px;
  color: #6b7a8a; font-size: 13px; font-weight: 500;
  background: none; border: none; cursor: pointer;
  margin-bottom: 28px; padding: 0; transition: color .2s;
}
.gc-back:hover { color: #39ff6a; }
.gc-detail { display: grid; grid-template-columns: 1fr 316px; gap: 28px; align-items: flex-start; }
.gc-detail-hero {
  aspect-ratio: 460/215; border-radius: 8px; overflow: hidden;
  border: 1px solid rgba(57,255,106,.12); margin-bottom: 24px; background: #141a20;
}
.gc-detail-hero img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gc-detail-title {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  font-size: 46px; text-transform: uppercase; line-height: .95;
  letter-spacing: -.01em; margin-bottom: 8px;
}
.gc-detail-meta { font-size: 14px; color: #6b7a8a; margin-bottom: 16px; }
.gc-detail-side { position: sticky; top: 80px; display: flex; flex-direction: column; gap: 14px; }

/* ── SIDEBAR CARDS ─────────────────────────────────────── */
.gc-buy-card { background: #0f1318; border: 1px solid rgba(57,255,106,.18); border-radius: 8px; padding: 22px; }
.gc-buy-label { font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: #6b7a8a; margin-bottom: 6px; }
.gc-buy-price { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 54px; color: #39ff6a; line-height: 1; margin-bottom: 10px; }
.gc-buy-store { display: flex; align-items: center; gap: 8px; font-size: 14px; margin-bottom: 18px; }
.gc-alert-card { background: #0f1318; border: 1px solid rgba(57,255,106,.1); border-radius: 8px; padding: 22px; }
.gc-alert-copy { font-size: 13px; color: #6b7a8a; margin-bottom: 16px; line-height: 1.65; }

/* ── LOGIN ─────────────────────────────────────────────── */
.gc-login {
  min-height: 100vh; display: flex; align-items: center;
  justify-content: center; padding: 24px; position: relative; z-index: 1;
}
.gc-login-glow {
  position: fixed; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 700px; height: 700px; pointer-events: none; z-index: 0;
  background: radial-gradient(circle, rgba(57,255,106,.07) 0%, transparent 70%);
}
.gc-login-card {
  position: relative; z-index: 1; width: 100%; max-width: 420px;
  background: #0f1318; border: 1px solid rgba(57,255,106,.15);
  border-radius: 12px; padding: 40px 36px; box-shadow: 0 40px 80px rgba(0,0,0,.5);
}
.gc-login-sub { font-size: 14px; color: #6b7a8a; margin: 8px 0 28px; line-height: 1.65; }
.gc-oauth {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 13px 20px; border-radius: 4px;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 15px;
  letter-spacing: .05em; text-transform: uppercase; cursor: pointer; border: none;
  transition: all .2s; margin-bottom: 10px;
}
.gc-oauth-steam { background: #39ff6a; color: #0a0d0f; }
.gc-oauth-steam:hover { background: #fff; box-shadow: 0 8px 24px rgba(57,255,106,.3); }
.gc-oauth-row { display: flex; gap: 10px; margin-bottom: 10px; }
.gc-oauth-sm { flex: 1; background: rgba(255,255,255,.04); color: #e8edf2; border: 1px solid rgba(255,255,255,.08); margin-bottom: 0; }
.gc-oauth-sm:hover { border-color: rgba(255,255,255,.2); background: rgba(255,255,255,.07); }
.gc-divider { display: flex; align-items: center; gap: 12px; margin: 20px 0; color: #6b7a8a; font-size: 12px; }
.gc-divider::before,.gc-divider::after { content: ''; flex: 1; height: 1px; background: rgba(57,255,106,.1); }
.gc-login-fine { font-size: 12px; color: #6b7a8a; text-align: center; margin-top: 20px; line-height: 1.6; }

/* ── IMPORT BANNER ─────────────────────────────────────── */
.gc-import { display: flex; align-items: center; gap: 16px; background: #0f1318; border: 1px solid rgba(57,255,106,.22); border-radius: 8px; padding: 18px 20px; margin-bottom: 28px; }
.gc-import-icon { width: 44px; height: 44px; background: rgba(57,255,106,.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.gc-import-text { flex: 1; min-width: 0; }
.gc-import-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 16px; text-transform: uppercase; letter-spacing: .03em; }
.gc-import-sub { font-size: 13px; color: #6b7a8a; margin-top: 2px; }

/* ── WISHLIST ──────────────────────────────────────────── */
.gc-wishlist { display: flex; flex-direction: column; gap: 4px; }
.gc-wish-row { display: flex; align-items: center; gap: 16px; padding: 14px 16px; background: #0f1318; border: 1px solid rgba(57,255,106,.1); border-radius: 6px; cursor: pointer; transition: background .15s, border-color .15s; }
.gc-wish-row:hover { background: rgba(57,255,106,.03); border-color: rgba(57,255,106,.24); }
.gc-wish-art { width: 80px; height: 38px; border-radius: 4px; object-fit: cover; flex-shrink: 0; background: #141a20; }
.gc-wish-main { flex: 1; min-width: 0; }
.gc-wish-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 16px; text-transform: uppercase; letter-spacing: .02em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.gc-wish-meta { font-size: 12px; color: #6b7a8a; }
.gc-wish-best { min-width: 110px; text-align: right; }
.gc-wish-best-label { font-size: 11px; color: #6b7a8a; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 2px; }
.gc-wish-best-price { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 18px; display: flex; align-items: center; gap: 5px; justify-content: flex-end; }
.gc-wish-target { font-size: 13px; color: #6b7a8a; min-width: 90px; text-align: right; flex-shrink: 0; }
.gc-wish-target.hit { color: #39ff6a; display: flex; align-items: center; gap: 4px; justify-content: flex-end; }
.gc-wish-remove { background: none; border: none; cursor: pointer; padding: 6px; border-radius: 4px; transition: background .15s; flex-shrink: 0; }
.gc-wish-remove:hover { background: rgba(255,255,255,.06); }

/* ── EMPTY STATE ───────────────────────────────────────── */
.gc-empty { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; padding: 80px 0; color: #6b7a8a; text-align: center; }

/* ── TOAST ─────────────────────────────────────────────── */
.gc-toast {
  position: fixed; bottom: 32px; left: 50%; transform: translateX(-50%);
  background: #141a20; border: 1px solid rgba(57,255,106,.28); color: #e8edf2;
  padding: 11px 22px; border-radius: 6px; font-size: 14px;
  z-index: 999; white-space: nowrap; box-shadow: 0 8px 32px rgba(0,0,0,.45);
  animation: gc-toast-in .2s ease;
}
@keyframes gc-toast-in { from { opacity:0; transform:translateX(-50%) translateY(8px); } }

/* ── TRANSITIONS ───────────────────────────────────────── */
.gc-fade { animation: gc-fade-in .22s ease; }
@keyframes gc-fade-in { from { opacity:0; transform:translateY(8px); } to { opacity:1; transform:translateY(0); } }

/* Site extensions (search dropdown, game page, cards) */
.gc-card-store { display: flex; align-items: center; justify-content: flex-end; }
.gc-section-label { color: var(--gc-muted, #6b7a8a); }
.gc-main { position: relative; z-index: 1; padding-top: 60px; min-height: 100vh; }

/* Search dropdown (hero + topbar) */
.gc-search-panel{position:absolute;top:calc(100% + 8px);left:0;right:0;background:var(--bg2);border:1px solid var(--border);border-radius:8px;max-height:380px;overflow-y:auto;z-index:60;display:none;box-shadow:0 18px 48px rgba(0,0,0,.55)}
.gc-search-panel.show{display:block}
.gc-search-hit{display:flex;align-items:center;gap:12px;padding:12px 14px;border-top:1px solid var(--border-soft);text-decoration:none;color:inherit;transition:background .15s}
.gc-search-hit:first-child{border-top:none}
.gc-search-hit:hover{background:rgba(57,255,106,.06)}
.gc-search-hit img{width:92px;height:34px;object-fit:cover;border-radius:4px;background:var(--bg3);flex-shrink:0}
.gc-search-hit-main{flex:1;min-width:0}
.gc-search-hit-title{font-size:14px;font-weight:600;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.gc-search-hit-meta{font-size:12px;color:var(--muted);margin-top:2px;display:flex;align-items:center;gap:8px}
.gc-search-empty{padding:16px;color:var(--muted);font-size:14px;text-align:center}

/* Hero search (landing) */
.gc-hero-search{position:relative;max-width:520px;margin-top:28px}
.gc-hero-search .gc-search-wrap{max-width:none;height:48px}

/* Similar games reuse gc-grid tighter */
.gc-similar-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(180px,1fr));gap:16px}
.gc-similar-card{background:var(--bg2);border:1px solid var(--border);border-radius:8px;overflow:hidden;text-decoration:none;color:inherit;transition:border-color .2s,transform .2s}
.gc-similar-card:hover{border-color:rgba(57,255,106,.35);transform:translateY(-2px)}
.gc-similar-card img{width:100%;aspect-ratio:460/215;object-fit:cover;background:var(--bg3)}
.gc-similar-card span{display:block;padding:10px 12px;font-family:var(--disp);font-weight:700;font-size:13px;text-transform:uppercase;letter-spacing:.02em;line-height:1.25}

.gc-loading{padding:80px 24px;text-align:center;color:var(--muted)}

/* Account nav + settings */
.gc-account-nav { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.gc-account-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 4px; font-size: 13px; font-weight: 600;
  text-decoration: none; color: #e8edf2; background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08); cursor: pointer; transition: all .15s;
  white-space: nowrap;
}
.gc-account-btn:hover { border-color: rgba(57,255,106,.35); color: #39ff6a; }
.gc-account-btn-primary { background: #39ff6a; color: #0a0d0f; border-color: transparent; }
.gc-account-btn-primary:hover { background: #fff; color: #0a0d0f; }
.gc-account-menu { position: relative; }
.gc-account-dropdown {
  display: none; position: absolute; top: calc(100% + 8px); right: 0;
  min-width: 180px; background: #0f1318; border: 1px solid rgba(57,255,106,.18);
  border-radius: 8px; padding: 6px; box-shadow: 0 16px 40px rgba(0,0,0,.5); z-index: 120;
}
.gc-account-dropdown.show { display: block; }
.gc-account-dropdown a, .gc-account-dropdown button {
  display: block; width: 100%; text-align: left; padding: 10px 12px;
  border: none; background: none; color: #e8edf2; font-size: 13px;
  text-decoration: none; border-radius: 4px; cursor: pointer;
}
.gc-account-dropdown a:hover, .gc-account-dropdown button:hover { background: rgba(57,255,106,.08); color: #39ff6a; }
.gc-account-name { font-size: 12px; color: #6b7a8a; padding: 8px 12px 4px; pointer-events: none; }
.gc-tabs { display: flex; gap: 4px; margin-bottom: 24px; border-bottom: 1px solid rgba(57,255,106,.12); }
.gc-tab {
  padding: 10px 18px; font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 14px; letter-spacing: .06em; text-transform: uppercase; color: #6b7a8a;
  background: none; border: none; border-bottom: 2px solid transparent; cursor: pointer;
  margin-bottom: -1px; transition: color .15s, border-color .15s;
}
.gc-tab:hover { color: #e8edf2; }
.gc-tab.active { color: #39ff6a; border-bottom-color: #39ff6a; }
.gc-settings-card {
  max-width: 480px; background: #0f1318; border: 1px solid rgba(57,255,106,.12);
  border-radius: 8px; padding: 24px;
}
.gc-field { margin-bottom: 20px; }
.gc-field label {
  display: block; font-size: 11px; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: #6b7a8a; margin-bottom: 8px;
}
.gc-field select, .gc-field input {
  width: 100%; padding: 11px 14px; background: #141a20; border: 1px solid rgba(57,255,106,.14);
  border-radius: 6px; color: #e8edf2; font-size: 14px; font-family: inherit;
}
.gc-field select:focus, .gc-field input:focus {
  outline: none; border-color: rgba(57,255,106,.45); box-shadow: 0 0 0 3px rgba(57,255,106,.08);
}
.gc-field-hint { font-size: 12px; color: #6b7a8a; margin-top: 8px; line-height: 1.5; }
.gc-watch-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; }

@media (max-width: 880px) {
  .gc-detail { grid-template-columns: 1fr; }
  .gc-detail-side { position: static; }
  .gc-topbar-inner { padding: 0 16px; gap: 12px; }
  .gc-page { padding: 24px 16px 64px; }
  .gc-detail-title { font-size: 32px; }
}
