@charset "UTF-8";
/* =====================================================================
   GUIDE CENTER X — "Güç Yolu" görsel katmanı (UI-BRIEF.md uygulaması)
   guide-center.css'in USTUNE yuklenir; veri katmanina dokunmaz.
   Prefix: gcx-  |  Nadirlik: t1 yesil, t2 mavi, t3 mor, t4 altin-kizil
   ===================================================================== */

:root{
    --gcx-t1: 90, 209, 122;
    --gcx-t2: 96, 165, 255;
    --gcx-t3: 178, 121, 255;
    --gcx-t4: 255, 176, 64;
    --gcx-ink: #e9eef8;
    --gcx-dim: rgba(233, 238, 248, .62);
    --gcx-line: rgba(255, 255, 255, .09);
    --gcx-bg: linear-gradient(175deg, rgba(17, 22, 35, .92), rgba(8, 11, 18, .97));
}

/* ============================ GÜÇ YOLU ============================ */
.gcx-power-path{ position: relative; }
.gcx-path-track{
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    position: relative;
    align-items: stretch;
}
/* Kademeler arasi akan enerji hatti */
.gcx-path-track::before{
    content: "";
    position: absolute;
    left: 4%;
    right: 4%;
    top: 92px;
    height: 2px;
    background: linear-gradient(90deg,
        rgba(var(--gcx-t1), .55) 0 22%,
        rgba(var(--gcx-t2), .55) 30% 47%,
        rgba(var(--gcx-t3), .55) 55% 72%,
        rgba(var(--gcx-t4), .75) 80% 100%);
    z-index: 0;
    mask: linear-gradient(90deg, #000 0 100%);
}
.gcx-path-track::after{
    content: "";
    position: absolute;
    left: 4%;
    right: 4%;
    top: 91px;
    height: 4px;
    background: linear-gradient(90deg, transparent 0 12%, rgba(255,255,255,.85) 16%, transparent 22%);
    background-size: 240% 100%;
    animation: gcxFlow 4.5s linear infinite;
    opacity: .5;
    z-index: 0;
    pointer-events: none;
}
@keyframes gcxFlow{ from{ background-position: 240% 0; } to{ background-position: -140% 0; } }

.gcx-tier{
    --tc: var(--gcx-t1);
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(var(--tc), .34);
    border-radius: 16px;
    background: var(--gcx-bg);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.05), 0 14px 34px rgba(0,0,0,.4);
    padding: 16px 14px 14px;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.gcx-tier:hover{
    transform: translateY(-5px);
    border-color: rgba(var(--tc), .7);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.07), 0 20px 44px rgba(0,0,0,.5), 0 0 26px -6px rgba(var(--tc), .55);
}
.gcx-tier.is-t2{ --tc: var(--gcx-t2); }
.gcx-tier.is-t3{ --tc: var(--gcx-t3); }
.gcx-tier.is-t4{
    --tc: var(--gcx-t4);
    border-width: 1px;
    background:
        radial-gradient(120% 90% at 50% -10%, rgba(255, 176, 64, .16), transparent 55%),
        var(--gcx-bg);
}
.gcx-tier.is-t4::before{
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(120deg, rgba(255,120,50,.7), rgba(255,215,106,.9), rgba(255,120,50,.7));
    background-size: 220% 100%;
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: gcxLegend 3.4s linear infinite;
    pointer-events: none;
}
@keyframes gcxLegend{ from{ background-position: 0 0; } to{ background-position: 220% 0; } }

.gcx-tier-badge{
    align-self: center;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 4px 13px;
    border-radius: 20px;
    border: 1px solid rgba(var(--tc), .5);
    background: rgba(var(--tc), .12);
    color: rgb(var(--tc));
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    white-space: nowrap;
}
.gcx-tier-badge i{ font-size: 10px; }
.gcx-tier h3{
    margin: 10px 0 2px;
    text-align: center;
    color: var(--gcx-ink);
    font-size: 16.5px;
    font-weight: 800;
    letter-spacing: .02em;
}
.gcx-tier .gcx-tier-sub{
    display: block;
    text-align: center;
    color: var(--gcx-dim);
    font-size: 11.5px;
    margin-bottom: 12px;
    min-height: 15px;
}
.gcx-tier-items{
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}
/* Kaynak cipi: kademenin nereden kazanildigi */
.gcx-source-chip{
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 11px;
    border-radius: 10px;
    border: 1px dashed rgba(var(--tc), .4);
    background: rgba(var(--tc), .06);
    color: var(--gcx-dim);
    font-size: 11.5px;
    line-height: 1.45;
}
.gcx-source-chip i{ color: rgb(var(--tc)); flex: 0 0 14px; text-align: center; }
.gcx-source-chip b{ color: var(--gcx-ink); font-weight: 700; }
.gcx-source-chip a{ color: rgb(var(--tc)); font-weight: 700; }

