/* ============================================================
   GÖKKUŞAĞI PWA — Tasarım Sistemi v1 (Paket 1)
   Palet: gece moru zemin üzerine canlı mor/mavi/güneş sarısı
   Tipografi: Baloo 2 (display) + Manrope (gövde)
   İmza: giriş ekranındaki canlı gökkuşağı yayı + kart ışık süpürmesi
   Prefix: .gks-
   ============================================================ */

:root {
    --gks-ink:        #1D1440;   /* gece moru — metin & koyu zemin */
    --gks-ink-soft:   #4A4173;
    --gks-violet:     #6C3EF5;   /* birincil */
    --gks-violet-dk:  #5730CC;
    --gks-blue:       #2FA8FF;
    --gks-sun:        #FFC531;   /* vurgu — CTA parıltısı */
    --gks-coral:      #FF5E7E;   /* hata / dikkat */
    --gks-mint:       #2ED8A7;   /* başarı */
    --gks-bg:         #F6F4FF;
    --gks-surface:    #FFFFFF;
    --gks-line:       #E8E3FA;

    --gks-radius:     24px;
    --gks-radius-sm:  16px;
    --gks-shadow:     0 20px 50px -18px rgba(29, 20, 64, .35);
    --gks-shadow-sm:  0 8px 24px -10px rgba(29, 20, 64, .25);

    --gks-font-display: 'Baloo 2', system-ui, sans-serif;
    --gks-font-body:    'Manrope', system-ui, sans-serif;

    --gks-ease-out:   cubic-bezier(.22, 1, .36, 1);
    --gks-ease-pop:   cubic-bezier(.34, 1.56, .64, 1);  /* hafif taşmalı */
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { -webkit-text-size-adjust: 100%; }

.gks-body {
    min-height: 100dvh;
    font-family: var(--gks-font-body);
    color: var(--gks-ink);
    background: var(--gks-bg);
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ── Ambient arka plan ─────────────────────────────────────── */
.gks-sky {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
.gks-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: .35;
    animation: gks-drift 16s var(--gks-ease-out) infinite alternate;
}
.gks-orb--violet { width: 340px; height: 340px; background: var(--gks-violet); top: -120px; left: -100px; }
.gks-orb--blue   { width: 280px; height: 280px; background: var(--gks-blue);   bottom: -80px; right: -90px; animation-delay: -5s; }
.gks-orb--sun    { width: 200px; height: 200px; background: var(--gks-sun);    top: 45%; right: -70px; opacity: .25; animation-delay: -9s; }

@keyframes gks-drift {
    from { transform: translate3d(0, 0, 0) scale(1); }
    to   { transform: translate3d(30px, -24px, 0) scale(1.12); }
}

/* ── Sahne ─────────────────────────────────────────────────── */
.gks-stage {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 430px;
    margin: 0 auto;
    padding: clamp(16px, 4vw, 28px);
    padding-top: max(env(safe-area-inset-top), 24px);
    padding-bottom: max(env(safe-area-inset-bottom), 24px);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ── Kart kabuk ────────────────────────────────────────────── */
.gks-card {
    background: var(--gks-surface);
    border-radius: var(--gks-radius);
    padding: 28px 24px 26px;
    box-shadow: var(--gks-shadow);
    position: relative;
}

/* Orkestre edilmiş giriş: kart yükselir, içindekiler sırayla gelir */
.gks-enter { animation: gks-rise .55s var(--gks-ease-out) both; }
.gks-enter > * {
    animation: gks-rise .5s var(--gks-ease-out) both;
}
.gks-enter > *:nth-child(1) { animation-delay: .06s; }
.gks-enter > *:nth-child(2) { animation-delay: .12s; }
.gks-enter > *:nth-child(3) { animation-delay: .18s; }
.gks-enter > *:nth-child(4) { animation-delay: .24s; }
.gks-enter > *:nth-child(5) { animation-delay: .30s; }
.gks-enter > *:nth-child(6) { animation-delay: .36s; }

@keyframes gks-rise {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── İmza: gökkuşağı yayı ──────────────────────────────────── */
.gks-hero {
    position: relative;
    height: 128px;
    display: grid;
    place-items: center;
    margin-bottom: 6px;
}
.gks-hero--compact { height: 84px; }

.gks-arc {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    pointer-events: none;
}
.gks-arc span {
    position: absolute;
    border-radius: 50%;
    border: 6px solid transparent;
    border-top-color: currentColor;
    border-left-color: currentColor;
    transform: rotate(45deg);
    animation: gks-arc-in 1s var(--gks-ease-pop) both;
}
.gks-arc span:nth-child(1) { width: 118px; height: 118px; color: var(--gks-violet); animation-delay: .15s; }
.gks-arc span:nth-child(2) { width: 92px;  height: 92px;  color: var(--gks-blue);   animation-delay: .28s; }
.gks-arc span:nth-child(3) { width: 66px;  height: 66px;  color: var(--gks-sun);    animation-delay: .41s; }

@keyframes gks-arc-in {
    from { opacity: 0; transform: rotate(-140deg) scale(.6); }
    to   { opacity: 1; transform: rotate(45deg) scale(1); }
}

.gks-logo-dot {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(140deg, var(--gks-violet), var(--gks-blue));
    display: grid;
    place-items: center;
    font-size: 30px;
    box-shadow: var(--gks-shadow-sm);
    animation: gks-pop .6s var(--gks-ease-pop) .5s both;
}
.gks-logo-dot--sms   { background: linear-gradient(140deg, var(--gks-blue), var(--gks-violet)); animation-delay: .15s; }
.gks-logo-dot--party { background: linear-gradient(140deg, var(--gks-sun), var(--gks-coral));   animation-delay: .15s; }

@keyframes gks-pop {
    from { opacity: 0; transform: scale(.4); }
    to   { opacity: 1; transform: scale(1); }
}

/* ── Tipografi ─────────────────────────────────────────────── */
.gks-title {
    font-family: var(--gks-font-display);
    font-weight: 800;
    font-size: clamp(26px, 7vw, 32px);
    line-height: 1.12;
    text-align: center;
    letter-spacing: -0.01em;
}
.gks-title--sm { font-size: clamp(22px, 6vw, 26px); }

.gks-sub {
    margin-top: 8px;
    margin-bottom: 22px;
    text-align: center;
    color: var(--gks-ink-soft);
    font-size: 15px;
    line-height: 1.55;
}

/* ── Form ──────────────────────────────────────────────────── */
.gks-form { display: flex; flex-direction: column; gap: 16px; }

.gks-field { display: block; }
.gks-field__label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 7px;
    color: var(--gks-ink-soft);
    letter-spacing: .02em;
}
.gks-field__label em { font-style: normal; font-weight: 500; opacity: .7; }

.gks-field__wrap {
    display: flex;
    align-items: center;
    background: var(--gks-bg);
    border: 2px solid var(--gks-line);
    border-radius: var(--gks-radius-sm);
    transition: border-color .2s, box-shadow .2s, transform .15s;
}
.gks-field__wrap:focus-within {
    border-color: var(--gks-violet);
    box-shadow: 0 0 0 4px rgba(108, 62, 245, .14);
    transform: translateY(-1px);
}
.gks-field__prefix {
    padding: 0 4px 0 16px;
    font-weight: 800;
    font-size: 17px;
    color: var(--gks-ink-soft);
    user-select: none;
}
.gks-field__input {
    flex: 1;
    min-width: 0;
    border: 0;
    background: transparent;
    padding: 15px 16px 15px 8px;
    font-family: var(--gks-font-body);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: .04em;
    color: var(--gks-ink);
    outline: none;
}
.gks-field__input--plain { padding-left: 16px; font-size: 16px; letter-spacing: 0; }
.gks-field__input::placeholder { color: #B8B0DB; font-weight: 600; }

/* ── OTP kutuları ──────────────────────────────────────────── */
.gks-otp {
    display: flex;
    gap: 9px;
    justify-content: center;
}
.gks-otp__box {
    width: 15%;
    max-width: 54px;
    aspect-ratio: 4 / 5;
    text-align: center;
    font-family: var(--gks-font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--gks-ink);
    background: var(--gks-bg);
    border: 2px solid var(--gks-line);
    border-radius: 14px;
    outline: none;
    transition: border-color .15s, box-shadow .15s, transform .15s var(--gks-ease-pop), background .15s;
    caret-color: var(--gks-violet);
}
.gks-otp__box:focus {
    border-color: var(--gks-violet);
    box-shadow: 0 0 0 4px rgba(108, 62, 245, .14);
}
.gks-otp__box.is-filled {
    border-color: var(--gks-violet);
    background: #F1EBFF;
    transform: scale(1.06);
}
.gks-otp.is-error .gks-otp__box {
    border-color: var(--gks-coral);
    animation: gks-shake .4s;
}
@keyframes gks-shake {
    20% { transform: translateX(-5px); }
    40% { transform: translateX(5px); }
    60% { transform: translateX(-3px); }
    80% { transform: translateX(3px); }
}

/* ── Butonlar ──────────────────────────────────────────────── */
.gks-btn {
    position: relative;
    border: 0;
    border-radius: var(--gks-radius-sm);
    padding: 16px 20px;
    font-family: var(--gks-font-display);
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    display: inline-grid;
    place-items: center;
    transition: transform .15s var(--gks-ease-pop), box-shadow .2s, opacity .2s;
    overflow: hidden;
}
.gks-btn:active { transform: scale(.97); }
.gks-btn:disabled { opacity: .55; cursor: not-allowed; }

.gks-btn--primary {
    color: #fff;
    background: linear-gradient(120deg, var(--gks-violet) 10%, var(--gks-violet-dk) 90%);
    box-shadow: 0 12px 26px -10px rgba(108, 62, 245, .65);
}
.gks-btn--primary:not(:disabled):hover { box-shadow: 0 16px 32px -10px rgba(108, 62, 245, .75); }

/* CTA üzerinde periyodik güneş parıltısı */
.gks-btn--primary::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 46%;
    left: -60%;
    background: linear-gradient(100deg, transparent, rgba(255, 197, 49, .45), transparent);
    transform: skewX(-18deg);
    animation: gks-sheen 3.8s ease-in-out infinite;
}
@keyframes gks-sheen {
    0%, 55%  { left: -60%; }
    75%, 100% { left: 130%; }
}

/* Yüklenme durumu */
.gks-btn__spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, .35);
    border-top-color: #fff;
    border-radius: 50%;
    animation: gks-spin .7s linear infinite;
}
.gks-btn.is-loading .gks-btn__label { visibility: hidden; }
.gks-btn.is-loading .gks-btn__spinner { display: block; position: absolute; }
@keyframes gks-spin { to { transform: rotate(360deg); } }

/* ── Bağlantılar & küçük parçalar ──────────────────────────── */
.gks-link { color: var(--gks-violet); font-weight: 700; text-decoration: none; }
.gks-link:hover { text-decoration: underline; }
.gks-link--btn { background: none; border: 0; cursor: pointer; font-family: inherit; font-size: 14px; }
.gks-link--btn:disabled { color: var(--gks-ink-soft); opacity: .6; cursor: default; text-decoration: none; }

.gks-legal { margin-top: 18px; text-align: center; font-size: 12.5px; color: var(--gks-ink-soft); }
.gks-resend { margin-top: 16px; text-align: center; }

.gks-back {
    position: absolute;
    top: 18px; left: 18px;
    width: 38px; height: 38px;
    display: grid; place-items: center;
    border-radius: 12px;
    background: var(--gks-bg);
    color: var(--gks-ink);
    text-decoration: none;
    font-size: 18px;
    transition: transform .15s var(--gks-ease-pop), background .15s;
    z-index: 2;
}
.gks-back:hover { background: var(--gks-line); transform: translateX(-2px); }

.gks-testcode {
    margin-bottom: 16px;
    padding: 10px 14px;
    border-radius: 12px;
    background: #FFF6DC;
    border: 1.5px dashed var(--gks-sun);
    color: #8a6d1a;
    font-size: 13.5px;
    text-align: center;
}

/* ── Flash mesajları ───────────────────────────────────────── */
.gks-flash {
    margin-bottom: 14px;
    padding: 13px 16px;
    border-radius: var(--gks-radius-sm);
    font-size: 14px;
    font-weight: 600;
    animation: gks-rise .4s var(--gks-ease-out) both;
}
.gks-flash--error   { background: #FFE9EE; color: #B3123B; }
.gks-flash--success { background: #DFF9F0; color: #0B7A5B; }

/* ── KVKK onay kutusu ──────────────────────────────────────── */
.gks-check {
    display: flex;
    gap: 11px;
    align-items: flex-start;
    cursor: pointer;
    font-size: 13.5px;
    line-height: 1.5;
    color: var(--gks-ink-soft);
}
.gks-check input { position: absolute; opacity: 0; pointer-events: none; }
.gks-check__box {
    flex: 0 0 auto;
    width: 22px; height: 22px;
    margin-top: 1px;
    border: 2px solid var(--gks-line);
    border-radius: 7px;
    background: var(--gks-bg);
    display: grid; place-items: center;
    transition: all .18s var(--gks-ease-pop);
}
.gks-check__box::after {
    content: '✓';
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    transform: scale(0);
    transition: transform .18s var(--gks-ease-pop);
}
.gks-check input:checked + .gks-check__box {
    background: var(--gks-violet);
    border-color: var(--gks-violet);
    transform: scale(1.05);
}
.gks-check input:checked + .gks-check__box::after { transform: scale(1); }
.gks-check input:focus-visible + .gks-check__box { box-shadow: 0 0 0 4px rgba(108, 62, 245, .18); }

/* ============================================================
   PANEL (Paket 1 geçici özet — Paket 2'de genişleyecek)
   ============================================================ */
.gks-panel { padding: 4px 0; }

.gks-panel__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}
.gks-panel__hello { font-size: 14px; color: var(--gks-ink-soft); font-weight: 600; }
.gks-panel__name  { font-family: var(--gks-font-display); font-size: 24px; font-weight: 800; }

.gks-chip {
    padding: 8px 15px;
    border-radius: 999px;
    background: var(--gks-surface);
    color: var(--gks-ink);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: var(--gks-shadow-sm);
    transition: transform .15s var(--gks-ease-pop);
}
.gks-chip:hover { transform: translateY(-2px); }

/* ── Dijital üyelik kartı ──────────────────────────────────── */
.gks-member-card {
    position: relative;
    border-radius: var(--gks-radius);
    padding: 22px;
    color: #fff;
    background:
        radial-gradient(120% 160% at 100% 0%, rgba(47, 168, 255, .55), transparent 55%),
        radial-gradient(110% 150% at 0% 100%, rgba(255, 197, 49, .35), transparent 50%),
        linear-gradient(135deg, var(--gks-violet), var(--gks-ink) 90%);
    box-shadow: var(--gks-shadow);
    overflow: hidden;
    animation: gks-rise .55s var(--gks-ease-out) .1s both;
}
.gks-member-card__sheen {
    position: absolute;
    top: -30%; bottom: -30%;
    width: 34%;
    left: -50%;
    background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .22), transparent);
    transform: skewX(-16deg);
    animation: gks-card-sheen 5.5s ease-in-out infinite;
    pointer-events: none;
}
@keyframes gks-card-sheen {
    0%, 60%  { left: -50%; }
    85%, 100% { left: 140%; }
}
.gks-member-card__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.gks-member-card__brand {
    font-family: var(--gks-font-display);
    font-weight: 800;
    letter-spacing: .18em;
    font-size: 13px;
    opacity: .92;
}
.gks-member-card__ferris { font-size: 22px; }
.gks-member-card__balance-label { font-size: 12.5px; opacity: .75; font-weight: 600; }
.gks-member-card__balance {
    font-family: var(--gks-font-display);
    font-size: clamp(30px, 9vw, 38px);
    font-weight: 800;
    margin: 2px 0 22px;
}
.gks-member-card__bottom { display: flex; justify-content: space-between; gap: 12px; }
.gks-member-card__label {
    display: block;
    font-size: 10px;
    letter-spacing: .14em;
    opacity: .65;
    font-weight: 700;
    margin-bottom: 3px;
}
.gks-member-card__value { font-size: 14px; font-weight: 700; }

