:root {
  --bg: #0a0a0e;
  --surface: #101014;
  --surface2: #16161c;
  --border: #232329;
  --border-soft: #1a1a20;
  --text: #f2f2f4;
  --muted: #9a9aa6;
  --faint: #6b6b78;
  --accent: #6d5ae6;
  --accent-hi: #8672ff;
  --cyan: #4cc9e8;
  --ok: #46c98f;
  --warn: #e0b34c;
  --radius: 14px;
  --head: 'Space Grotesk', 'Segoe UI', sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font: 15.5px/1.65 'Inter', -apple-system, 'Segoe UI', sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: '';
  position: fixed; inset: 0; z-index: -1;
  background: radial-gradient(ellipse 55% 38% at 50% -8%, rgba(109,90,230,.10), transparent);
}
h1, h2, h3 { font-family: var(--head); letter-spacing: -.015em; }
a { color: var(--accent-hi); text-decoration: none; }
img, video { max-width: 100%; }
.container { width: min(1120px, 100% - 2.5rem); margin-inline: auto; }
.label {
  font-family: var(--mono); font-size: .68rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase; color: var(--faint);
}

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10,10,14,.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-soft);
}
.nav-inner { display: flex; align-items: center; gap: 1.8rem; height: 66px; }
.logo {
  font-family: var(--head); font-weight: 700; font-size: 1.12rem; letter-spacing: .04em;
  color: var(--text); display: flex; align-items: center; gap: .55rem;
}
.logo-img {
  display: block;
  width: 168px;
  height: 42px;
  object-fit: contain;
  mix-blend-mode: screen;
}
.logo .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent-hi);
  box-shadow: 0 0 10px rgba(134,114,255,.8); display: inline-block; }
.nav-links { display: flex; gap: .15rem; flex: 1; }
.nav-links a {
  color: var(--muted); padding: .45rem .8rem; border-radius: 8px;
  font-size: .92rem; font-weight: 500; transition: color .12s;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--text); }
