﻿.yon-gw-page {
  min-height: 60vh;
  background: transparent;
  color: var(--h-text);
  padding: 24px 0 56px;
}

.yon-gw-wrap {
  width: min(var(--h-container, 1680px), calc(100% - 32px));
  margin: 0 auto;
}

.yon-gw-card {
  border-radius: var(--yh-shell-radius, 16px);
  border: 1px solid var(--h-border);
  background: linear-gradient(180deg, var(--h-bg-raised) 0%, var(--h-bg-card) 100%);
  box-shadow: var(--h-shadow-card);
}

.yon-gw-creator-bar {
  background: linear-gradient(180deg, var(--h-bg-raised) 0%, var(--h-bg-card) 100%);
  border: 1px solid var(--h-border);
}

.yon-gw-btn--primary {
  background: var(--h-gradient-green) !important;
  color: var(--h-green-text-on) !important;
}
.yon-gw-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #94a3b8;
    margin-bottom: 16px;
}
.yon-gw-back:hover { color: #a78bfa; }
.yon-gw-alert {
    margin-bottom: 16px;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 14px;
}
.yon-gw-alert--ok { background: rgba(16,185,129,.12); border: 1px solid rgba(16,185,129,.3); color: #6ee7b7; }
.yon-gw-alert--err { background: rgba(239,68,68,.12); border: 1px solid rgba(239,68,68,.3); color: #fca5a5; }

.yon-gw-creator-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 20px;
    margin-bottom: 20px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,.08);
    background: #121820;
}
.yon-gw-creator {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}
.yon-gw-creator__avatar {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    overflow: hidden;
    background: #334155;
    display: grid;
    place-items: center;
    font-weight: 800;
    flex-shrink: 0;
}
.yon-gw-creator__avatar img { width: 100%; height: 100%; object-fit: cover; }
.yon-gw-creator strong { display: block; font-size: 16px; color: #fff; }
.yon-gw-creator em { display: block; font-style: normal; font-size: 12px; color: #64748b; margin-top: 2px; }
.yon-gw-creator__actions { display: flex; gap: 8px; }

.yon-gw-grid {
    display: grid;
    gap: 16px;
}
@media (min-width: 1100px) {
    .yon-gw-grid { grid-template-columns: 360px 1fr 1fr; align-items: start; }
}

.yon-gw-card {
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,.08);
    background: #121820;
    padding: 20px;
}
.yon-gw-card__title {
    font-size: 18px;
    font-weight: 900;
    line-height: 1.3;
    color: #fff;
}
.yon-gw-card__prize {
    margin-top: 8px;
    font-size: 13px;
    color: #94a3b8;
}
.yon-gw-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 16px;
    padding: 12px 0;
    border-top: 1px solid rgba(255,255,255,.06);
    border-bottom: 1px solid rgba(255,255,255,.06);
    text-align: center;
    font-size: 11px;
}
.yon-gw-stats span { display: block; color: #64748b; }
.yon-gw-stats strong { display: block; margin-top: 4px; color: #fff; font-size: 12px; }

.yon-gw-images {
    margin-top: 16px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.yon-gw-images img,
.yon-gw-images__placeholder {
    width: 88px;
    height: 88px;
    border-radius: 12px;
    object-fit: cover;
    border: 1px solid rgba(255,255,255,.08);
    background: #0a0d14;
}
.yon-gw-images__placeholder {
    display: grid;
    place-items: center;
    font-size: 28px;
    color: var(--h-blue);
}

.yon-gw-timer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-top: 16px;
    padding: 14px;
    border-radius: 12px;
    background: #0a0d14;
    border: 1px solid rgba(255,255,255,.06);
    text-align: center;
}
.yon-gw-timer strong {
    display: block;
    font-size: 22px;
    font-weight: 900;
    color: #fff;
}
.yon-gw-timer span {
    display: block;
    margin-top: 4px;
    font-size: 10px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: .06em;
}
.yon-gw-timer.is-ended strong { color: #64748b; }

.yon-gw-actions {
    display: grid;
    gap: 8px;
    margin-top: 16px;
}
.yon-gw-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 12px;
    border: none;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    text-decoration: none;
    transition: opacity .15s;
}
.yon-gw-btn:hover { opacity: .92; }
.yon-gw-btn--primary { background: linear-gradient(135deg, var(--h-blue), var(--h-blue)); color: #fff; }
.yon-gw-btn--ghost { background: rgba(255,255,255,.06); color: #cbd5e1; border: 1px solid rgba(255,255,255,.1); }
.yon-gw-btn--done { background: rgba(16,185,129,.18); color: #34d399; }
.yon-gw-btn--joined { background: #334155; color: #94a3b8; cursor: default; }
.yon-gw-btn--share { background: rgba(99,102,241,.15); color: #a5b4fc; border: 1px solid rgba(99,102,241,.25); }
.w-full { width: 100%; }

.yon-gw-desc {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,.06);
    font-size: 13px;
    color: #94a3b8;
    line-height: 1.6;
}
.yon-gw-desc h3 { font-size: 12px; font-weight: 800; color: #cbd5e1; margin-bottom: 6px; text-transform: uppercase; letter-spacing: .05em; }

.yon-gw-list-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}
.yon-gw-list-head h2 {
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}
.yon-gw-search {
    display: flex;
    gap: 6px;
    min-width: 180px;
}
.yon-gw-search input {
    flex: 1;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.1);
    background: #0a0d14;
    color: #fff;
    padding: 8px 12px;
    font-size: 12px;
    outline: none;
}
.yon-gw-search button {
    width: 36px;
    border-radius: 10px;
    border: none;
    background: var(--h-blue);
    color: #fff;
    cursor: pointer;
}

.yon-gw-people {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 520px;
    overflow: auto;
}
.yon-gw-people li {
    display: grid;
    grid-template-columns: 36px 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,.05);
    font-size: 13px;
}
.yon-gw-people__avatar {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: #334155;
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 12px;
}
.yon-gw-people__avatar.is-winner {
    background: rgba(245,158,11,.18);
    color: #fbbf24;
}
.yon-gw-people__name { color: #e2e8f0; font-weight: 600; }
.yon-gw-people time { color: #64748b; font-size: 11px; white-space: nowrap; }
.yon-gw-people__empty {
    grid-column: 1 / -1;
    text-align: center;
    color: #64748b;
    padding: 32px 12px !important;
    border: none !important;
}
.yon-gw-pager { margin-top: 12px; font-size: 12px; }

/* ═══════════════════════════════════════════════════════════════════════════
   Hub v2 — /cekilisler complete redesign
   ═══════════════════════════════════════════════════════════════════════════ */
.gw-shell {
  --primary: var(--h-green);
  --primary-hover: var(--h-green-dark);
  --background: var(--h-bg-page);
  --card: var(--h-bg-card);
  --border: var(--h-border);
  --foreground: var(--h-text);
  --muted: var(--h-bg-raised);
  --muted-foreground: var(--h-text-muted);
  --shell-purple: var(--h-blue);
  min-height: 60vh;
  overflow-x: clip;
  padding-bottom: 56px;
}

.gw-shell.yon-home--hesap {
  background: var(--background);
  color: var(--foreground);
}

.gw-shell .yon-home__wrap,
.gw-wrap {
  width: min(var(--h-container, 1680px), calc(100% - 32px));
  margin: 0 auto;
}

.gw-hero {
  position: relative;
  padding: 28px 0 20px;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.gw-hero__glow,
.gw-hero__grid {
  display: none;
}

.gw-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.gw-hero__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 750;
  color: var(--muted-foreground);
  letter-spacing: 0.02em;
}

.gw-hero__mark {
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--h-blue), var(--h-green));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.gw-hero__dot {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: var(--h-green);
}

.gw-hero__title {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.1rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--h-text-bright);
}

.gw-hero__sub {
  margin: 14px 0 0;
  max-width: 34rem;
  color: var(--muted-foreground);
  font-size: 15px;
  line-height: 1.55;
}

.gw-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.gw-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.gw-hero__stats li {
  min-width: 96px;
  padding: 12px 14px;
  border-radius: var(--yh-shell-radius, 16px);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, var(--h-bg-raised) 0%, var(--h-bg-card) 100%);
  box-shadow: var(--h-shadow-card);
  transition: border-color 0.2s, transform 0.2s;
}

.gw-hero__stats li:hover {
  border-color: rgba(61, 90, 254, 0.35);
  transform: translateY(-2px);
}

.gw-hero__stats strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--h-green);
}

.gw-hero__stats span {
  font-size: 11px;
  color: var(--muted-foreground);
  font-weight: 650;
}

/* Legacy gw-btn fallback */
.gw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: var(--yh-btn-h, 42px);
  padding: 0 18px;
  border-radius: var(--yh-btn-radius, 12px);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.gw-btn--green {
  background: var(--h-gradient-green);
  color: var(--h-green-text-on);
}

.gw-btn--ghost {
  background: transparent;
  color: var(--foreground);
  border: 1px solid var(--border);
}

.gw-alert {
  margin: 16px 0;
  padding: 12px 16px;
  border-radius: var(--yh-shell-radius, 16px);
  font-size: 14px;
}

.gw-alert--ok {
  background: rgba(17, 211, 119, 0.12);
  border: 1px solid rgba(17, 211, 119, 0.3);
  color: var(--h-green);
}

.gw-alert--err {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
}

.gw-spot {
  padding: 0;
}

.gw-spot__rail {
  display: grid;
  gap: 14px;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 320px);
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
}

.gw-spot__rail > * {
  scroll-snap-align: start;
}

.gw-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: calc(var(--yon-sticky-offset, 72px) + 8px);
  z-index: 30;
}