/* ── İstatistikler ─────────────────────────────────────────── */
.gks-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 16px 0 24px;
}
.gks-stat {
    background: var(--gks-surface);
    border-radius: var(--gks-radius-sm);
    padding: 15px 16px;
    box-shadow: var(--gks-shadow-sm);
}
.gks-stat__label { display: block; font-size: 12.5px; color: var(--gks-ink-soft); font-weight: 600; margin-bottom: 4px; }
.gks-stat__value { font-family: var(--gks-font-display); font-size: 19px; font-weight: 800; }
.gks-stat__value--in  { color: var(--gks-mint); }
.gks-stat__value--out { color: var(--gks-coral); }

.gks-section-title {
    font-family: var(--gks-font-display);
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 12px;
}

/* ── İşlem listesi ─────────────────────────────────────────── */
.gks-txlist { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.gks-tx {
    display: flex;
    align-items: center;
    gap: 13px;
    background: var(--gks-surface);
    border-radius: var(--gks-radius-sm);
    padding: 13px 15px;
    box-shadow: var(--gks-shadow-sm);
}
.gks-tx__icon {
    flex: 0 0 auto;
    width: 38px; height: 38px;
    border-radius: 12px;
    display: grid; place-items: center;
    font-weight: 800;
    font-size: 17px;
}
.gks-tx__icon--in  { background: #DFF9F0; color: #0B7A5B; }
.gks-tx__icon--out { background: #FFE9EE; color: #B3123B; }
.gks-tx__body { flex: 1; min-width: 0; }
.gks-tx__type { display: block; font-size: 14px; font-weight: 700; }
.gks-tx__date { display: block; font-size: 12px; color: var(--gks-ink-soft); margin-top: 2px; }
.gks-tx__amount { font-weight: 800; font-size: 15px; white-space: nowrap; }
.gks-tx__amount--in  { color: #0B7A5B; }
.gks-tx__amount--out { color: #B3123B; }

.gks-empty {
    text-align: center;
    padding: 34px 18px;
    background: var(--gks-surface);
    border-radius: var(--gks-radius-sm);
    box-shadow: var(--gks-shadow-sm);
    color: var(--gks-ink-soft);
    font-size: 14px;
}
.gks-empty__icon { display: block; font-size: 34px; margin-bottom: 8px; }

.gks-note {
    margin-top: 22px;
    font-size: 12px;
    color: var(--gks-ink-soft);
    text-align: center;
    opacity: .8;
}

/* ── Erişilebilirlik: hareket azaltma ──────────────────────── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}

/* ============================================================
   PAKET 2 — PWA UYGULAMA ARAYÜZÜ
   Alt navigasyon, ana ekran, QR kart, bakiye, galeri, profil
   ============================================================ */

.gks-body--app { background: var(--gks-bg); }
.gks-stage--app {
    justify-content: flex-start;
    padding-bottom: calc(96px + env(safe-area-inset-bottom));
}

/* ── Alt navigasyon ────────────────────────────────────────── */
.gks-nav {
    position: fixed;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 100%;
    max-width: 430px;
    z-index: 40;
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    gap: 2px;
    padding: 8px 10px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, .88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid var(--gks-line);
    border-radius: 22px 22px 0 0;
    box-shadow: 0 -10px 32px -18px rgba(29, 20, 64, .35);
}
.gks-nav__item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding: 6px 2px 2px;
    text-decoration: none;
    color: var(--gks-ink-soft);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .01em;
    border-radius: 12px;
    transition: color .18s, transform .18s var(--gks-ease-pop);
}
.gks-nav__item svg { width: 23px; height: 23px; }
.gks-nav__item.is-active { color: var(--gks-violet); }
.gks-nav__item.is-active svg { animation: gks-pop .35s var(--gks-ease-pop); }
.gks-nav__item:active { transform: scale(.94); }

/* Ortadaki yükseltilmiş bakiye butonu */
.gks-nav__item--cta { position: relative; }
.gks-nav__fab {
    width: 52px;
    height: 52px;
    margin-top: -30px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(140deg, var(--gks-violet), var(--gks-blue));
    box-shadow: 0 10px 22px -8px rgba(108, 62, 245, .7), 0 0 0 5px var(--gks-bg);
    transition: transform .18s var(--gks-ease-pop), box-shadow .2s;
}
.gks-nav__fab svg { width: 24px; height: 24px; }
.gks-nav__item--cta:active .gks-nav__fab { transform: scale(.92); }
.gks-nav__item--cta.is-active .gks-nav__fab {
    box-shadow: 0 12px 26px -8px rgba(108, 62, 245, .85), 0 0 0 5px var(--gks-bg);
    transform: translateY(-2px);
}

/* ── Ortak sayfa başlıkları ────────────────────────────────── */
.gks-page-title {
    font-family: var(--gks-font-display);
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 4px;
}
.gks-page-sub { color: var(--gks-ink-soft); font-size: 14px; margin-bottom: 18px; }

.gks-row-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-top: 22px;
}
.gks-link--sm { font-size: 13px; }

/* ── Avatar ────────────────────────────────────────────────── */
.gks-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-family: var(--gks-font-display);
    font-weight: 800;
    font-size: 18px;
    color: #fff;
    background: linear-gradient(140deg, var(--gks-violet), var(--gks-blue));
    text-decoration: none;
    box-shadow: var(--gks-shadow-sm);
    transition: transform .15s var(--gks-ease-pop);
}
.gks-avatar:active { transform: scale(.93); }
.gks-avatar--lg { width: 58px; height: 58px; font-size: 24px; flex: 0 0 auto; }

/* ── Kart varyasyonları ────────────────────────────────────── */
.gks-member-card--link { display: block; text-decoration: none; color: #fff; }
.gks-member-card--link:active { transform: scale(.985); }
.gks-member-card { transition: transform .18s var(--gks-ease-pop); }
.gks-member-card__qr-hint {
    align-self: flex-end;
    font-size: 12px;
    font-weight: 700;
    opacity: .85;
}
.gks-member-card--tall { padding-bottom: 18px; }
.gks-member-card__bottom--center { margin-top: 16px; }
.gks-member-card__balance-strip {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, .18);
    text-align: center;
    font-size: 14px;
    opacity: .95;
}
.gks-member-card__balance-strip strong {
    font-family: var(--gks-font-display);
    font-size: 17px;
}

/* ── QR paneli ─────────────────────────────────────────────── */
.gks-qr-panel {
    margin: 6px auto 0;
    background: #fff;
    border-radius: 18px;
    padding: 14px;
    width: fit-content;
    box-shadow: 0 10px 30px -12px rgba(0, 0, 0, .45);
    animation: gks-pop .5s var(--gks-ease-pop) .2s both;
}
.gks-qr-panel__code { width: 196px; height: 196px; display: grid; place-items: center; }
.gks-qr-panel__code img, .gks-qr-panel__code canvas { display: block; }
.gks-qr-panel__code--fallback {
    font-family: var(--gks-font-display);
    font-size: 26px;
    font-weight: 800;
    color: var(--gks-ink);
    letter-spacing: .06em;
    text-align: center;
}

.gks-hint {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-top: 16px;
    padding: 13px 15px;
    background: var(--gks-surface);
    border-radius: var(--gks-radius-sm);
    box-shadow: var(--gks-shadow-sm);
    font-size: 13.5px;
    color: var(--gks-ink-soft);
    line-height: 1.5;
}
.gks-hint__icon { font-size: 18px; }
.gks-hint p { margin: 0; }

/* ── Hızlı erişim ──────────────────────────────────────────── */
.gks-quick {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin: 16px 0 4px;
}
.gks-quick__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    padding: 13px 4px 11px;
    background: var(--gks-surface);
    border-radius: var(--gks-radius-sm);
    box-shadow: var(--gks-shadow-sm);
    text-decoration: none;
    color: var(--gks-ink);
    font-size: 11.5px;
    font-weight: 700;
    transition: transform .15s var(--gks-ease-pop), box-shadow .2s;
}
.gks-quick__item:active { transform: scale(.94); }
.gks-quick__icon {
    width: 40px;
    height: 40px;
    border-radius: 13px;
    display: grid;
    place-items: center;
    color: #fff;
}
.gks-quick__icon svg { width: 21px; height: 21px; }
.gks-quick__icon--violet { background: linear-gradient(140deg, var(--gks-violet), var(--gks-violet-dk)); }
.gks-quick__icon--blue   { background: linear-gradient(140deg, var(--gks-blue), #1D7FD6); }
.gks-quick__icon--sun    { background: linear-gradient(140deg, var(--gks-sun), #F0A500); }
.gks-quick__icon--coral  { background: linear-gradient(140deg, var(--gks-coral), #E03A60); }

/* ── Bakiye sayfası ────────────────────────────────────────── */
.gks-balance-hero {
    background:
        radial-gradient(120% 160% at 100% 0%, rgba(47, 168, 255, .5), transparent 55%),
        linear-gradient(135deg, var(--gks-violet), var(--gks-ink) 92%);
    color: #fff;
    border-radius: var(--gks-radius);
    padding: 22px;
    box-shadow: var(--gks-shadow);
    margin-bottom: 14px;
}
.gks-balance-hero__label { font-size: 13px; opacity: .8; font-weight: 600; }
.gks-balance-hero__value {
    display: block;
    font-family: var(--gks-font-display);
    font-size: clamp(32px, 10vw, 40px);
    font-weight: 800;
    margin: 4px 0 16px;
}
.gks-balance-hero__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    font-size: 12.5px;
    opacity: .92;
}
.gks-balance-hero__stats strong { font-weight: 800; }

.gks-soon {
    position: relative;
    background: var(--gks-surface);
    border: 1.5px dashed var(--gks-violet);
    border-radius: var(--gks-radius-sm);
    padding: 18px 16px 16px;
    margin-bottom: 22px;
}
.gks-soon__badge {
    position: absolute;
    top: -11px;
    left: 16px;
    background: var(--gks-sun);
    color: var(--gks-ink);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .05em;
    padding: 4px 11px;
    border-radius: 999px;
}
.gks-soon__title { font-family: var(--gks-font-display); font-size: 16px; font-weight: 800; margin-bottom: 5px; }
.gks-soon__text { font-size: 13.5px; color: var(--gks-ink-soft); line-height: 1.55; margin: 0; }

.gks-tx__desc { display: block; font-size: 12px; color: var(--gks-ink-soft); margin-top: 2px; }

.gks-pager {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
}

/* ── Galeri ────────────────────────────────────────────────── */
.gks-chips {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 6px;
    margin-bottom: 14px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.gks-chips::-webkit-scrollbar { display: none; }
.gks-chip--active {
    background: var(--gks-violet);
    color: #fff;
}

.gks-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
/* Horizon deseninden: figure + mutlak konumlu içerik = sabit oran, taşma yok */
.gks-gallery__item {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: var(--gks-radius-sm);
    overflow: hidden;
    background: var(--gks-line);
    box-shadow: var(--gks-shadow-sm);
    margin: 0;
    animation: gks-rise .5s var(--gks-ease-out) both;
}
.gks-gallery__item:nth-child(odd)  { animation-delay: .05s; }
.gks-gallery__item:nth-child(even) { animation-delay: .12s; }
.gks-gallery__item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: transform .35s var(--gks-ease-out);
}
.gks-gallery__item:hover img { transform: scale(1.05); }
.gks-gallery__item figcaption {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 22px 12px 10px;
    background: linear-gradient(transparent, rgba(29, 20, 64, .75));
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

/* hidden özniteliğine saygı: JS lightbox.hidden=true dediğinde
   overlay gerçekten gizlenmeli (display:grid, [hidden]'ı ezmesin) */
.gks-lightbox[hidden] { display: none !important; }
.gks-lightbox {
    position: fixed;
    inset: 0;
    z-index: 90;
    background: rgba(29, 20, 64, .93);
    display: grid;
    place-items: center;
    padding: 20px;
    animation: gks-fade .2s ease both;
}
@keyframes gks-fade { from { opacity: 0; } to { opacity: 1; } }
.gks-lightbox img {
    max-width: 100%;
    max-height: 86dvh;
    border-radius: 14px;
    animation: gks-pop .3s var(--gks-ease-pop) both;
}
.gks-lightbox__close {
    position: absolute;
    top: max(16px, env(safe-area-inset-top));
    right: 16px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .14);
    color: #fff;
    font-size: 17px;
    cursor: pointer;
}

/* ── Profil ────────────────────────────────────────────────── */
.gks-profile-card {
    display: flex;
    gap: 14px;
    align-items: center;
    background: var(--gks-surface);
    border-radius: var(--gks-radius-sm);
    padding: 16px;
    box-shadow: var(--gks-shadow-sm);
    margin-bottom: 14px;
}
.gks-profile-card__name { display: block; font-family: var(--gks-font-display); font-size: 17px; font-weight: 800; }
.gks-profile-card__meta { display: block; font-size: 12.5px; color: var(--gks-ink-soft); margin-top: 2px; }

.gks-install {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 0;
    text-align: left;
    background: linear-gradient(120deg, #F1EBFF, #E4F3FF);
    border-radius: var(--gks-radius-sm);
    padding: 14px 16px;
    margin-bottom: 20px;
    cursor: pointer;
    font-family: var(--gks-font-body);
    box-shadow: var(--gks-shadow-sm);
    transition: transform .15s var(--gks-ease-pop);
}
.gks-install:active { transform: scale(.97); }
.gks-install__icon { font-size: 24px; }
.gks-install__text { flex: 1; }
.gks-install__text strong { display: block; font-size: 14px; color: var(--gks-ink); }
.gks-install__text small { font-size: 12px; color: var(--gks-ink-soft); }
.gks-install__cta {
    background: var(--gks-violet);
    color: #fff;
    font-weight: 800;
    font-size: 13px;
    padding: 8px 16px;
    border-radius: 999px;
}

.gks-form--card {
    background: var(--gks-surface);
    border-radius: var(--gks-radius-sm);
    padding: 18px 16px;
    box-shadow: var(--gks-shadow-sm);
}
.gks-field__wrap--readonly { opacity: .65; }
.gks-field__wrap--readonly .gks-field__input { color: var(--gks-ink-soft); }

.gks-logout {
    display: block;
    text-align: center;
    margin-top: 18px;
    padding: 14px;
    border-radius: var(--gks-radius-sm);
    background: #FFE9EE;
    color: #B3123B;
    font-weight: 800;
    font-size: 14.5px;
    text-decoration: none;
    transition: transform .15s var(--gks-ease-pop);
}
.gks-logout:active { transform: scale(.97); }

/* ============================================================
   PAKET 5 — ONLINE ÖDEME
   ============================================================ */
.gks-topup {
    background: var(--gks-surface);
    border-radius: var(--gks-radius);
    padding: 18px 16px;
    box-shadow: var(--gks-shadow-sm);
    margin-bottom: 22px;
}
.gks-topup__form { display: flex; flex-direction: column; gap: 14px; margin-top: 4px; }
.gks-topup__amounts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.gks-topup__chip {
    padding: 12px 6px;
    border: 2px solid var(--gks-line);
    border-radius: 13px;
    background: var(--gks-bg);
    font-family: var(--gks-font-display);
    font-size: 15px;
    font-weight: 800;
    color: var(--gks-ink);
    cursor: pointer;
    transition: all .15s var(--gks-ease-pop);
}
.gks-topup__chip:active { transform: scale(.94); }
.gks-topup__chip.is-active {
    border-color: var(--gks-violet);
    background: #F1EBFF;
    color: var(--gks-violet-dk);
    transform: scale(1.04);
}
.gks-topup__providers { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.gks-topup__provider input { position: absolute; opacity: 0; pointer-events: none; }
.gks-topup__provider-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 12px 8px;
    border: 2px solid var(--gks-line);
    border-radius: 13px;
    background: var(--gks-bg);
    font-size: 14px;
    cursor: pointer;
    transition: all .15s var(--gks-ease-pop);
}
.gks-topup__provider-box small { font-size: 10.5px; color: #B58A00; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; }
.gks-topup__provider input:checked + .gks-topup__provider-box {
    border-color: var(--gks-violet);
    background: #F1EBFF;
    transform: scale(1.02);
}
.gks-topup__note { font-size: 12px; color: var(--gks-ink-soft); text-align: center; line-height: 1.55; margin: 0; }

/* Makbuz */
.gks-receipt {
    background: var(--gks-surface);
    border-radius: var(--gks-radius);
    padding: 26px 20px;
    box-shadow: var(--gks-shadow);
    text-align: center;
}
.gks-receipt--ok   { border-top: 5px solid var(--gks-mint); }
.gks-receipt--fail { border-top: 5px solid var(--gks-coral); }
.gks-receipt__icon { font-size: 46px; animation: gks-pop .5s var(--gks-ease-pop) .1s both; }
.gks-receipt__title { font-family: var(--gks-font-display); font-size: 21px; font-weight: 800; margin-top: 6px; }
.gks-receipt__amount { font-family: var(--gks-font-display); font-size: 34px; font-weight: 800; color: var(--gks-violet-dk); margin: 6px 0; }
.gks-receipt__text { font-size: 14px; color: var(--gks-ink-soft); line-height: 1.6; }
.gks-receipt__meta { font-size: 12.5px; color: var(--gks-ink-soft); }
.gks-receipt__rows {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 8px 14px;
    text-align: left;
    margin: 18px auto 0;
    max-width: 300px;
    font-size: 13.5px;
    background: var(--gks-bg);
    border-radius: 14px;
    padding: 14px 16px;
}
.gks-receipt__rows dt { color: var(--gks-ink-soft); font-weight: 700; }
.gks-receipt__rows dd { margin: 0; text-align: right; font-weight: 700; overflow-wrap: anywhere; }

.gks-btn--ghost {
    background: var(--gks-bg);
    color: var(--gks-ink-soft);
    box-shadow: none;
    margin-top: 10px;
}

/* ============================================================
   PAKET 6 — BİLDİRİMLER & HABERLER
   ============================================================ */
.gks-bell {
    position: fixed;
    top: max(14px, env(safe-area-inset-top));
    right: max(14px, calc((100vw - 430px) / 2 + 14px));
    z-index: 45;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--gks-ink);
    box-shadow: var(--gks-shadow-sm);
    text-decoration: none;
    transition: transform .15s var(--gks-ease-pop);
}
@media (max-width: 458px) { .gks-bell { right: 14px; } }
.gks-bell svg { width: 21px; height: 21px; }
.gks-bell:active { transform: scale(.9); }
.gks-bell__badge {
    position: absolute;
    top: -3px;
    right: -3px;
    min-width: 19px;
    height: 19px;
    padding: 0 5px;
    border-radius: 999px;
    background: var(--gks-coral);
    color: #fff;
    font-size: 10.5px;
    font-weight: 800;
    display: grid;
    place-items: center;
    box-shadow: 0 0 0 2.5px var(--gks-bg);
    animation: gks-pop .4s var(--gks-ease-pop) both;
}

.gks-notiflist { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 14px; }
.gks-notif__btn {
    width: 100%;
    display: flex;
    gap: 11px;
    align-items: flex-start;
    text-align: left;
    border: 0;
    background: var(--gks-surface);
    border-radius: var(--gks-radius-sm);
    padding: 14px 15px;
    box-shadow: var(--gks-shadow-sm);
    cursor: pointer;
    font-family: var(--gks-font-body);
    transition: transform .15s var(--gks-ease-pop);
}
.gks-notif__btn:active { transform: scale(.98); }
.gks-notif__dot {
    flex: 0 0 auto;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    margin-top: 6px;
    background: var(--gks-line);
}
.gks-notif--unread .gks-notif__dot { background: var(--gks-violet); box-shadow: 0 0 0 4px rgba(108,62,245,.15); }
.gks-notif--unread .gks-notif__title { color: var(--gks-violet-dk); }
.gks-notif__body { flex: 1; min-width: 0; }
.gks-notif__title { display: block; font-weight: 800; font-size: 14.5px; color: var(--gks-ink); }
.gks-notif__text { display: block; font-size: 13.5px; color: var(--gks-ink-soft); line-height: 1.5; margin-top: 3px; }
.gks-notif__meta { display: block; font-size: 11.5px; color: var(--gks-ink-soft); opacity: .8; margin-top: 6px; font-weight: 700; }

/* Haber kartları */
.gks-newslist { display: flex; flex-direction: column; gap: 10px; }
.gks-newscard {
    display: block;
    background: var(--gks-surface);
    border-radius: var(--gks-radius-sm);
    padding: 14px 15px;
    box-shadow: var(--gks-shadow-sm);
    text-decoration: none;
    color: var(--gks-ink);
    transition: transform .15s var(--gks-ease-pop);
}
.gks-newscard:active { transform: scale(.98); }
.gks-newscard__thumb {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16 / 7;
    margin-bottom: 10px;
    background: var(--gks-line);
}
.gks-newscard__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gks-newscard__title { display: block; font-family: var(--gks-font-display); font-weight: 800; font-size: 15.5px; }
.gks-newscard__excerpt { display: block; font-size: 13px; color: var(--gks-ink-soft); line-height: 1.5; margin-top: 4px; }
.gks-newscard__date { display: block; font-size: 11.5px; color: var(--gks-ink-soft); opacity: .8; margin-top: 7px; font-weight: 700; }

/* Makale gövdesi */
.gks-article__cover {
    margin: 0 0 16px;
    border-radius: var(--gks-radius-sm);
    overflow: hidden;
    box-shadow: var(--gks-shadow-sm);
}
.gks-article__cover img { width: 100%; display: block; }
.gks-article__body {
    background: var(--gks-surface);
    border-radius: var(--gks-radius-sm);
    padding: 18px 16px;
    box-shadow: var(--gks-shadow-sm);
    font-size: 14.5px;
    line-height: 1.75;
    color: var(--gks-ink);
    overflow-wrap: anywhere;
}
.gks-article__body--page { background: transparent; box-shadow: none; padding: 4px 0 0; }
.gks-article__body h2, .gks-article__body h3, .gks-article__body h4 {
    font-family: var(--gks-font-display);
    margin: 18px 0 8px;
}
.gks-article__body p { margin: 0 0 12px; }
.gks-article__body ul, .gks-article__body ol { margin: 0 0 12px 20px; }
.gks-article__body a { color: var(--gks-violet); font-weight: 700; }

/* ============================================================
   PAKET 7 — İLETİŞİM + BAĞLANTILAR
   ============================================================ */
.gks-contactcard {
    background: linear-gradient(135deg, var(--gks-ink) 0%, #35226B 100%);
    color: #fff;
    border-radius: var(--gks-radius);
    padding: 18px 16px;
    box-shadow: var(--gks-shadow);
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.gks-contactcard__row { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; line-height: 1.5; }
.gks-contactcard__ico { flex: 0 0 auto; }
.gks-contactcard__actions { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 4px; }
.gks-btn--mini {
    padding: 9px 16px;
    font-size: 13.5px;
    border-radius: 12px;
    box-shadow: none;
    background: rgba(255,255,255,.14);
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.gks-btn--wa { background: #1FAF57; }
.gks-btn--ig { background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF); }

.gks-footlinks {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    justify-content: center;
    padding: 4px 8px 14px;
    font-size: 12.5px;
}
.gks-footlinks a { color: var(--gks-ink-soft); text-decoration: none; font-weight: 700; }
.gks-footlinks a:first-child { color: var(--gks-violet); }

/* ============================================================
   PAKET 8 — YÜKLEME KODU (müşteri)
   ============================================================ */
.gks-vcode {
    margin: 16px auto 4px;
    max-width: 320px;
    background: linear-gradient(135deg, #F1EBFF, #E7F6FF);
    border: 2px dashed var(--gks-violet);
    border-radius: var(--gks-radius-sm);
    padding: 16px 14px;
}
.gks-vcode__label {
    display: block;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gks-violet-dk);
}
.gks-vcode__digits { display: flex; justify-content: center; gap: 6px; margin: 10px 0; }
.gks-vcode__digits b {
    display: grid;
    place-items: center;
    width: 38px;
    height: 48px;
    background: var(--gks-surface);
    border-radius: 10px;
    box-shadow: var(--gks-shadow-sm);
    font-family: var(--gks-font-display);
    font-size: 26px;
    font-weight: 800;
    color: var(--gks-ink);
}
.gks-vcode__hint { display: block; font-size: 12px; color: var(--gks-ink-soft); line-height: 1.5; }

.gks-tx__code {
    display: inline-block;
    margin-top: 5px;
    font-size: 11.5px;
    font-weight: 700;
    color: var(--gks-violet-dk);
    background: #F1EBFF;
    border-radius: 8px;
    padding: 3px 8px;
}
.gks-tx__code b { font-family: var(--gks-font-display); letter-spacing: .06em; }

/* ============================================================
   PAKET 9 — MİSAFİR VİTRİNİ & ETKİNLİKLER
   ============================================================ */
.gks-hero--welcome {
    position: relative;
    overflow: hidden;
    height: auto;                 /* eski .gks-hero height:128px'i ez */
    display: block;               /* eski grid yerleşimini ez */
    background: linear-gradient(150deg, var(--gks-ink) 0%, #35226B 60%, #4A2A8F 100%);
    color: #fff;
    border-radius: var(--gks-radius);
    padding: 30px 20px 24px;
    box-shadow: var(--gks-shadow);
    text-align: center;
    margin-bottom: 22px;
}
.gks-hero--welcome::before {
    /* Yumuşak ışık halesi — tek, kontrollü süs */
    content: '';
    position: absolute;
    top: -90px;
    left: 50%;
    transform: translateX(-50%);
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,.14) 0%, transparent 62%);
    pointer-events: none;
}
.gks-hero__logo { width: 84px; height: 56px; display: block; margin: 0 auto; position: relative; }
.gks-hero__title { font-family: var(--gks-font-display); font-size: 23px; font-weight: 800; margin: 12px 0 6px; position: relative; }
.gks-hero__text { font-size: 14px; line-height: 1.6; opacity: .88; position: relative; }
.gks-hero__cta { margin-top: 16px; text-decoration: none; position: relative; }
.gks-hero__perks {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 16px;
    font-size: 12px;
    font-weight: 700;
    opacity: .85;
    position: relative;
}

.gks-nav__item--login { color: var(--gks-violet); }
.gks-nav__item--login svg { stroke: var(--gks-violet); }
.gks-nav__item--login span { font-weight: 800; }

.gks-eventcard { position: relative; }
.gks-eventcard__date {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 800;
    color: var(--gks-violet-dk);
    background: #F1EBFF;
    border-radius: 9px;
    padding: 4px 9px;
    margin-bottom: 7px;
}
.gks-eventcard__date b { font-family: var(--gks-font-display); font-size: 16px; }
.gks-newslist--past { opacity: .72; }

.gks-ministrip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.gks-ministrip__item {
    display: block;
    aspect-ratio: 1/1;
    border-radius: 13px;
    overflow: hidden;
    background: var(--gks-line);
    box-shadow: var(--gks-shadow-sm);
}
.gks-ministrip__item img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ============================================================
   PAKET 10 — HABER SLIDER'I
   ============================================================ */
.gks-slider { position: relative; }
.gks-slider__track {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
}
.gks-slider__track::-webkit-scrollbar { display: none; }
.gks-slider__slide {
    flex: 0 0 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    text-decoration: none;
    color: inherit;
}
.gks-slide-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--gks-surface);
    border-radius: var(--gks-radius-sm);
    box-shadow: var(--gks-shadow-sm);
    overflow: hidden;
    transition: transform .15s var(--gks-ease-pop);
}
.gks-slider__slide:active .gks-slide-card { transform: scale(.985); }
.gks-slide-card__media {
    display: block;
    aspect-ratio: 16 / 7;
    background: var(--gks-line);
}
.gks-slide-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gks-slide-card__media--fallback {
    display: grid;
    place-items: center;
    font-size: 40px;
    background: linear-gradient(135deg, #F1EBFF, #E7F6FF);
}
.gks-slide-card__body { display: flex; flex-direction: column; padding: 13px 15px 14px; }

.gks-slider__dots {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: 11px;
}
.gks-slider__dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: var(--gks-line);
    cursor: pointer;
    transition: all .25s var(--gks-ease-pop);
}
.gks-slider__dot.is-active { width: 22px; background: var(--gks-violet); }

/* ============================================================
   PAKET 11 — ANA SAYFA HERO/BANNER SLIDER
   ============================================================ */
.gks-heroslider { margin-bottom: 22px; }
.gks-heroslider .gks-slider__track { gap: 0; }
/* Slaytlar eşit yükseklikte olsun: karşılama içeriği yüksekliği belirler,
   banner görselleri o yüksekliği doldurur */
.gks-heroslider .gks-slider__slide { display: flex; }
.gks-heroslider .gks-hero--welcome { margin-bottom: 0; width: 100%; }

.gks-heroslide {
    position: relative;
    display: flex;
    align-items: flex-end;
    width: 100%;
    min-height: 100%;
    border-radius: var(--gks-radius);
    overflow: hidden;
    background-color: var(--gks-ink);
    background-size: cover;
    background-position: center;
    text-decoration: none;
    color: #fff;
    box-shadow: var(--gks-shadow);
}
/* Görsel üstündeki yazılar okunsun diye alttan yumuşak karartma */
.gks-heroslide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(20,14,45,.80) 0%, rgba(20,14,45,.20) 46%, rgba(20,14,45,0) 72%);
    pointer-events: none;
}
.gks-heroslide__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 18px 20px 20px;
    width: 100%;
}
.gks-heroslide__title { font-family: var(--gks-font-display); font-size: 21px; font-weight: 800; line-height: 1.2; }
.gks-heroslide__sub { font-size: 13.5px; opacity: .92; line-height: 1.5; }
.gks-heroslide__btn {
    align-self: flex-start;
    margin-top: 9px;
    background: #fff;
    color: var(--gks-violet-dk);
    font-weight: 800;
    font-size: 13.5px;
    padding: 9px 18px;
    border-radius: 999px;
    box-shadow: var(--gks-shadow-sm);
}
.gks-slider__slide:active .gks-heroslide { transform: scale(.99); transition: transform .15s var(--gks-ease-pop); }