.nav-right { display: flex; align-items: center; gap: .6rem; }
.credit-chip {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: 'Inter', sans-serif; font-weight: 700; font-size: 1rem; line-height: 1; color: #f2d27a;
  border: 1px solid rgba(224,179,76,.45); border-radius: 10px; padding: .42rem .9rem;
  background: linear-gradient(180deg, rgba(224,179,76,.16), rgba(224,179,76,.07));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
  transition: border-color .15s, box-shadow .2s;
}
.credit-chip:hover { border-color: rgba(224,179,76,.85); box-shadow: 0 0 16px -4px rgba(224,179,76,.6), inset 0 1px 0 rgba(255,255,255,.08); }
.credit-chip .coin { color: #f5c542; font-size: .95em; text-shadow: 0 0 9px rgba(224,179,76,.8); }
.credit-chip .cr-val { font-variant-numeric: tabular-nums; }
.credit-chip .cr-lbl { font-size: .72em; font-weight: 600; color: rgba(242,210,122,.7); letter-spacing: .03em; }

/* ---------- üst duyuru barı (marquee) ---------- */
.topbar {
  overflow: hidden; white-space: nowrap; position: relative;
  background: linear-gradient(90deg, rgba(109,90,230,.14), rgba(76,201,232,.10) 50%, rgba(109,90,230,.14));
  border-bottom: 1px solid var(--border-soft);
}
.topbar-track { display: inline-flex; will-change: transform; animation: topbar-scroll 42s linear infinite; }
.topbar:hover .topbar-track { animation-play-state: paused; }
.topbar-msg {
  display: inline-block; padding: .5rem 0; font-size: .82rem; color: #c9c9d6;
  font-weight: 500; letter-spacing: .01em;
}
.topbar-msg::after { content: ''; }
@keyframes topbar-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .topbar-track { animation: none; }
  .topbar { text-overflow: ellipsis; }
}
.lang-switch {
  font-family: var(--mono); font-size: .78rem; font-weight: 600; color: var(--muted);
  border: 1px solid var(--border); border-radius: 8px; padding: .32rem .6rem; letter-spacing: .05em;
}
.lang-switch:hover { color: var(--text); border-color: #3a3a44; }
.btn-dl {
  display: inline-flex; align-items: center; gap: .45rem; white-space: nowrap;
  font-size: .88rem; font-weight: 600; padding: .42rem .9rem; border-radius: 8px;
  color: var(--cyan); border: 1px solid rgba(76,201,232,.4);
  background: rgba(76,201,232,.08); transition: .15s;
}
.btn-dl:hover { background: rgba(76,201,232,.16); border-color: var(--cyan); }
.btn-dl .dl-ic { font-size: 1rem; line-height: 1; }
/* launcher indirme banner */
.dl-cta-strip {
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; justify-content: space-between;
  border: 1px solid rgba(76,201,232,.28); border-radius: var(--radius);
  background: linear-gradient(120deg, rgba(76,201,232,.10), rgba(109,90,230,.08) 60%, transparent);
  padding: 1.8rem 2rem; margin-top: 2rem;
}
.dl-cta-strip .dl-left { flex: 1; min-width: 300px; }
.dl-cta-strip h2 { font-size: 1.5rem; font-weight: 800; margin-bottom: .4rem; }
.dl-cta-strip p { color: var(--muted); max-width: 520px; }
.dl-steps { display: flex; gap: 1.3rem; flex-wrap: wrap; margin-top: 1rem; }
.dl-steps span { font-family: var(--mono); font-size: .82rem; color: var(--faint); display: flex; align-items: center; gap: .5rem; }
.dl-steps b { color: var(--cyan); }
.dl-cta-strip .dl-cta { display: flex; flex-direction: column; align-items: center; gap: .5rem; }
.dl-note { font-family: var(--mono); font-size: .74rem; color: var(--faint); }
.nav-toggle { display: none; background: none; border: 1px solid var(--border); color: var(--text);
  border-radius: 8px; padding: .35rem .6rem; font-size: 1.05rem; cursor: pointer; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .58rem 1.25rem; border-radius: 9px; border: 1px solid var(--border);
  background: transparent; color: var(--text); font-weight: 500; font-size: .92rem;
  font-family: inherit; cursor: pointer; transition: .14s; text-decoration: none;
}
.btn:hover { border-color: #3a3a44; background: var(--surface2); }
.btn-primary {
  background: var(--accent); border-color: transparent; color: #fff; font-weight: 600;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 1px 3px rgba(0,0,0,.4);
}
.btn-primary:hover { background: var(--accent-hi); border-color: transparent; }
.btn-sm { padding: .42rem .95rem; font-size: .86rem; }
.btn-lg { padding: .8rem 1.9rem; font-size: 1rem; border-radius: 11px; }
.btn-block { width: 100%; }

/* ---------- hero ---------- */
.hero { padding: 6rem 0 4.5rem; text-align: center; }
.hero .label { color: var(--accent-hi); margin-bottom: 1.3rem; display: block; }
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem); line-height: 1.08; font-weight: 700;
  max-width: 820px; margin: 0 auto 1.3rem; letter-spacing: -.03em;
}
.hero h1 .grad {
  background: linear-gradient(100deg, var(--accent-hi), var(--cyan));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p.sub { color: var(--muted); max-width: 540px; margin: 0 auto 2.4rem; font-size: 1.08rem; line-height: 1.7; }
.hero-cta { display: flex; gap: .9rem; justify-content: center; flex-wrap: wrap; }

/* Ana sayfa: karakterleri yanlarda, metni karanlık merkezde tutan tam genişlik hero. */
.home-hero {
  width: 100vw;
  min-height: clamp(650px, calc(100vh - 104px), 760px);
  margin-left: calc(50% - 50vw);
  padding-inline: max(1.25rem, calc((100vw - 1120px) / 2));
  isolation: isolate;
  background-image:
    linear-gradient(180deg, rgba(5,5,9,.08) 0%, rgba(5,5,9,.12) 62%, var(--bg) 100%),
    linear-gradient(90deg, rgba(5,5,9,.04) 0%, rgba(5,5,9,.42) 34%, rgba(5,5,9,.68) 50%, rgba(5,5,9,.42) 66%, rgba(5,5,9,.04) 100%),
    url('/img/home-hero-bg.png');
  background-position: center, center, center top;
  background-size: cover, cover, cover;
  background-repeat: no-repeat;
  box-shadow: inset 0 1px rgba(224,179,76,.12);
}
.home-hero > * { position: relative; z-index: 1; }
.home-hero h1,
.home-hero p.sub { text-shadow: 0 3px 18px rgba(0,0,0,.95); }
.home-hero .stats {
  background: linear-gradient(180deg, rgba(16,16,24,.94), rgba(8,8,14,.88));
  border-color: rgba(134,114,255,.42);
  box-shadow: 0 14px 42px rgba(0,0,0,.55), inset 0 1px rgba(255,255,255,.04);
  backdrop-filter: blur(8px);
}
.stats {
  display: flex; gap: 0; justify-content: center; flex-wrap: wrap;
  margin: 4rem auto 0; max-width: 720px;
  border: 1px solid var(--border-soft); border-radius: var(--radius);
  background: linear-gradient(180deg, var(--surface), transparent);
}
.stats .stat { flex: 1; min-width: 140px; padding: 1.4rem 1rem; }
.stats .stat + .stat { border-left: 1px solid var(--border-soft); }
.stats .stat b { font-family: var(--head); font-size: 1.45rem; font-weight: 700; display: block; }
.stats .stat span { font-family: var(--mono); font-size: .68rem; color: var(--faint); letter-spacing: .15em; text-transform: uppercase; }

/* ---------- announcements ---------- */
.announce-section { margin-top: 3.5rem; }
.announce-head { margin-bottom: 1.2rem; }
.announce-sub { color: var(--muted); font-size: .92rem; margin-top: .35rem; }
.announce-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: .9rem; }
.announce-card {
  position: relative; background: linear-gradient(180deg, var(--surface2), var(--surface));
  border: 1px solid var(--border); border-radius: 12px; padding: 1.1rem 1.2rem;
  border-left: 3px solid var(--a-accent, var(--accent));
  transition: border-color .15s, transform .15s;
}
.announce-card:hover { transform: translateY(-2px); border-color: color-mix(in srgb, var(--a-accent, var(--accent)) 40%, var(--border)); border-left-color: var(--a-accent, var(--accent)); }
.announce-meta { display: flex; align-items: center; gap: .6rem; margin-bottom: .5rem; }
.announce-tag {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--head); font-size: .82rem; font-weight: 700; letter-spacing: .01em;
  color: var(--a-accent, var(--accent));
  background: color-mix(in srgb, var(--a-accent, var(--accent)) 15%, transparent);
  border: 1px solid color-mix(in srgb, var(--a-accent, var(--accent)) 38%, transparent);
  padding: .28rem .7rem; border-radius: 8px;
  text-shadow: 0 0 12px color-mix(in srgb, var(--a-accent, var(--accent)) 45%, transparent);
}
.announce-tag::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0;
  background: var(--a-accent, var(--accent));
  box-shadow: 0 0 8px 1px var(--a-accent, var(--accent));
}
.announce-date { font-family: var(--mono); font-size: .68rem; color: var(--faint); margin-left: auto; }
.announce-title { font-size: 1.02rem; font-weight: 700; margin-bottom: .3rem; line-height: 1.35; }
.announce-body { color: var(--muted); font-size: .88rem; line-height: 1.55; }