.gw-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.gw-tab {
  /* yh-btn yh-btn--pill yh-btn--ghost */
}

.gw-tab em {
  font-style: normal;
  font-size: 10px;
  font-weight: 800;
  padding: 1px 6px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.12);
  color: var(--muted-foreground);
}

.gw-tab.is-active em {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.gw-search {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--yh-btn-radius, 12px);
  background: var(--h-bg-page);
  padding-left: 34px;
  min-height: var(--yh-btn-h-sm, 36px);
}

.gw-search:focus-within {
  border-color: rgba(61, 90, 254, 0.45);
  box-shadow: 0 0 0 3px rgba(61, 90, 254, 0.12);
}

.gw-search i {
  position: absolute;
  left: 11px;
  color: var(--h-blue-text);
  font-size: 15px;
  pointer-events: none;
}

.gw-search input {
  width: min(220px, 42vw);
  padding: 8px 0;
  border: 0;
  background: transparent;
  color: var(--foreground);
  font-size: 13px;
  outline: none;
}

.gw-search .yh-btn {
  flex-shrink: 0;
  margin: 4px;
}

.gw-grid-sec {
  padding-bottom: 8px;
}

.gw-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

.gw-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 24px;
}

.gw-empty i {
  font-size: 40px;
  color: var(--h-green);
  opacity: 0.75;
}