/* -------- Set karti: ayni setin parcalari TEK kartta (ikon kolaji) -------- */
.gcx-set-card{
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(var(--tc), .28);
    background: rgba(255,255,255,.025);
    cursor: pointer;
    transition: background .18s ease, border-color .18s ease, transform .18s ease;
    text-align: left;
    width: 100%;
}
.gcx-set-card:hover, .gcx-set-card:focus-visible{
    background: rgba(var(--tc), .08);
    border-color: rgba(var(--tc), .6);
    transform: translateX(3px);
}
.gcx-collage{
    position: relative;
    flex: 0 0 62px;
    height: 56px;
}
.gcx-collage img{
    position: absolute;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    border: 1px solid rgba(var(--tc), .55);
    background: #131826;
    box-shadow: 0 4px 10px rgba(0,0,0,.5);
    object-fit: cover;
}
.gcx-collage img:nth-child(1){ left: 0; top: 9px; z-index: 3; }
.gcx-collage img:nth-child(2){ left: 14px; top: 2px; z-index: 2; transform: rotate(5deg); }
.gcx-collage img:nth-child(3){ left: 25px; top: 14px; z-index: 1; transform: rotate(-6deg); }
.gcx-collage.is-single img{ position: static; width: 52px; height: 52px; transform: none; }
.gcx-set-copy{ min-width: 0; flex: 1; }
.gcx-set-copy strong{
    display: block;
    color: var(--gcx-ink);
    font-size: 13.5px;
    font-weight: 800;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.gcx-set-copy small{ display: block; color: var(--gcx-dim); font-size: 11px; margin-top: 2px; }
.gcx-piece-badge{
    flex: 0 0 auto;
    align-self: center;
    padding: 3px 9px;
    border-radius: 11px;
    background: rgba(var(--tc), .14);
    border: 1px solid rgba(var(--tc), .4);
    color: rgb(var(--tc));
    font-size: 10.5px;
    font-weight: 800;
    white-space: nowrap;
}
.gcx-upg-chips{ display: inline-flex; gap: 4px; margin-left: 6px; vertical-align: 1px; }
.gcx-upg-chips b{
    padding: 1px 6px;
    border-radius: 8px;
    background: rgba(var(--tc), .16);
    color: rgb(var(--tc));
    font-size: 10px;
    font-weight: 800;
}

/* ============================ AV SAHNESİ ============================ */
.gcx-hunt-stage{ margin-top: 8px; }
.gcx-hunt-tabs{
    display: flex;
    gap: 8px;
    padding: 6px;
    border: 1px solid var(--gcx-line);
    border-radius: 14px;
    background: rgba(10, 14, 22, .85);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.gcx-hunt-tab{
    flex: 1 1 0;
    min-width: 150px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 13px;
    border: 1px solid transparent;
    border-radius: 10px;
    background: transparent;
    color: var(--gcx-dim);
    cursor: pointer;
    text-align: left;
    transition: background .18s ease, border-color .18s ease, color .18s ease;
}
.gcx-hunt-tab .gcx-step-no{
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 215, 106, .4);
    color: #ffd76a;
    font-weight: 800;
    font-size: 12px;
    background: rgba(255, 215, 106, .06);
}
.gcx-hunt-tab strong{ display: block; color: inherit; font-size: 13px; font-weight: 800; line-height: 1.2; }
.gcx-hunt-tab small{ display: block; font-size: 10.5px; opacity: .75; margin-top: 2px; }
.gcx-hunt-tab:hover{ color: #fff; background: rgba(255,255,255,.04); }
.gcx-hunt-tab[aria-selected="true"]{
    color: #16110a;
    background: linear-gradient(180deg, #ffe9a8, #ffcf5e);
    border-color: rgba(255,255,255,.35);
    box-shadow: 0 6px 18px rgba(0,0,0,.4);
}
.gcx-hunt-tab[aria-selected="true"] .gcx-step-no{
    border-color: rgba(22, 17, 10, .5);
    color: #16110a;
    background: rgba(255,255,255,.35);
}
.gcx-hunt-tab[aria-selected="true"] small{ opacity: .8; }

.gcx-hunt-panel{ margin-top: 14px; }
.gcx-hunt-panel[hidden]{ display: none; }
.gcx-hunt-panel:not([hidden]){ animation: gcxPanelIn .22s ease-out; }
@keyframes gcxPanelIn{ from{ opacity: 0; transform: translateY(6px); } to{ opacity: 1; transform: none; } }

.gcx-hunt-grid{
    display: grid;
    grid-template-columns: minmax(280px, 340px) minmax(0, 1fr);
    gap: 16px;
    align-items: start;
}
.gcx-hunt-left{
    position: sticky;
    top: 76px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.gcx-hunt-purpose{
    border: 1px solid var(--gcx-line);
    border-radius: 14px;
    background: var(--gcx-bg);
    padding: 14px 16px;
}
.gcx-hunt-purpose .gc-eyebrow{ margin-bottom: 4px; }
.gcx-hunt-purpose h3{ margin: 0 0 6px; color: var(--gcx-ink); font-size: 16px; font-weight: 800; }
.gcx-hunt-purpose p{ margin: 0; color: var(--gcx-dim); font-size: 12.5px; line-height: 1.55; }
.gcx-hunt-meta{ display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.gcx-hunt-meta span{
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 9px;
    border: 1px solid var(--gcx-line);
    background: rgba(255,255,255,.03);
    color: var(--gcx-dim);
    font-size: 11px;
}
.gcx-hunt-meta span i{ color: #ffd76a; }
.gcx-hunt-next{
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 10px 13px;
    border-radius: 12px;
    border: 1px dashed rgba(90, 209, 122, .45);
    background: rgba(90, 209, 122, .06);
    color: #b9e8c5;
    font-size: 12px;
    line-height: 1.45;
}
.gcx-hunt-next i{ color: #5ad17a; }

/* ============================ GENEL DOKUNUŞLAR ============================ */
/* Item kartlarina nadirlik ısıltısı (upgrade seviyesine gore JS data-gcx-tier basar) */
.gc-item-card{ transition: transform .18s ease, box-shadow .18s ease; }
.gc-item-card:hover{ transform: translateY(-3px); }
.gc-item-card[data-gcx-tier="2"] .gc-rarity-frame{ box-shadow: inset 0 0 0 2px rgba(var(--gcx-t2), .55); }
.gc-item-card[data-gcx-tier="3"] .gc-rarity-frame{ box-shadow: inset 0 0 0 2px rgba(var(--gcx-t3), .55); }
.gc-item-card[data-gcx-tier="4"] .gc-rarity-frame{
    box-shadow: inset 0 0 0 2px rgba(var(--gcx-t4), .7), 0 0 14px -2px rgba(var(--gcx-t4), .5);
}

/* Kademeler ekrana girerken yumusak dogus */
.gcx-reveal{ opacity: 0; transform: translateY(14px); }
.gcx-reveal.is-in{ opacity: 1; transform: none; transition: opacity .4s ease, transform .4s ease; }

@media (max-width: 1100px){
    .gcx-path-track{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .gcx-path-track::before, .gcx-path-track::after{ display: none; }
}
@media (max-width: 900px){
    .gcx-hunt-grid{ grid-template-columns: 1fr; }
    .gcx-hunt-left{ position: static; }
}
@media (max-width: 620px){
    .gcx-path-track{ grid-template-columns: 1fr; }
    .gcx-hunt-tab{ min-width: 130px; }
}
@media (prefers-reduced-motion: reduce){
    .gcx-path-track::after, .gcx-tier.is-t4::before{ animation: none !important; }
    .gcx-hunt-panel:not([hidden]){ animation: none; }
    .gcx-reveal{ opacity: 1; transform: none; }
}

/* === Etkinlikler view: tablo + pill bilesenleri (2026-07) === */
.gc-table-wrap{ width:100%; overflow-x:auto; border-radius:14px; }
.gc-events-table{ width:100%; border-collapse:separate; border-spacing:0; font-size:14px; min-width:520px; }
.gc-events-table thead th{
    text-align:left; padding:12px 16px; font-size:11.5px; font-weight:800; letter-spacing:.06em; text-transform:uppercase;
    color:rgba(229,235,245,.6); background:rgba(255,255,255,.03); border-bottom:1px solid rgba(255,255,255,.09);
}
.gc-events-table thead th:first-child{ border-top-left-radius:14px; }
.gc-events-table thead th:last-child{ border-top-right-radius:14px; }
.gc-events-table tbody td{ padding:13px 16px; border-bottom:1px solid rgba(255,255,255,.055); vertical-align:middle; }
.gc-events-table tbody tr:last-child td{ border-bottom:none; }
.gc-events-table tbody tr:hover td{ background:rgba(255,255,255,.02); }
.gc-events-table tbody tr.is-today td{
    background:linear-gradient(90deg, rgba(255,201,40,.10), rgba(255,201,40,.02));
    box-shadow:inset 3px 0 0 #ffd76a;
}
.gc-pill{
    display:inline-flex; align-items:center; gap:5px; padding:3px 10px; border-radius:999px;
    font-size:11px; font-weight:800; letter-spacing:.03em; white-space:nowrap;
    background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.12); color:rgba(229,235,245,.85);
}
.gc-pill.gold{ background:rgba(255,201,40,.14); border-color:rgba(255,201,40,.34); color:#ffe6a2; }
.gc-pill.party{ background:rgba(124,196,255,.14); border-color:rgba(124,196,255,.32); color:#bcdcff; }
.gc-pill.warn{ background:rgba(89,217,142,.13); border-color:rgba(89,217,142,.30); color:#a7ecc4; }

/* === Onboarding: Sunucu Avantajlarin showcase (2026-07) === */
.gc-starter-server{
    margin:0 0 22px; padding:20px; border-radius:18px;
    background:
        radial-gradient(120% 160% at 0% 0%, rgba(255,201,40,.08), transparent 55%),
        linear-gradient(180deg, rgba(24,17,10,.6), rgba(12,9,6,.75));
    border:1px solid rgba(255,201,40,.24);
    box-shadow:inset 0 1px 0 rgba(255,255,255,.05), 0 14px 34px rgba(0,0,0,.34);
}
.gc-starter-server-head{ margin-bottom:15px; }
.gc-starter-server-head .gc-eyebrow{ color:#ffd76a; }
.gc-starter-server-head h3{ margin:6px 0 4px; font-size:20px; color:#fff; line-height:1.15; }
.gc-starter-server-head p{ margin:0; font-size:13px; color:rgba(229,235,245,.62); max-width:640px; }
.gc-starter-server-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:12px; }
.gc-server-card{
    display:flex; flex-direction:column; gap:8px; padding:16px; border-radius:14px; text-decoration:none;
    background:rgba(255,255,255,.035); border:1px solid rgba(255,255,255,.09);
    transition:transform .16s ease, border-color .16s ease, background .16s ease;
}
.gc-server-card:hover{ transform:translateY(-2px); border-color:rgba(255,201,40,.4); background:rgba(255,201,40,.06); }
.gc-server-card.is-live{ border-color:rgba(255,201,40,.34); background:linear-gradient(180deg, rgba(255,201,40,.1), rgba(255,201,40,.02)); }
.gc-server-card-top{ display:flex; align-items:center; justify-content:space-between; }
.gc-server-card-top > i.fa{
    width:38px; height:38px; border-radius:11px; display:inline-flex; align-items:center; justify-content:center;
    font-size:17px; color:#ffd76a; background:rgba(255,201,40,.12); border:1px solid rgba(255,201,40,.26);
}
.gc-server-card h4{ margin:0; font-size:15px; font-weight:800; color:#fff; line-height:1.25; }
.gc-server-card p{ margin:0; font-size:12.5px; line-height:1.55; color:rgba(229,235,245,.66); }
.gc-server-card p b{ color:#ffe6a2; }
.gc-server-card > b{ margin-top:auto; font-size:12.5px; font-weight:800; color:#ffd76a; display:inline-flex; align-items:center; gap:6px; }
.gc-starter-footer-actions{ display:flex; flex-wrap:wrap; gap:10px; }
@media (max-width:860px){ .gc-starter-server-grid{ grid-template-columns:1fr; } }

/* ==========================================================================
   GCX ONBOARDING MODAL (v35.2.0) — class secilince acilan pop-up; kocaman
   secenek kutulari (hub) + tek tek okunan detay panelleri (stage/panel).
   ========================================================================== */
body.gcx-modal-open { overflow: hidden; }

.gcx-modal:not([hidden]) {
    position: fixed;
    inset: 0;
    z-index: 4000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: clamp(12px, 4vh, 56px) 16px;
    background: rgba(6, 8, 12, .80);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    overflow-y: auto;
    animation: gcx-modal-fade .18s ease;
}
@keyframes gcx-modal-fade { from { opacity: 0; } to { opacity: 1; } }

.gcx-sheet {
    width: 100%;
    max-width: 940px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    background: linear-gradient(180deg, #141821, #0b0e15);
    border: 1px solid rgba(255, 221, 135, .16);
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .6);
    padding: clamp(20px, 3vw, 34px);
    animation: gcx-sheet-pop .2s ease;
}
@keyframes gcx-sheet-pop { from { transform: translateY(14px); opacity: 0; } to { transform: none; opacity: 1; } }

.gcx-sheet-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; margin-bottom: 16px; }
.gcx-sheet-head-copy h2 { margin: 6px 0 8px; font-size: clamp(22px, 3vw, 30px); color: #fff; line-height: 1.2; }
.gcx-sheet-head-copy p { margin: 0; color: #c7c1b4; font-size: 14.5px; line-height: 1.55; max-width: 62ch; }
.gcx-sheet-head-actions { display: flex; gap: 8px; flex-shrink: 0; }
.gcx-sheet-close { width: 42px; height: 42px; border-radius: 12px; border: 1px solid rgba(255, 255, 255, .14); background: rgba(255, 255, 255, .05); color: #fff; cursor: pointer; font-size: 16px; line-height: 1; }
.gcx-sheet-close:hover, .gcx-sheet-close:focus-visible { background: rgba(231, 76, 60, .16); border-color: rgba(231, 76, 60, .42); color: #ff9a9c; outline: none; }

.gcx-progress { height: 6px; border-radius: 999px; background: rgba(255, 255, 255, .08); overflow: hidden; margin-bottom: 10px; }
.gcx-progress-fill { display: block; height: 100%; width: 0; border-radius: 999px; background: linear-gradient(90deg, #ffd76a, #ffb020); transition: width .3s ease; }
.gcx-hub-hint { margin: 0 0 16px; color: #b9b3a6; font-size: 13px; }
.gcx-hub-hint b { color: #ffd76a; }

.gcx-tiles { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.gcx-tile { display: flex; align-items: center; gap: 14px; text-align: left; padding: 15px 18px; border-radius: 14px; border: 1px solid rgba(255, 255, 255, .1); background: linear-gradient(180deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .02)); color: #e9e3d6; cursor: pointer; min-height: 78px; transition: transform .14s ease, border-color .14s ease, background .14s ease; }
.gcx-tile:hover, .gcx-tile:focus-visible { transform: translateY(-2px); border-color: rgba(255, 215, 106, .5); background: rgba(255, 215, 106, .06); outline: none; }
.gcx-tile-num { font-size: 11px; font-weight: 800; color: #7d766a; min-width: 20px; letter-spacing: .04em; }
.gcx-tile-ic { font-size: 22px; color: #ffd76a; width: 30px; text-align: center; flex-shrink: 0; }
.gcx-tile-txt { display: flex; flex-direction: column; gap: 3px; flex: 1; min-width: 0; }
.gcx-tile-txt strong { font-size: 15.5px; color: #fff; font-weight: 700; }
.gcx-tile-txt small { font-size: 12.5px; color: #b0aa9d; line-height: 1.4; }
.gcx-tile-state { flex-shrink: 0; width: 24px; text-align: center; }
.gcx-tile-done { display: none; color: #6ee7a0; font-size: 16px; }
.gcx-tile-go { color: #8a8478; font-size: 14px; }
.gcx-tile.is-read { border-color: rgba(110, 231, 160, .35); background: rgba(110, 231, 160, .06); }
.gcx-tile.is-read .gcx-tile-done { display: inline; }
.gcx-tile.is-read .gcx-tile-go { display: none; }
.gcx-tile.is-read .gcx-tile-ic { color: #6ee7a0; }

.gcx-hub-foot { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; padding-top: 18px; border-top: 1px solid rgba(255, 255, 255, .08); }

.gcx-back { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 16px; padding: 9px 16px; border-radius: 10px; border: 1px solid rgba(255, 255, 255, .14); background: rgba(255, 255, 255, .05); color: #e9e3d6; cursor: pointer; font-size: 13.5px; font-weight: 600; }
.gcx-back:hover, .gcx-back:focus-visible { border-color: rgba(255, 215, 106, .5); color: #ffd76a; outline: none; }
.gcx-panel { animation: gcx-panel-slide .2s ease; }
@keyframes gcx-panel-slide { from { transform: translateX(12px); opacity: 0; } to { transform: none; opacity: 1; } }
.gcx-panel-kicker { display: inline-flex; align-items: center; gap: 7px; padding: 6px 12px; border-radius: 999px; font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; border: 1px solid rgba(255, 215, 106, .35); background: rgba(255, 215, 106, .09); color: #ffd76a; }
.gcx-panel-kicker.red { border-color: rgba(231, 76, 60, .42); background: rgba(231, 76, 60, .12); color: #ff9a9c; }
.gcx-panel-kicker.ice { border-color: rgba(90, 190, 230, .42); background: rgba(90, 190, 230, .1); color: #8fd8f0; }
.gcx-panel h3 { margin: 14px 0 12px; font-size: clamp(20px, 2.6vw, 26px); color: #fff; line-height: 1.25; }
.gcx-panel-lead { margin: 0 0 18px; color: #c7c1b4; font-size: 15px; line-height: 1.6; }
.gcx-facts { list-style: none; margin: 0 0 20px; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.gcx-facts li { position: relative; padding: 12px 14px 12px 40px; border-radius: 12px; background: rgba(255, 255, 255, .04); border: 1px solid rgba(255, 255, 255, .07); color: #ddd7ca; font-size: 14px; line-height: 1.55; }
.gcx-facts li:before { content: "\f00c"; font-family: FontAwesome; position: absolute; left: 14px; top: 13px; color: #ffd76a; font-size: 13px; }
.gcx-facts li b { color: #fff; }

@media (max-width: 720px) {
    .gcx-modal:not([hidden]) { padding: 0; }
    .gcx-sheet { max-width: 100%; max-height: 100vh; border-radius: 0; padding: 18px 15px; }
    .gcx-sheet-head { flex-direction: column-reverse; align-items: stretch; }
    .gcx-sheet-head-actions { justify-content: space-between; }
    .gcx-tiles { grid-template-columns: 1fr; }
    .gcx-hub-foot .gc-btn { width: 100%; justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
    .gcx-modal:not([hidden]), .gcx-sheet, .gcx-panel { animation: none; }
    .gcx-progress-fill { transition: none; }
}
/* Modal aciklen tum stacking baglamini masthead'in ustune tasi (aksi halde
   .gc-start-journey z-index:50 modeli navbar'in altina hapsediyor). */
body.gcx-modal-open .gc-start-journey { z-index: 5000; }
/* GCX stage: panel'ler arasi ileri/geri gezinme cubugu (sayfadan cikmadan) */
.gcx-stage-nav { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 22px; padding-top: 18px; border-top: 1px solid rgba(255, 255, 255, .08); }
.gcx-stage-counter { font-size: 12.5px; font-weight: 800; color: #9a9488; letter-spacing: .04em; }
.gcx-navbtn { display: inline-flex; align-items: center; gap: 8px; padding: 11px 20px; border-radius: 12px; font-size: 14px; font-weight: 800; cursor: pointer; border: 1px solid transparent; line-height: 1; }
.gcx-navbtn-prev { background: rgba(255, 255, 255, .05); border-color: rgba(255, 255, 255, .14); color: #e9e3d6; }
.gcx-navbtn-prev:hover:not(:disabled), .gcx-navbtn-prev:focus-visible:not(:disabled) { border-color: rgba(255, 215, 106, .5); color: #ffd76a; outline: none; }
.gcx-navbtn-prev:disabled { opacity: .38; cursor: default; }
.gcx-navbtn-next { background: linear-gradient(180deg, #ffe889, #ffc928 46%, #dc9300); color: #2d1700; box-shadow: 0 10px 22px rgba(220, 147, 0, .3); }
.gcx-navbtn-next:hover, .gcx-navbtn-next:focus-visible { filter: brightness(1.05); outline: none; }

/* Panel icindeki "tam sayfayi ac" linki artik ikincil: okuma modal icinde biter,
   sayfaya gitmek zorunlu degil (istege bagli derinlesme). */
.gcx-panel .gc-btn-primary { background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .14); color: #d7d1c4; box-shadow: none; text-shadow: none; font-size: 13px; padding: 9px 16px; }
.gcx-panel .gc-btn-primary:hover, .gcx-panel .gc-btn-primary:focus-visible { background: rgba(255, 215, 106, .08); border-color: rgba(255, 215, 106, .45); color: #ffd76a; filter: none; }

@media (max-width: 720px) {
    .gcx-stage-nav { flex-wrap: wrap; }
    .gcx-navbtn { flex: 1; justify-content: center; }
    .gcx-stage-counter { order: -1; width: 100%; text-align: center; margin-bottom: 4px; }
}