/* ---------- product cards ---------- */
.section-title { font-size: 1.65rem; font-weight: 700; margin-bottom: .4rem; }
.section-sub { color: var(--muted); margin-bottom: 2rem; max-width: 620px; }
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.2rem; }
.card {
  background: linear-gradient(180deg, var(--surface2), var(--surface));
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.7rem; position: relative;
  display: flex; flex-direction: column; gap: .8rem;
  transition: border-color .18s;
}
.card:hover { border-color: color-mix(in srgb, var(--card-accent, var(--accent)) 55%, var(--border)); }
.card .badge {
  position: absolute; top: 1.2rem; right: 1.2rem;
  font-family: var(--mono); font-size: .62rem; font-weight: 600; letter-spacing: .14em;
  color: var(--card-accent, var(--accent-hi));
  background: color-mix(in srgb, var(--card-accent, var(--accent)) 10%, transparent);
  padding: .22rem .6rem; border-radius: 6px;
}
.card-img {
  height: 168px; margin: -1.7rem -1.7rem 0.4rem; border-radius: 14px 14px 0 0;
  background-size: cover; background-position: center;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.card-img::after {
  content: ''; position: absolute; inset: 0; border-radius: 14px 14px 0 0;
  background: linear-gradient(180deg, transparent 55%, rgba(16,16,20,.55));
}
.card h3 { font-size: 1.22rem; font-weight: 700; }
.card .tagline { color: var(--muted); font-size: .94rem; flex: 1; line-height: 1.6; }
.card .price-row { display: flex; align-items: baseline; gap: .45rem; padding-top: .3rem; border-top: 1px solid var(--border-soft); }
.card .price-row b { font-family: var(--head); font-size: 1.3rem; }
.card .price-row span { color: var(--faint); font-size: .84rem; }
.card .actions { display: flex; gap: .6rem; }
.card .actions .btn { flex: 1; }

/* ---------- rich features ---------- */
.feat-highlight { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.6rem; }
.feat-hl {
  position: relative; border-radius: 14px; padding: 1.4rem 1.5rem;
  border: 1px solid color-mix(in srgb, var(--p-accent, var(--accent)) 42%, var(--border));
  background: linear-gradient(155deg, color-mix(in srgb, var(--p-accent, var(--accent)) 13%, var(--surface)), var(--surface));
  box-shadow: 0 8px 30px rgba(0,0,0,.25);
}
.feat-hl-badge {
  display: inline-block; font-family: var(--mono); font-size: .62rem; font-weight: 600; letter-spacing: .16em;
  color: var(--p-accent, var(--accent)); background: color-mix(in srgb, var(--p-accent, var(--accent)) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--p-accent, var(--accent)) 45%, transparent);
  padding: .22rem .6rem; border-radius: 6px; margin-bottom: .8rem;
}
.feat-hl h3 { font-family: var(--head); font-size: 1.3rem; font-weight: 700; margin-bottom: .4rem; }
.feat-hl p { color: var(--muted); font-size: .93rem; line-height: 1.6; }
.feat-cats { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
.feat-cat { border: 1px solid var(--border); border-radius: 12px; padding: 1.1rem 1.25rem;
  background: linear-gradient(180deg, var(--surface2), var(--surface)); }
.feat-cat h4 { font-size: .98rem; font-weight: 700; margin-bottom: .7rem; padding-left: .7rem;
  border-left: 3px solid var(--p-accent, var(--accent)); line-height: 1.2; }
.feat-cat ul { list-style: none; display: grid; gap: .5rem; }
.feat-cat li { color: #c3c3d0; font-size: .86rem; line-height: 1.5; padding-left: 1.25rem; position: relative; }
.feat-cat li::before { content: '❖'; position: absolute; left: 0; top: .1rem;
  color: var(--p-accent, var(--accent)); font-size: .72rem; }
@media (max-width: 720px) { .feat-highlight, .feat-cats { grid-template-columns: 1fr; } }

/* ---------- reviews ---------- */
.reviews { margin-top: 2.5rem; }
.reviews-head { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .8rem; margin-bottom: 1.2rem; }
.reviews-avg { display: flex; align-items: center; gap: .55rem; }
.reviews-avg b { font-family: var(--head); font-size: 1.5rem; font-weight: 700; }
.reviews-count { color: var(--faint); font-size: .85rem; }
.stars { display: inline-flex; gap: 1px; font-size: 1rem; line-height: 1; }
.stars.sm { font-size: .82rem; }
.stars .on { color: #f2c14e; }
.stars .off { color: #3a3a44; }
.review-list { display: grid; gap: .8rem; }
.review {
  display: flex; gap: .9rem; padding: 1.1rem 1.2rem; border-radius: 12px;
  background: linear-gradient(180deg, var(--surface2), var(--surface)); border: 1px solid var(--border);
}
.review-av {
  flex-shrink: 0; width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--head); font-weight: 700; font-size: 1.1rem; border: 1px solid;
}
.review-body { flex: 1; min-width: 0; }
.review-top { display: flex; align-items: center; gap: .6rem; flex-wrap: wrap; margin-bottom: .3rem; }
.review-nick { font-weight: 600; font-size: .95rem; color: var(--text); }
.review-date { color: var(--faint); font-family: var(--mono); font-size: .74rem; margin-left: auto; }
.review-text { color: #c3c3d0; font-size: .92rem; line-height: 1.6; }
.review-form { background: linear-gradient(180deg, var(--surface2), var(--surface)); border: 1px solid var(--border); border-radius: 12px; padding: 1.1rem 1.2rem; margin-bottom: 1.1rem; }
.rf-top { display: flex; align-items: center; justify-content: space-between; gap: .8rem; margin-bottom: .7rem; }
.rf-top b { font-size: .98rem; }
.rf-rating { width: auto; padding: .4rem .7rem; background: var(--bg); border: 1px solid var(--border); border-radius: 8px; color: #f2c14e; font-size: .9rem; }
.review-form textarea { margin-bottom: .8rem; }
.review-note { color: var(--muted); font-size: .92rem; background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: .8rem 1rem; margin-bottom: 1.1rem; }

/* ---------- product page ---------- */
.product-layout { display: grid; grid-template-columns: 1fr 360px; gap: 2.2rem; align-items: start; padding: 2.8rem 0; }
.product-layout > * { min-width: 0; }
.video-wrap {
  position: relative;
  aspect-ratio: 16/9; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.video-wrap video, .video-wrap iframe { width: 100%; height: 100%; border: 0; }
.vid-unmute {
  position: absolute; left: 50%; bottom: 16px; transform: translateX(-50%); z-index: 3;
  display: inline-flex; align-items: center; gap: .4rem; cursor: pointer;
  font: 600 .92rem 'Inter', sans-serif; color: #fff;
  background: rgba(109,90,230,.94); border: 1px solid rgba(255,255,255,.28); border-radius: 11px;
  padding: .55rem 1.1rem; box-shadow: 0 8px 24px rgba(0,0,0,.5);
  animation: vid-unmute-pulse 1.8s ease-in-out infinite;
}
.vid-unmute:hover { background: #8672ff; }
@keyframes vid-unmute-pulse { 0%,100% { box-shadow: 0 8px 24px rgba(0,0,0,.5); } 50% { box-shadow: 0 8px 30px rgba(134,114,255,.65); } }
@media (prefers-reduced-motion: reduce) { .vid-unmute { animation: none; } }
.video-placeholder { text-align: center; color: var(--faint); font-family: var(--mono); font-size: .82rem; letter-spacing: .12em; }
.video-placeholder .icon { font-size: 2.2rem; display: block; margin-bottom: .7rem; opacity: .45; }

/* ---------- Metin2 çalışan PvP server videoları ---------- */
.pvp-servers { margin-top: 1.35rem; }
.pvp-servers-head {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem;
  margin-bottom: .85rem;
}
.pvp-servers-head .label { display: block; color: #69d9ac; margin-bottom: .18rem; }
.pvp-servers-head h2 { font-size: 1.18rem; line-height: 1.25; }
.pvp-server-count {
  flex-shrink: 0; font: 600 .66rem/1 var(--mono); letter-spacing: .06em; color: #8eb9a8;
  padding: .45rem .62rem; border: 1px solid rgba(70,201,143,.28); border-radius: 7px;
  background: rgba(70,201,143,.07);
}
.pvp-video-grid { display: grid; width: 100%; min-width: 0; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: .7rem; }
.pvp-video-card {
  min-width: 0; overflow: hidden; border: 1px solid var(--border); border-radius: 10px;
  background: linear-gradient(180deg, #17171e, #101014);
  box-shadow: 0 8px 20px rgba(0,0,0,.22); transition: border-color .16s, transform .16s;
}
.pvp-video-card:hover { border-color: rgba(70,201,143,.45); transform: translateY(-2px); }
.pvp-video-frame { min-width: 0; aspect-ratio: 16/9; overflow: hidden; background: #07080a; border-bottom: 1px solid var(--border-soft); }
.pvp-video-frame video { display: block; width: 100%; min-width: 0; height: 100%; object-fit: cover; background: #07080a; }
.pvp-video-meta { display: flex; align-items: center; justify-content: space-between; gap: .45rem; padding: .55rem .62rem; }
.pvp-video-meta h3 {
  min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  font-size: .79rem; font-weight: 700; letter-spacing: 0;
}
.pvp-working {
  flex-shrink: 0; display: inline-flex; align-items: center; gap: .3rem;
  color: #6ce4ad; font: 600 .58rem/1 var(--mono); text-transform: uppercase; letter-spacing: .04em;
}
.pvp-working i { width: 6px; height: 6px; border-radius: 50%; background: #4be39c; box-shadow: 0 0 8px rgba(75,227,156,.85); }
.product-hero {
  height: 260px; border-radius: 14px; margin-bottom: 1.5rem;
  background-size: cover; background-position: center;
  border: 1px solid var(--border);
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
}
.product-head h1 { font-size: 2.1rem; font-weight: 700; }
.product-head .tagline { color: var(--muted); font-size: 1.04rem; margin: .3rem 0 1.6rem; }
.compat-banner {
  display: grid; grid-template-columns: auto 1fr auto; gap: 1rem; align-items: center;
  margin: 0 0 1.6rem; padding: 1rem 1.15rem;
  border: 1px solid rgba(70,201,143,.42); border-radius: 12px;
  background: linear-gradient(110deg, rgba(25,85,61,.22), rgba(9,27,24,.88) 58%, rgba(8,18,19,.92));
  box-shadow: inset 0 1px rgba(255,255,255,.04), 0 0 24px rgba(70,201,143,.08);
}
.compat-state { display: inline-flex; align-items: center; gap: .55rem; color: #68e8ad; letter-spacing: .08em; }
.compat-dot { width: 10px; height: 10px; border-radius: 50%; background: #46e39a; box-shadow: 0 0 0 4px rgba(70,227,154,.12), 0 0 14px #46e39a; }
.compat-copy { min-width: 0; }
.compat-date { display: block; color: #d7e7df; font-size: .82rem; font-family: var(--mono); }
.compat-copy p { margin-top: .2rem; color: #a9beb4; font-size: .85rem; line-height: 1.5; }
.compat-banner > a { color: #66d9b0; font-size: .78rem; white-space: nowrap; }
.compat-banner > a:hover { color: #a5f3d2; }
@media (max-width: 700px) {
  .compat-banner { grid-template-columns: 1fr; gap: .6rem; }
  .compat-banner > a { white-space: normal; }
}
.feature-list { list-style: none; margin: 0 0 1.6rem; display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: .7rem; }
.feature-list li {
  display: flex; gap: .8rem; align-items: center; color: #d6d6de; font-size: .93rem; font-weight: 500;
  background: linear-gradient(180deg, var(--surface2), var(--surface));
  border: 1px solid var(--border); border-radius: 11px; padding: .85rem 1.05rem;
  transition: border-color .15s;
}
.feature-list li:hover { border-color: color-mix(in srgb, var(--p-accent, var(--accent)) 45%, var(--border)); }
.feature-list .fcheck {
  width: 22px; height: 22px; border-radius: 7px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .72rem; font-weight: 700;
  color: var(--p-accent, var(--accent-hi));
  background: color-mix(in srgb, var(--p-accent, var(--accent)) 13%, transparent);
}
.buy-card {
  position: sticky; top: 86px;
  background: linear-gradient(180deg, var(--surface2), var(--surface));
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.7rem;
}
.buy-card .label { display: block; margin-bottom: 1.1rem; }
.unit-price { display: flex; align-items: baseline; gap: .55rem; margin: -.25rem 0 1.15rem; }
.unit-price strong { font-family: var(--head); font-size: 2.05rem; line-height: 1; color: #f5f5f7; }
.unit-price span { color: var(--muted); font-size: .9rem; }
.coming-soon-note {
  display: flex; gap: .75rem; align-items: flex-start; margin-bottom: 1.25rem; padding: 1rem;
  color: #c4c1cf; background: rgba(76,157,255,.07); border: 1px solid rgba(76,157,255,.26); border-radius: 10px;
}
.coming-soon-note > span { color: #67aaff; text-shadow: 0 0 10px rgba(76,157,255,.7); }
.coming-soon-note p { font-size: .86rem; line-height: 1.55; }
.plan { display: block; cursor: pointer; margin-bottom: .65rem; }
.plan input { display: none; }
.plan .plan-box {
  display: flex; justify-content: space-between; align-items: center;
  border: 1px solid var(--border); border-radius: 10px; padding: .78rem 1rem; transition: .13s;
}
.plan:hover .plan-box { border-color: #3a3a44; }
.plan input:checked + .plan-box {
  border-color: var(--p-accent, var(--accent));
  background: color-mix(in srgb, var(--p-accent, var(--accent)) 7%, transparent);
}
.plan .days { font-weight: 600; font-size: .95rem; }
.plan .per { font-size: .76rem; color: var(--faint); display: block; }
.plan .cost { font-family: var(--mono); font-size: .9rem; font-weight: 600; }
.buy-note { font-size: .84rem; color: var(--muted); margin-top: 1rem; text-align: center; }
.license-active {
  border: 1px solid rgba(70,201,143,.3); background: rgba(70,201,143,.06);
  border-radius: 10px; padding: .8rem 1rem; font-size: .88rem; margin-bottom: 1.1rem; color: var(--ok);
}

/* ---------- forms ---------- */
.form-card {
  max-width: 410px; margin: 4rem auto; background: linear-gradient(180deg, var(--surface2), var(--surface));
  border: 1px solid var(--border); border-radius: var(--radius); padding: 2.3rem;
}
.form-card h1 { font-size: 1.45rem; margin-bottom: .35rem; }
.form-card .sub { color: var(--muted); font-size: .92rem; margin-bottom: 1.7rem; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: .84rem; font-weight: 500; color: var(--muted); margin-bottom: .35rem; }
input[type=text], input[type=email], input[type=password], textarea, select {
  width: 100%; background: var(--bg); border: 1px solid var(--border); border-radius: 9px;
  color: var(--text); padding: .62rem .9rem; font: inherit; font-size: .93rem;
}
input:focus, textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(109,90,230,.14); }
.form-alt { text-align: center; margin-top: 1.3rem; font-size: .89rem; color: var(--muted); }

/* ---------- misc ---------- */
.flash { border-radius: 10px; padding: .8rem 1.1rem; margin: 1.2rem 0; font-size: .93rem; border: 1px solid; }
.flash.ok { color: var(--ok); border-color: rgba(70,201,143,.3); background: rgba(70,201,143,.06); }
.flash.warn { color: var(--warn); border-color: rgba(224,179,76,.3); background: rgba(224,179,76,.06); }
.page { padding: 2.8rem 0; flex: 1; }
.panel { background: linear-gradient(180deg, var(--surface2), var(--surface)); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; }
.table { width: 100%; border-collapse: collapse; font-size: .92rem; }
.table th { text-align: left; color: var(--faint); font-family: var(--mono); font-size: .68rem; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase; padding: .7rem .9rem; border-bottom: 1px solid var(--border); }
.table td { padding: .8rem .9rem; border-bottom: 1px solid var(--border-soft); }
.table tr:last-child td { border-bottom: 0; }
.tag { font-family: var(--mono); font-size: .68rem; font-weight: 600; padding: .2rem .55rem; border-radius: 6px; letter-spacing: .08em; }
.tag.open { color: var(--cyan); background: rgba(76,201,232,.09); }
.tag.answered { color: var(--ok); background: rgba(70,201,143,.09); }
.tag.closed { color: var(--faint); background: var(--surface2); }
.tag.active { color: var(--ok); background: rgba(70,201,143,.09); }
.tag.expired { color: var(--faint); background: var(--surface2); }

/* faq */
details.faq-item { border: 1px solid var(--border); border-radius: 11px;
  background: linear-gradient(180deg, var(--surface2), var(--surface)); margin-bottom: .65rem; }
details.faq-item summary { padding: 1rem 1.3rem; cursor: pointer; font-weight: 600; font-size: .97rem; list-style: none; display: flex; gap: .8rem; }
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::before { content: '+'; color: var(--accent-hi); font-family: var(--mono); font-weight: 400; }
details[open].faq-item summary::before { content: '−'; }
details.faq-item .faq-body { padding: 0 1.3rem 1.1rem 2.75rem; color: var(--muted); font-size: .93rem; }

/* guide */
.guide-body h2 { margin: 1.7rem 0 .5rem; font-size: 1.18rem; }
.guide-body p { color: #c9c9d2; margin-bottom: .6rem; }

/* ticket chat */
.msg { border: 1px solid var(--border); border-radius: 11px; padding: .95rem 1.15rem; margin-bottom: .75rem; background: var(--surface); }
.msg.staff { border-color: rgba(109,90,230,.35); background: rgba(109,90,230,.05); }
.msg .meta { font-size: .76rem; color: var(--faint); font-family: var(--mono); margin-bottom: .35rem; }
.msg .meta .staff-tag { color: var(--accent-hi); }

/* credit packages */
.pack-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(215px, 1fr)); gap: 1.1rem; }
.pack { text-align: center; padding: 1.9rem 1.4rem; }
.pack .amount { font-family: var(--head); font-size: 2rem; font-weight: 700; }
.pack .bonus { color: var(--ok); font-size: .82rem; font-family: var(--mono); min-height: 1.5em; }
.pack .price { color: var(--muted); margin: .55rem 0 1.2rem; font-size: .95rem; }

/* embedded payment */
.pay-frame-wrap {
  position: relative; border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; background: #fff;
}
.pay-frame { display: block; width: 100%; height: clamp(640px, 80vh, 1000px); border: 0; background: #fff; }
.pay-loading {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: var(--surface); color: var(--muted); font-family: var(--mono); font-size: .85rem;
  z-index: 2;
}

/* trafik bar grafiği */
.tg-bars { display: flex; align-items: flex-end; gap: 6px; height: 130px; }
.tg-bar { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; height: 100%; }
.tg-fill { width: 100%; max-width: 34px; border-radius: 4px 4px 0 0; background: linear-gradient(180deg, var(--accent-hi), var(--accent)); }
.tg-day { font-family: var(--mono); font-size: .62rem; color: var(--faint); margin-top: .3rem; }

/* Telegram iletişim butonu (tawk.to balonunun üstünde) */
.tg-contact {
  position: fixed; right: 20px; bottom: 154px; z-index: 999;
  width: 54px; height: 54px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: #fff;
  background: linear-gradient(160deg, #2aabee, #229ed9);
  box-shadow: 0 6px 20px rgba(34,158,217,.5); transition: transform .15s, box-shadow .2s;
}
.tg-contact:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 10px 28px rgba(34,158,217,.65); }
.tg-contact svg { margin-left: -2px; }
@media (max-width: 600px) { .tg-contact { width: 50px; height: 50px; bottom: 150px; right: 16px; } }

/* footer */
footer { border-top: 1px solid var(--border-soft); margin-top: 4.5rem; padding: 2.4rem 0; color: var(--faint); font-size: .87rem; }
.footer-inner { display: flex; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.footer-inner .logo { font-size: .95rem; }
.footer-inner .logo-img { width: 142px; height: 36px; }
.footer-links { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.footer-links a { color: var(--muted); }
.footer-links a:hover { color: var(--text); }
.footer-legal {
  display: flex; gap: 1.4rem; flex-wrap: wrap; margin-top: 1.6rem; padding-top: 1.2rem;
  border-top: 1px solid var(--border-soft); font-size: .8rem;
}
.footer-legal a { color: var(--faint); }
.footer-legal a:hover { color: var(--muted); }
.legal-body h2 { font-size: 1.05rem; }
.legal-body p { font-size: .93rem; }
.legal-body mark { background: rgba(224,179,76,.2); color: var(--warn); padding: 0 .3rem; border-radius: 4px; }

@media (max-width: 900px) {
  .product-layout { grid-template-columns: 1fr; gap: 1.4rem; padding: 1.8rem 0; }
  .buy-card { position: static; }
  .hero { padding-top: 4.5rem; }
  .home-hero {
    min-height: 620px;
    padding-inline: 1.25rem;
    background-position: center, center, center top;
  }
  .nav-links {
    display: none; position: absolute; top: 66px; left: 0; right: 0;
    flex-direction: column; background: var(--bg); border-bottom: 1px solid var(--border); padding: .8rem;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; margin-left: auto; }
  .nav-inner { gap: .8rem; }
  .nav .logo-img { width: 132px; height: 34px; }
  .nav-right .btn:not(.btn-primary) { display: none; }
}

@media (max-width: 720px) {
  .pvp-video-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pvp-servers-head { align-items: flex-start; }
  .product-hero { height: 200px; margin-bottom: 1.1rem; }
  .product-head h1 { font-size: 1.7rem; line-height: 1.2; }
  .product-head .tagline { margin-bottom: 1.15rem; }
}

@media (max-width: 600px) {
  .container { width: min(1120px, 100% - 1rem); }
  .topbar-msg { padding-block: .38rem; font-size: .74rem; }
  .home-hero { min-height: 560px; padding: 3.5rem .75rem 2.6rem; }
  .home-hero p.sub { font-size: .98rem; margin-bottom: 1.7rem; }
  .hero-cta { display: grid; grid-template-columns: 1fr; }
  .hero-cta .btn { width: 100%; min-height: 50px; }
  .stats { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 2.2rem; }
  .stats .stat { min-width: 0; padding: 1rem .55rem; }
  .stats .stat:nth-child(odd) { border-left: 0; }
  .stats .stat:nth-child(n+3) { border-top: 1px solid var(--border-soft); }
  .stats .stat span { font-size: .57rem; letter-spacing: .1em; }
  .dl-cta-strip { gap: 1.2rem; padding: 1.25rem; }
  .dl-cta-strip .dl-left { min-width: 0; }
  .dl-cta-strip .dl-cta, .dl-cta-strip .dl-cta .btn { width: 100%; }
  .dl-steps { display: grid; gap: .55rem; }
  .announce-grid, .grid { grid-template-columns: minmax(0, 1fr); }
  .card { padding: 1.25rem; }
  .card-img { height: 150px; margin: -1.25rem -1.25rem .3rem; }
  .section-sub { margin-bottom: 1.35rem; }
  .video-wrap { border-radius: 10px; }
  .pvp-servers-head { display: grid; }
  .pvp-server-count { justify-self: start; white-space: nowrap; }
  .buy-card { padding: 1.25rem; }
  .form-card { margin-block: 2rem; padding: 1.35rem; }
  .nav .logo-img { width: 118px; height: 32px; }
  .nav-right { gap: .35rem; }
  .nav-right .btn-dl { display: none; }
  .credit-chip { min-width: 0; padding-inline: .7rem; }
  .credit-chip .cr-lbl { display: none; }
  .nav-toggle, .lang-switch, .btn { min-height: 44px; }
  footer { margin-top: 3rem; }
  .footer-inner, .footer-links, .footer-legal { gap: .85rem; }
}

@media (max-width: 480px) {
  .pvp-video-grid { grid-template-columns: minmax(0, 1fr); }
  .pvp-servers-head { display: grid; }
  .pvp-server-count { justify-self: start; }
  .nav .logo-img { width: 104px; }
  .lang-switch { min-width: 42px; width: 42px; }
}