.gw-empty h2 {
  margin: 12px 0 8px;
  font-size: 1.2rem;
  color: var(--h-text-bright);
}

.gw-empty p {
  margin: 0 0 16px;
  color: var(--muted-foreground);
}

.gw-pager {
  margin-top: 24px;
}

.gw-pager nav {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
}

.gw-pager a,
.gw-pager span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
  border: 1px solid var(--border);
  color: var(--muted-foreground);
  background: var(--h-bg-raised);
}

.gw-pager .active span,
.gw-pager [aria-current="page"] span {
  background: rgba(17, 211, 119, 0.16);
  border-color: rgba(17, 211, 119, 0.4);
  color: var(--h-green);
}

/* Cards — cover first */
.gw-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--yh-shell-radius, 16px);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, var(--h-bg-raised) 0%, var(--h-bg-card) 100%);
  overflow: hidden;
  transition: border-color 0.22s, transform 0.22s, box-shadow 0.22s;
}

.gw-card:hover {
  border-color: rgba(61, 90, 254, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24), 0 0 0 1px rgba(61, 90, 254, 0.12);
}

.gw-card--featured {
  border-color: rgba(17, 211, 119, 0.35);
}

.gw-card--featured:hover {
  border-color: rgba(17, 211, 119, 0.45);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24), 0 0 0 1px rgba(17, 211, 119, 0.15);
}
.gw-card--spot { min-height: 100%; }
.gw-card--pending { opacity: .88; }
.gw-card.is-ended { filter: saturate(.85); }

