: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;
  /* Humanist body + classic editorial headings: natural, familiar and game-brand appropriate. */
  --body: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --head: Charter, 'Bitstream Charter', 'Sitka Text', Cambria, Georgia, serif;
  --detail: var(--body);
  --mono: var(--body); /* legacy selector alias; no monospace webfont */
}
* { 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-family: var(--body);
  font-size: 15.5px;
  line-height: 1.65;
  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: -.01em; }
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(--detail); font-size: .72rem; font-weight: 600;
  letter-spacing: .08em; 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: var(--body); 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.webp');
  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: flex; gap: .9rem; overflow-x: auto; padding-bottom: .8rem;
  scroll-snap-type: x proximity; scrollbar-color: var(--accent) var(--surface);
}
.announce-card {
  flex: 0 0 min(320px, 84vw); scroll-snap-align: start;
  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 .price-row-prominent { display: grid; grid-template-columns: auto 1fr; align-items: end; column-gap: .6rem; padding-top: .75rem; }
.card .price-row-prominent .price-kicker { grid-column: 1 / -1; color: var(--card-accent, var(--accent-hi)); font-family: var(--mono); font-size: .64rem; font-weight: 700; letter-spacing: .11em; }
.card .price-row-prominent b { color: #fff; font-size: 1.55rem; line-height: 1.1; }
.card .price-row-prominent b + span { justify-self: end; color: var(--muted); }
.card .actions { display: flex; gap: .6rem; }
.card .actions .btn { flex: 1; }
.pricing-disclosure { display: flex; gap: .8rem 1.1rem; align-items: center; margin: -1rem 0 1.35rem; padding: .9rem 1rem; border: 1px solid rgba(76,157,255,.28); border-radius: 11px; background: rgba(76,157,255,.07); }
.pricing-disclosure strong { flex: 0 0 auto; color: #dcecff; font-size: .86rem; }
.pricing-disclosure span { color: #aebbc9; font-size: .82rem; line-height: 1.5; }

/* ---------- 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-family: var(--body); font-size: .92rem; font-weight: 600; line-height: 1.2; 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; }

/* ---------- ek ürün videoları ---------- */
.product-extra-videos { margin-top: 1.35rem; }
.extra-videos-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; margin-bottom: .85rem; }
.extra-videos-head .label { display: block; margin-bottom: .2rem; color: #73b7ff; }
.extra-videos-head h2 { color: #edf3fa; font-size: 1.18rem; }
.extra-video-count {
  flex: 0 0 auto; padding: .45rem .62rem;
  color: #91bde9; font: 600 .66rem/1 var(--mono); letter-spacing: .06em;
  border: 1px solid rgba(76,157,255,.28); border-radius: 7px; background: rgba(76,157,255,.07);
}
.extra-video-grid { display: grid; gap: .75rem; }
.extra-video-card {
  overflow: hidden; border: 1px solid rgba(76,157,255,.28); border-radius: 12px;
  background: linear-gradient(180deg, #171b24, #10141b);
  box-shadow: 0 12px 28px rgba(0,0,0,.25);
}
.extra-video-frame { aspect-ratio: 16/9; overflow: hidden; background: #07090d; border-bottom: 1px solid var(--border-soft); }
.extra-video-frame video { display: block; width: 100%; height: 100%; object-fit: contain; background: #07090d; }
.extra-video-meta { display: grid; grid-template-columns: minmax(150px,.65fr) minmax(0,1.35fr); gap: 1rem; align-items: center; padding: .85rem 1rem; }
.extra-video-meta span { color: #6f92b8; font: 600 .58rem/1 var(--mono); letter-spacing: .08em; }
.extra-video-meta h3 { margin-top: .23rem; color: #f1f5fa; font-size: 1rem; }
.extra-video-meta p { color: #9da9b8; font-size: .8rem; line-height: 1.5; }

/* ---------- 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; }
.product-price-overview { margin: -.35rem 0 1.6rem; padding: 1rem; border: 1px solid color-mix(in srgb, var(--p-accent, var(--accent)) 38%, var(--border)); border-radius: 13px; background: linear-gradient(125deg, color-mix(in srgb, var(--p-accent, var(--accent)) 11%, var(--surface2)), var(--surface)); box-shadow: 0 10px 30px rgba(0,0,0,.2); }
.product-price-overview-head { display: flex; justify-content: space-between; gap: 1rem; align-items: center; margin-bottom: .7rem; }
.product-price-overview-head > span, .product-price-overview-unit > div > span { color: var(--p-accent, var(--accent-hi)); font-family: var(--mono); font-size: .67rem; font-weight: 700; letter-spacing: .12em; }
.product-price-overview-head a, .product-price-overview-unit > a { color: #d8d7df; font-size: .78rem; }
.product-price-options { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .6rem; }
.product-price-option { display: grid; grid-template-columns: 1fr auto; gap: .14rem .45rem; padding: .72rem .78rem; border: 1px solid var(--border); border-radius: 9px; background: rgba(255,255,255,.025); color: inherit; }
.product-price-option:hover { border-color: color-mix(in srgb, var(--p-accent, var(--accent)) 60%, var(--border)); }
.product-price-option > span { grid-column: 1 / -1; color: var(--muted); font-size: .76rem; }
.product-price-option strong { color: #fff; font-family: var(--head); font-size: 1.16rem; }
.product-price-option small { align-self: end; color: var(--faint); font-family: var(--mono); font-size: .68rem; }
.product-price-overview > p { margin-top: .7rem; color: var(--faint); font-size: .72rem; line-height: 1.45; }
.product-price-overview-unit { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.product-price-overview-unit > div { display: flex; align-items: baseline; gap: .55rem; flex-wrap: wrap; }
.product-price-overview-unit strong { color: #fff; font-family: var(--head); font-size: 1.55rem; }
.product-price-overview-unit small { color: var(--muted); }
.trial-pause-notice {
  display: flex; gap: .9rem; align-items: flex-start; margin: 0 0 1rem; padding: .95rem 1.1rem;
  border: 1px solid rgba(255,185,64,.55); border-radius: 12px;
  background: linear-gradient(110deg, rgba(117,72,9,.28), rgba(30,22,11,.92));
  color: #ffe1a3;
}
.trial-pause-notice > span { flex: 0 0 auto; font: .75rem var(--mono); color: #ffca68; }
.trial-pause-notice strong { display: block; color: #ffd27c; font-size: .82rem; letter-spacing: .06em; }
.trial-pause-notice p { margin: .2rem 0 0; color: #e8d4ae; font-size: .88rem; line-height: 1.5; }
.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; }
}

/* ---------- OTP account product ---------- */
.product-layout-otp { grid-template-columns: minmax(0, 1fr) 380px; }
.otp-assurance {
  position: relative; isolation: isolate; overflow: hidden;
  display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(230px, .85fr); gap: 1rem;
  margin: 0 0 1.6rem; padding: 1.55rem;
  border: 1px solid rgba(70,227,154,.34); border-radius: 16px;
  background:
    radial-gradient(circle at 92% 12%, rgba(76,157,255,.23), transparent 38%),
    linear-gradient(125deg, rgba(17,55,48,.96), rgba(11,22,32,.97) 56%, rgba(13,19,33,.98));
  box-shadow: inset 0 1px rgba(255,255,255,.05), 0 16px 42px rgba(0,0,0,.3);
}
.otp-assurance::before {
  content: ''; position: absolute; z-index: -1; width: 220px; height: 220px;
  right: -95px; bottom: -125px; border: 1px solid rgba(92,174,255,.2);
  border-radius: 50%; box-shadow: 0 0 0 34px rgba(92,174,255,.035), 0 0 0 68px rgba(92,174,255,.02);
}
.otp-assurance-copy { min-width: 0; }
.otp-stock-pill, .otp-buy-status {
  display: inline-flex; align-items: center; gap: .48rem;
  color: #79ebb8; font: 700 .65rem/1 var(--mono); letter-spacing: .08em;
  border: 1px solid rgba(76,227,154,.32); border-radius: 999px;
  background: rgba(43,156,105,.11); padding: .48rem .68rem;
}
.otp-stock-pill i, .otp-buy-status i, .otp-server-ready i {
  width: 7px; height: 7px; flex: 0 0 auto; border-radius: 50%;
  background: #4be39c; box-shadow: 0 0 10px rgba(75,227,156,.95);
}
.otp-assurance h2 { margin: .78rem 0 .45rem; color: #fff; font-size: clamp(1.45rem, 2.3vw, 1.82rem); line-height: 1.15; }
.otp-assurance-copy > p { max-width: 620px; margin-bottom: 1rem; color: #b9d1c8; font-size: .93rem; line-height: 1.65; }
.otp-assurance .btn { min-height: 44px; }
.otp-proof-grid { display: grid; gap: .58rem; align-content: center; }
.otp-proof {
  display: flex; align-items: center; gap: .68rem; min-width: 0;
  padding: .78rem .85rem; border: 1px solid rgba(255,255,255,.09); border-radius: 10px;
  background: rgba(3,10,16,.35); backdrop-filter: blur(6px);
}
.otp-proof span {
  display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; flex: 0 0 auto;
  color: #75e8b6; background: rgba(70,227,154,.1); border: 1px solid rgba(70,227,154,.2); border-radius: 8px;
}
.otp-proof b { color: #e7f1ed; font-size: .78rem; line-height: 1.35; }
.otp-server-section { margin-top: 1.8rem; }
.otp-section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; }
.otp-section-head .label { display: block; margin-bottom: .26rem; color: #66d9b0; }
.otp-section-head h2 { color: #f2f5f4; font-size: 1.42rem; }
.otp-server-count {
  flex: 0 0 auto; color: #8ee4bd; font: 700 .65rem/1 var(--mono); letter-spacing: .05em;
  padding: .52rem .68rem; border: 1px solid rgba(70,201,143,.28); border-radius: 8px;
  background: rgba(70,201,143,.07);
}
.otp-section-intro { max-width: 660px; margin: .65rem 0 1rem; color: var(--muted); font-size: .9rem; line-height: 1.6; }
.otp-server-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .78rem; }
.otp-server-card {
  position: relative; overflow: hidden; padding: 1.1rem;
  border: 1px solid rgba(76,157,255,.22); border-radius: 13px;
  background:
    linear-gradient(145deg, rgba(76,157,255,.085), transparent 48%),
    linear-gradient(180deg, #171b25, #10141c);
  box-shadow: 0 10px 26px rgba(0,0,0,.22);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.otp-server-card::after {
  content: ''; position: absolute; width: 105px; height: 105px; right: -52px; top: -52px;
  border: 1px solid rgba(76,157,255,.16); border-radius: 50%;
}
.otp-server-card:hover { transform: translateY(-3px); border-color: rgba(76,227,154,.43); box-shadow: 0 14px 32px rgba(0,0,0,.3); }
.otp-server-card.is-unavailable { cursor: not-allowed; opacity: .52; filter: saturate(.45); }
.otp-server-card.is-unavailable:hover { transform: none; border-color: rgba(76,157,255,.22); box-shadow: none; }
.otp-server-ready.out { color: #d47e86; }
.otp-server-ready.out i { background: #d45d68; box-shadow: 0 0 8px rgba(212,93,104,.6); }
.otp-server-card-top { display: flex; align-items: center; justify-content: space-between; gap: .7rem; margin-bottom: 1.05rem; }
.otp-server-index { color: #566479; font: 600 .7rem/1 var(--mono); }
.otp-server-ready {
  display: inline-flex; align-items: center; gap: .38rem;
  color: #6fe2ad; font: 700 .6rem/1 var(--mono); letter-spacing: .07em;
}
.otp-server-type { color: #7890ad; font: 600 .59rem/1 var(--mono); letter-spacing: .09em; }
.otp-server-card h3 { margin: .28rem 0 .32rem; color: #fff; font-size: 1.32rem; letter-spacing: .02em; }
.otp-server-card p { min-height: 2.8em; color: #9eacbe; font-size: .8rem; line-height: 1.45; }
.otp-server-card-foot {
  display: flex; align-items: center; gap: .42rem; margin-top: .85rem; padding-top: .7rem;
  color: #b9c9c2; font-size: .72rem; border-top: 1px solid rgba(255,255,255,.07);
}
.otp-server-card-foot span { color: #57d99e; }
.otp-product-description > p {
  padding: 1rem 1.1rem; border-left: 3px solid rgba(76,157,255,.65);
  border-radius: 0 10px 10px 0; background: rgba(76,157,255,.055); line-height: 1.7;
}
.otp-service-label { display: block; margin: 1.8rem 0 .85rem; color: #67dcb0; }
.otp-service-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .72rem; }
.otp-service-card {
  display: flex; align-items: flex-start; gap: .78rem; padding: .95rem;
  border: 1px solid var(--border); border-radius: 11px;
  background: linear-gradient(180deg, var(--surface2), var(--surface));
}
.otp-service-icon {
  display: inline-flex; align-items: center; justify-content: center; width: 31px; height: 31px; flex: 0 0 auto;
  color: #72e4b2; font: 700 .8rem/1 var(--mono);
  border: 1px solid rgba(70,227,154,.22); border-radius: 9px; background: rgba(70,227,154,.08);
}
.otp-service-card h3 { margin: .05rem 0 .22rem; color: #e8ecea; font-size: .87rem; }
.otp-service-card p { color: var(--muted); font-size: .77rem; line-height: 1.5; }
.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; }
.otp-buy-card {
  overflow: hidden; border-color: rgba(70,227,154,.34);
  background:
    radial-gradient(circle at 100% 0, rgba(76,157,255,.12), transparent 38%),
    linear-gradient(180deg, #181d25, #10151b);
  box-shadow: 0 18px 46px rgba(0,0,0,.32);
}
.otp-buy-card::before {
  content: ''; position: absolute; inset: 0 0 auto; height: 3px;
  background: linear-gradient(90deg, #48df99, #4c9dff);
}
.otp-buy-status { margin-bottom: 1.05rem; }
.otp-buy-card .label { margin-bottom: .75rem; color: #8fa1b5; }
.otp-buy-card .unit-price { margin-bottom: 1.05rem; padding-bottom: 1rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.otp-buy-card .unit-price strong { color: #fff; font-size: 2.35rem; }
.otp-buy-points { display: grid; gap: .7rem; margin: 0 0 1.15rem; list-style: none; }
.otp-buy-points li { display: flex; align-items: flex-start; gap: .58rem; color: #c8d1d7; font-size: .82rem; line-height: 1.45; }
.otp-buy-points li span {
  display: inline-flex; align-items: center; justify-content: center; width: 19px; height: 19px; flex: 0 0 auto;
  color: #62e3a7; font-size: .66rem; border-radius: 50%; background: rgba(70,227,154,.1);
}
.otp-order-server-note {
  display: flex; align-items: flex-start; gap: .7rem; margin: 0 0 1rem; padding: .85rem;
  color: #d6e7ff; border: 1px solid rgba(76,157,255,.36); border-radius: 10px;
  background: linear-gradient(120deg, rgba(76,157,255,.12), rgba(76,157,255,.045));
}
.otp-order-server-note > span {
  display: inline-flex; align-items: center; justify-content: center; width: 24px; height: 24px; flex: 0 0 auto;
  color: #0c1520; font: 800 .76rem/1 var(--mono); border-radius: 50%; background: #6cadff;
  box-shadow: 0 0 14px rgba(76,157,255,.42);
}
.otp-order-server-note strong { display: block; margin: .05rem 0 .2rem; color: #e8f2ff; font-size: .82rem; }
.otp-order-server-note p { color: #aabdd4; font-size: .74rem; line-height: 1.5; }
.otp-buy-card .btn-primary { box-shadow: 0 10px 26px rgba(76,157,255,.22); }
.otp-secure-note { margin-top: .85rem; color: #738191; font-size: .69rem; line-height: 1.45; text-align: center; }
.otp-sell-trigger {
  margin-top: .65rem; color: #fff3d1;
  border-color: rgba(238,177,70,.46);
  background: linear-gradient(135deg, rgba(146,91,20,.3), rgba(74,48,20,.22));
}
.otp-sell-trigger:hover { color: #fff; border-color: rgba(255,197,91,.75); background: linear-gradient(135deg, rgba(174,108,23,.42), rgba(88,56,20,.3)); }
.otp-sell-summary { margin: .55rem .2rem 0; color: #d8b66e; font-size: .72rem; line-height: 1.45; text-align: center; }
.otp-sell-dialog {
  width: min(520px, calc(100% - 1.2rem)); max-height: calc(100vh - 1.2rem);
  padding: 0; color: var(--text); border: 0; border-radius: 17px;
  background: transparent; overflow: auto; box-shadow: 0 28px 80px rgba(0,0,0,.65);
}
.otp-sell-dialog::backdrop { background: rgba(3,5,10,.78); backdrop-filter: blur(6px); }
.otp-sell-modal {
  position: relative; padding: 1.7rem;
  border: 1px solid rgba(238,177,70,.35); border-radius: 17px;
  background:
    radial-gradient(circle at 92% 3%, rgba(238,177,70,.15), transparent 34%),
    linear-gradient(180deg, #1a1d26, #10141b);
}
.otp-sell-close {
  position: absolute; top: .85rem; right: .9rem; width: 36px; height: 36px;
  color: #aab1bd; font-size: 1.35rem; line-height: 1; cursor: pointer;
  border: 1px solid rgba(255,255,255,.1); border-radius: 10px; background: rgba(255,255,255,.035);
}
.otp-sell-close:hover { color: #fff; border-color: rgba(255,255,255,.24); }
.otp-sell-eyebrow { display: block; padding-right: 2.8rem; color: #e9b853; font: 700 .64rem/1 var(--mono); letter-spacing: .1em; }
.otp-sell-modal h2 { margin: .55rem 2.3rem .42rem 0; color: #fff; font-size: 1.45rem; line-height: 1.2; }
.otp-sell-intro { color: #aeb7c4; font-size: .86rem; line-height: 1.58; }
.otp-sell-offer {
  display: flex; align-items: baseline; gap: .45rem; flex-wrap: wrap;
  margin: 1.15rem 0; padding: 1rem;
  border: 1px solid rgba(238,177,70,.28); border-radius: 12px;
  background: linear-gradient(120deg, rgba(148,91,17,.17), rgba(76,157,255,.06));
}
.otp-sell-offer > span { width: 100%; color: #a98d58; font: 700 .6rem/1 var(--mono); letter-spacing: .09em; }
.otp-sell-offer strong { color: #ffd47b; font-family: var(--head); font-size: 1.95rem; line-height: 1; }
.otp-sell-offer small { color: #b8a989; font-size: .76rem; }
.otp-sell-label { display: block; margin-bottom: .42rem; color: #d8dce2; font-size: .8rem; font-weight: 600; }
.otp-sell-quantity {
  display: grid; grid-template-columns: 1fr auto; align-items: center;
  border: 1px solid #343b48; border-radius: 11px; background: #0b0f15; overflow: hidden;
}
.otp-sell-quantity:focus-within { border-color: #d7a84c; box-shadow: 0 0 0 3px rgba(215,168,76,.12); }
.otp-sell-quantity input {
  min-width: 0; width: 100%; padding: .78rem .9rem; color: #fff;
  font: 700 1.05rem var(--mono); border: 0; outline: 0; background: transparent;
}
.otp-sell-quantity > span { padding: 0 .9rem; color: #858f9d; font-size: .77rem; border-left: 1px solid #2b313c; }
.otp-sell-total { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin: .75rem 0; padding: .78rem .9rem; border-radius: 10px; background: rgba(76,157,255,.075); }
.otp-sell-total span { color: #99a5b5; font-size: .78rem; }
.otp-sell-total strong { color: #75b3ff; font-family: var(--mono); font-size: 1rem; }
.otp-sell-note { margin-bottom: 1rem; color: #8993a0; font-size: .73rem; line-height: 1.55; }
.otp-sell-cancel { margin-top: .6rem; }
.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 (canlı destek balonunun üstünde) */
.tg-contact {
  position: fixed; right: 20px; bottom: 190px; z-index: 999;
  display: flex; align-items: center; gap: 10px; color: #fff;
  border: 1px solid rgba(255,255,255,.22); border-radius: 999px;
  padding: 7px 8px 7px 15px;
  background: linear-gradient(135deg, rgba(25,45,78,.96), rgba(34,158,217,.96));
  box-shadow: 0 10px 28px rgba(10,22,45,.45), 0 0 20px rgba(34,158,217,.2);
  backdrop-filter: blur(10px); transition: transform .18s, box-shadow .2s;
}
.tg-contact:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(34,158,217,.48); }
.tg-contact-label { font-size: .78rem; font-weight: 700; letter-spacing: .01em; white-space: nowrap; }
.tg-contact-icon { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: #229ed9; box-shadow: inset 0 0 0 1px rgba(255,255,255,.18); }
.tg-contact svg { margin-left: -2px; }
@media (max-width: 600px) {
  .tg-contact { right: 16px; bottom: 178px; padding: 6px; }
  .tg-contact-label { display: none; }
  .tg-contact-icon { width: 44px; height: 44px; }
}

.nf-promo { width: 100%; margin: 3rem auto 0; }
.nf-promo-wide { max-width: 1120px; }
.nf-promo-compact { max-width: 720px; margin-top: 2.5rem; }
.nf-promo-label {
  display: block; margin: 0 0 .45rem; color: var(--faint);
  font-size: .62rem; font-weight: 700; letter-spacing: .16em; text-align: center;
}
.nf-promo-link {
  display: block; width: 100%; aspect-ratio: 7 / 1; overflow: hidden;
  border: 1px solid rgba(255,255,255,.12); border-radius: 10px;
  background: #090a0e; box-shadow: 0 12px 34px rgba(0,0,0,.3);
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.nf-promo-link:hover {
  border-color: rgba(134,114,255,.5); transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0,0,0,.42);
}
.nf-promo-link img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* 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; }
  .otp-assurance { grid-template-columns: 1fr; padding: 1.25rem; }
  .otp-proof-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .otp-proof { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 600px) {
  .container { width: min(1120px, 100% - 1rem); }
  .topbar-msg { padding-block: .38rem; font-size: .74rem; }
  .home-hero {
    min-height: 0;
    padding: 2.75rem .75rem 2rem;
    background-image:
      linear-gradient(180deg, rgba(5,5,9,.18) 0%, rgba(5,5,9,.32) 62%, var(--bg) 100%),
      linear-gradient(90deg, rgba(5,5,9,.20), rgba(5,5,9,.72) 50%, rgba(5,5,9,.20)),
      url('/img/home-hero-mobile.webp');
  }
  .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; }
  .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; }
  .extra-videos-head { align-items: flex-start; display: grid; }
  .extra-video-count { justify-self: start; }
  .extra-video-meta { grid-template-columns: 1fr; gap: .5rem; }
  .pvp-servers-head { display: grid; }
  .pvp-server-count { justify-self: start; white-space: nowrap; }
  .buy-card { padding: 1.25rem; }
  .pricing-disclosure { align-items: flex-start; flex-direction: column; }
  .product-price-options { grid-template-columns: 1fr; }
  .product-price-option { grid-template-columns: 1fr auto auto; align-items: baseline; }
  .product-price-option > span { grid-column: auto; }
  .product-price-overview-head { align-items: flex-start; }
  .product-price-overview-unit { align-items: flex-start; flex-direction: column; }
  .otp-section-head { align-items: flex-start; display: grid; }
  .otp-server-count { justify-self: start; }
  .otp-server-grid, .otp-service-grid { grid-template-columns: 1fr; }
  .otp-proof-grid { grid-template-columns: 1fr; }
  .otp-proof { align-items: center; flex-direction: row; }
  .otp-server-card p { min-height: 0; }
  .otp-sell-modal { padding: 1.25rem; }
  .otp-sell-modal h2 { margin-right: 1.9rem; font-size: 1.25rem; }
  .otp-sell-offer { padding: .85rem; }
  .otp-sell-offer strong { font-size: 1.7rem; }
  .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; }
  .nf-promo { margin-top: 2rem; }
  .nf-promo-link { border-radius: 7px; }
}

@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; }
}

/* OTP server seçimi, profil teslimatı ve admin teslimat paneli */
.otp-server-card { cursor: pointer; }
.otp-server-radio { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.otp-server-card:focus-within { outline: 2px solid rgba(100,180,255,.8); outline-offset: 3px; }
.otp-server-card:has(.otp-server-radio:checked) {
  border-color: #54dfa0; transform: translateY(-3px);
  box-shadow: 0 0 0 2px rgba(84,223,160,.14), 0 16px 36px rgba(0,0,0,.34);
  background: linear-gradient(145deg, rgba(38,146,105,.2), rgba(21,32,52,.96));
}
.otp-server-card:has(.otp-server-radio:checked) .otp-server-card-foot b { color: #68e5ab; }
.otp-selected-server {
  margin: 0 0 .7rem; padding: .7rem .8rem; color: #a9bad0; font: 700 .75rem/1.4 var(--mono);
  text-align: center; border: 1px solid rgba(76,157,255,.24); border-radius: 8px; background: rgba(76,157,255,.07);
}
#otpCheckoutButton:disabled { opacity: .48; cursor: not-allowed; filter: grayscale(.35); }
.account-section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; margin-bottom: 1rem; }
.account-section-head h1, .account-section-head h2 { margin-bottom: .2rem; }
.account-section-head p { color: var(--muted); font-size: .82rem; }
.otp-account-list { display: grid; gap: 1rem; margin-bottom: 2.5rem; }
.otp-account-empty { color: var(--muted); }
.otp-account-card { padding: 1.25rem; border-color: rgba(76,157,255,.25); }
.otp-account-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.otp-account-head .label { display: block; margin-bottom: .25rem; }
.otp-account-head h3 { color: #fff; font-size: 1.22rem; }
.otp-account-head p { margin-top: .25rem; color: var(--muted); font-size: .8rem; }
.otp-delivery-pending { display: flex; gap: .8rem; margin-top: 1rem; padding: 1rem; border: 1px solid rgba(76,157,255,.2); border-radius: 10px; background: rgba(76,157,255,.07); }
.otp-delivery-pending > span { color: #6cadff; font-size: 1.25rem; }
.otp-delivery-pending strong { color: #e3efff; }
.otp-delivery-pending p { margin-top: .2rem; color: #a9bad0; font-size: .8rem; line-height: 1.5; }
.otp-credential-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: .7rem; margin-top: 1rem; }
.otp-credential { display: flex; align-items: center; flex-wrap: wrap; gap: .45rem; padding: .8rem; border: 1px solid rgba(255,255,255,.08); border-radius: 9px; background: rgba(255,255,255,.025); }
.otp-credential > span { flex-basis: 100%; color: var(--muted); font-size: .68rem; text-transform: uppercase; letter-spacing: .06em; }
.otp-credential code { flex: 1 1 auto; overflow-wrap: anywhere; color: #e9f4ff; }
.otp-credential .btn { min-height: 32px; padding: .35rem .55rem; font-size: .67rem; }
.otp-delivery-note { margin-top: .75rem; padding: .85rem; border-left: 3px solid rgba(84,223,160,.5); background: rgba(84,223,160,.055); }
.otp-delivery-note strong { color: #cceedd; font-size: .76rem; }
.otp-delivery-note p, .otp-delivery-note pre { margin-top: .35rem; color: #b7c6c0; font: .8rem/1.55 var(--mono); white-space: pre-wrap; overflow-wrap: anywhere; }
.otp-account-meta, .admin-otp-meta { display: flex; flex-wrap: wrap; gap: .6rem 1rem; margin-top: .9rem; color: var(--faint); font-size: .7rem; }
.otp-account-meta a { margin-left: auto; }
.admin-otp-title { align-items: center; }
.admin-otp-list { display: grid; gap: 1rem; }
.admin-otp-card { padding: 1.25rem; }
.admin-otp-form { display: grid; gap: .8rem; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.08); }
.admin-otp-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: .8rem; }
.admin-otp-form label { display: grid; gap: .35rem; color: var(--muted); font-size: .73rem; }
.admin-otp-form small { color: var(--faint); }
.admin-otp-form input, .admin-otp-form select, .admin-otp-form textarea {
  width: 100%; padding: .72rem .8rem; color: var(--text); border: 1px solid var(--border); border-radius: 8px; background: rgba(0,0,0,.2); font: .82rem/1.4 var(--mono);
}
.admin-otp-form input:focus, .admin-otp-form select:focus, .admin-otp-form textarea:focus { border-color: #5ea7ff; outline: none; }
.admin-otp-form .btn { justify-self: start; }
@media (max-width: 700px) {
  .account-section-head, .otp-account-head { align-items: flex-start; flex-direction: column; }
  .otp-credential-grid, .admin-otp-grid { grid-template-columns: 1fr; }
  .otp-account-meta a { margin-left: 0; }
}


/* OTP purchase UI: compact, explicit selection, natural typography */
.product-layout-otp { grid-template-columns: minmax(0, 1fr) 350px; }
.product-layout-otp .product-head h1 { font-size: clamp(1.75rem, 3vw, 2.25rem); letter-spacing: -.02em; }
.product-layout-otp .tagline { font-size: .95rem; line-height: 1.55; }
.otp-server-section { margin-top: .8rem; }
.otp-section-head .label, .otp-server-count, .otp-buy-status, .otp-buy-card .label {
  font-family: var(--body); letter-spacing: .02em; text-transform: none;
}
.otp-section-head h2 { font-size: 1.3rem; letter-spacing: -.01em; }
.otp-section-intro { margin: .4rem 0 .85rem; font-size: .88rem; }
.otp-server-grid { gap: .65rem; }
.otp-server-card {
  display: grid; grid-template-columns: 24px minmax(0, 1fr) auto; align-items: center; gap: .75rem;
  min-height: 88px; padding: .9rem 1rem; overflow: visible;
  border: 1px solid #354052; border-radius: 10px; background: #151b25; box-shadow: none;
}
.otp-server-card::after { display: none; }
.otp-server-card:hover { transform: none; border-color: #6b7b92; box-shadow: none; background: #18202c; }
.otp-choice-indicator {
  width: 20px; height: 20px; border: 2px solid #68778a; border-radius: 50%; background: #0d1219;
  box-shadow: inset 0 0 0 4px #0d1219;
}
.otp-server-card > div h3 { margin: 0 0 .18rem; font-size: 1.05rem; letter-spacing: 0; }
.otp-server-card > div p { min-height: 0; color: #8f9bad; font-size: .76rem; }
.otp-server-ready { font-family: var(--body); font-size: .72rem; font-weight: 500; letter-spacing: 0; text-transform: none; }
.otp-card-action { grid-column: 2 / -1; color: #9dacbf; font-size: .75rem; font-weight: 600; }
.otp-server-card.is-selected,
.otp-server-card:has(.otp-server-radio:checked) {
  transform: none; border-color: #54dfa0; background: #15271f;
  box-shadow: 0 0 0 2px rgba(84,223,160,.16);
}
.otp-server-card.is-selected .otp-choice-indicator,
.otp-server-card:has(.otp-server-radio:checked) .otp-choice-indicator { border-color: #54dfa0; background: #54dfa0; }
.otp-server-card.is-selected .otp-card-action,
.otp-server-card:has(.otp-server-radio:checked) .otp-card-action { color: #68e5ab; }
.otp-selected-server { font-family: var(--body); font-size: .8rem; font-weight: 600; }
.otp-checkout-hint { margin: 0 0 .65rem; color: #8996a7; font-size: .75rem; text-align: center; }
.otp-buy-card { box-shadow: 0 12px 30px rgba(0,0,0,.24); }
.otp-buy-card .unit-price strong { font-size: 2rem; }
.otp-buy-points { gap: .55rem; }
.otp-buy-points li { font-size: .8rem; }
.otp-product-description { display: none; }
@media (max-width: 900px) { .product-layout-otp { grid-template-columns: 1fr; } }
@media (max-width: 560px) {
  .otp-server-grid { grid-template-columns: 1fr; }
  .otp-server-card { min-height: 82px; }
}

.otp-inline-checkout { margin-top: .8rem; }

/* Native visible radio: guarantees obvious selection and direct click behavior */
.product-layout-otp .otp-server-radio {
  position: static; width: 21px; height: 21px; opacity: 1; pointer-events: auto;
  margin: 0; accent-color: #54dfa0; cursor: pointer;
}
.product-layout-otp .otp-choice-indicator { display: none; }
.product-layout-otp .otp-server-card { grid-template-columns: 24px minmax(0, 1fr) auto; }


/* OTP embedded Shopier payment */
.otp-payment-page { max-width: 920px; margin-inline: auto; }
.otp-payment-head { display:flex; justify-content:space-between; align-items:flex-end; gap:1rem; flex-wrap:wrap; margin-bottom:1rem; }
.otp-payment-head .label { display:block; margin-bottom:.35rem; font-family:var(--body); letter-spacing:.02em; }
.otp-payment-head h1 { margin:0 0 .35rem; font-size:clamp(1.55rem,3vw,2rem); letter-spacing:-.02em; }
.otp-payment-head p { color:var(--muted); font-size:.92rem; }
.otp-payment-info { display:flex; gap:.45rem; flex-wrap:wrap; margin:0 0 1rem; }
.otp-payment-actions { display:flex; gap:.8rem; justify-content:center; margin-top:1rem; flex-wrap:wrap; }
@media (max-width:600px) { .otp-payment-head { align-items:flex-start; flex-direction:column; } }