.gw-card__cover {
  position: relative; display: block; aspect-ratio: 16/10;
  background: linear-gradient(145deg, #1a2233, #0d121c); overflow: hidden; text-decoration: none;
}
.gw-card__cover img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .45s ease;
}
.gw-card:hover .gw-card__cover img { transform: scale(1.05); }
.gw-card__shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,14,22,.05), rgba(10,14,22,.55) 70%, rgba(10,14,22,.85));
  pointer-events: none;
}
.gw-card__ph {
  position: absolute; inset: 0; display: grid; place-items: center;
  font-size: 42px; color: rgba(61,90,254,.55);
}
.gw-card__badge {
  position: absolute; top: 10px; left: 10px; z-index: 1;
  font-size: 10px; font-weight: 850; text-transform: uppercase; letter-spacing: .04em;
  padding: 4px 9px; border-radius: 999px; backdrop-filter: blur(8px);
}
.gw-card__badge--balance { background: rgba(17,211,119,.9); color: #04120a; }
.gw-card__badge--product { background: rgba(61,90,254,.92); color: #fff; }
.gw-card__feat {
  position: absolute; top: 10px; right: 10px; z-index: 1;
  width: 28px; height: 28px; border-radius: 999px; display: grid; place-items: center;
  background: rgba(251,191,36,.95); color: #422006; font-size: 14px;
}
.gw-card__timer {
  position: absolute; left: 10px; bottom: 10px; z-index: 1;
  padding: 5px 9px; border-radius: 9px; font-size: 11px; font-weight: 800;
  background: rgba(10,14,22,.78); border: 1px solid rgba(148,163,184,.2);
  color: #e2e8f0; backdrop-filter: blur(8px); font-variant-numeric: tabular-nums;
}
.gw-card__timer b { color: #86efac; font-weight: 900; }
.gw-card__timer.is-done { color: #94a3b8; }
.gw-card.is-live .gw-card__timer { box-shadow: 0 0 0 1px rgba(17,211,119,.25); }

.gw-card__body { display: flex; flex-direction: column; gap: 10px; padding: 12px 14px 14px; flex: 1; }
.gw-card__user { display: flex; align-items: center; gap: 8px; min-width: 0; text-decoration: none; color: inherit; }
.gw-card__av {
  width: 28px; height: 28px; border-radius: 999px; overflow: hidden; background: var(--muted);
  display: grid; place-items: center; font-size: 10px; font-weight: 800; flex-shrink: 0;
}
.gw-card__av img { width: 100%; height: 100%; object-fit: cover; }
.gw-card__name { font-size: 12px; font-weight: 750; display: flex; align-items: center; gap: 4px; color: #cbd5e1; }
.gw-card__name i { color: #38bdf8; font-size: 13px; }
.gw-card__text { text-decoration: none; color: inherit; }
.gw-card__text h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 850;
  line-height: 1.3;
  color: var(--h-text-bright);
}

.gw-card__text p {
  margin: 5px 0 0;
  font-size: 12px;
  color: var(--muted-foreground);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.gw-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  font-size: 11px;
  color: var(--muted-foreground);
  font-weight: 650;
}

.gw-card__meta i {
  color: var(--h-green);
  margin-right: 3px;
}

.gw-card__meta em {
  font-style: normal;
  opacity: 0.75;
}

.gw-card__pending {
  text-align: center;
  font-size: 11px;
  font-weight: 750;
  color: #fbbf24;
  padding: 6px;
  border-radius: 8px;
  background: rgba(245, 158, 11, 0.1);
}

.gw-card__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: auto;
}

.gw-card__actions form {
  margin: 0;
}

.gw-card__actions .yh-btn.is-disabled,
.gw-card__actions button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}

.gw-steps {
  border-top: 0;
  padding: 0;
  background: transparent;
}

.gw-steps__list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gw-steps__list li {
  padding: 18px 16px;
  border-radius: var(--h-radius, 12px);
  border: 1px solid var(--border);
  background: var(--h-bg-page);
  transition: border-color 0.2s, transform 0.2s;
}

.gw-steps__list li:hover {
  border-color: rgba(61, 90, 254, 0.35);
  transform: translateY(-2px);
}

.gw-steps__n {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 9px;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 900;
  background: rgba(61, 90, 254, 0.18);
  color: var(--h-blue-text);
}

.gw-steps__list strong {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  color: var(--h-text-bright);
}

.gw-steps__list p {
  margin: 0;
  font-size: 12px;
  color: var(--muted-foreground);
  line-height: 1.45;
}

.gw-faq {
  border-top: 0;
  background: transparent;
  padding: 0 0 8px;
}
.gw-faq__grid {
  display: grid; gap: 28px;
}
@media (min-width: 900px) {
  .gw-faq__grid { grid-template-columns: .9fr 1.1fr; align-items: start; }
}
.gw-faq h2 { margin: 0; font-size: 1.45rem; font-weight: 900; }
.gw-faq__lead { margin: 10px 0 0; color: var(--muted-foreground); font-size: 14px; line-height: 1.55; max-width: 28rem; }
.gw-faq__item {
  border: 1px solid var(--border); border-radius: 14px; background: var(--card); margin-bottom: 8px; overflow: hidden;
  transition: border-color .2s;
}
.gw-faq__item.is-open { border-color: rgba(61,90,254,.35); }
.gw-faq__item button {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 14px 16px; background: none; border: none; color: var(--foreground);
  font-size: 14px; font-weight: 750; text-align: left; cursor: pointer;
}
.gw-faq__item button i { transition: transform .2s; color: var(--muted-foreground); }
.gw-faq__item.is-open button i { transform: rotate(180deg); color: #d8b4fe; }
.gw-faq__a { padding: 0 16px 14px; font-size: 13px; color: var(--muted-foreground); line-height: 1.55; }

.yon-gw-page.gw-shell { background: var(--background); }
.yon-gw-btn--primary { background: linear-gradient(135deg, var(--h-green), var(--h-green-dark)) !important; color: #04120a !important; }
.yon-gw-btn--share { background: rgba(61,90,254,.15) !important; color: #d8b4fe !important; border-color: rgba(61,90,254,.3) !important; }
.yon-gw-search button { background: var(--shell-purple, var(--h-blue)) !important; }
.yon-gw-banner { margin-bottom: 20px; border-radius: 16px; overflow: hidden; border: 1px solid var(--border); }
.yon-gw-banner img { display: block; width: 100%; max-height: 280px; object-fit: cover; }
.yon-gw-banner__mob { display: none; }
@media (max-width: 767px) {
  .yon-gw-banner__desk { display: none; }
  .yon-gw-banner__mob { display: block; }
}
.yon-gw-req { margin-top: 12px; font-size: 12px; color: #d8b4fe; display: flex; align-items: center; gap: 6px; }
.yon-gw-tasks { margin-top: 14px; }
.yon-gw-tasks h3 { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; color: #cbd5e1; margin: 0 0 8px; }
.yon-gw-tasks ul { margin: 0; padding: 0; list-style: none; }
.yon-gw-tasks li { margin-bottom: 6px; }
.yon-gw-tasks a { font-size: 12px; color: #86efac; word-break: break-all; }

.yon-h-giveaways { padding: 28px 0; }
.yon-h-giveaways__head { display: flex; align-items: end; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.yon-h-giveaways__head h2 { margin: 0; font-size: 1.35rem; font-weight: 900; }
.yon-h-giveaways__head p { margin: 4px 0 0; font-size: 13px; color: #94a3b8; }
.yon-h-giveaways__rail { display: flex; gap: 12px; overflow-x: auto; padding-bottom: 8px; scroll-snap-type: x mandatory; }
.yon-h-gw-card {
  flex: 0 0 min(280px, 80vw); scroll-snap-align: start;
  border-radius: 14px; border: 1px solid rgba(148,163,184,.14); background: var(--h-bg-card);
  padding: 14px; text-decoration: none; color: inherit; display: block; transition: border-color .2s;
}
.yon-h-gw-card:hover { border-color: rgba(61,90,254,.4); }
.yon-h-gw-card strong { display: block; font-size: 14px; margin-bottom: 4px; }
.yon-h-gw-card span { font-size: 12px; color: #94a3b8; }
.yon-h-gw-card em { display: block; margin-top: 10px; font-style: normal; font-size: 11px; color: #86efac; font-weight: 700; }

@media (max-width: 900px) {
  .gw-steps__list { grid-template-columns: 1fr; }
  .gw-toolbar { position: static; }
}
@media (max-width: 640px) {
  .gw-hero { padding: 36px 0 28px; }
  .gw-hero__stats li { min-width: 0; flex: 1; }
  .gw-search input { width: 100%; min-width: 0; }
  .gw-search { width: 100%; }
  .gw-toolbar { flex-direction: column; align-items: stretch; }
}

/* Light mode — hub v2 shell tokens */
html[data-theme="light"] .gw-shell.yon-home--hesap {
  --background: #eef1f6;
  --card: #ffffff;
  --border: rgba(15, 23, 42, 0.1);
  --foreground: #0f172a;
  --muted: #f1f5f9;
  --muted-foreground: #64748b;
  background: var(--background);
  color: var(--foreground);
}
html[data-theme="light"] .gw-hero__glow { opacity: .55; }
html[data-theme="light"] .gw-hero__grid { opacity: .18; }
html[data-theme="light"] .yon-h-gw-card {
  background: #fff;
  border-color: rgba(15, 23, 42, 0.1);
  color: #0f172a;
}
html[data-theme="light"] .yon-h-gw-card span { color: #64748b; }
html[data-theme="light"] .yon-h-gw-card em { color: #15803d; }
html[data-theme="light"] .yon-h-giveaways__head p { color: #64748b; }
