@font-face {
  font-family: "Truva Beaufort";
  src: local("Beaufort for LOL"), local("BeaufortforLOL-Regular"), url("../fonts/BeaufortforLOL-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Truva Beaufort";
  src: local("BeaufortforLOL-Medium"), url("../fonts/BeaufortforLOL-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500 600;
  font-display: swap;
}
@font-face {
  font-family: "Truva Beaufort";
  src: local("BeaufortforLOL-Bold"), url("../fonts/BeaufortforLOL-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700 900;
  font-display: swap;
}

:root {
  --ink: #040201;
  --ink-soft: #100805;
  --panel: rgba(21, 8, 4, .9);
  --panel-solid: #120905;
  --gold: #efbc69;
  --gold-bright: #fff1c8;
  --gold-dark: #83562c;
  --ivory: #fff4dc;
  --muted: #d7c3a3;
  --status: #d69a48;
  --line: rgba(239, 188, 105, .28);
  --display: "Truva Beaufort", "Cormorant Garamond", Georgia, serif;
  --body: "Truva Beaufort", "Cormorant Garamond", Georgia, serif;
  --shell: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ivory);
  background: var(--ink);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
.shell { width: var(--shell); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.skip-link { position: fixed; left: 12px; top: -80px; z-index: 100; padding: 12px 18px; background: var(--gold); color: #111; }
.skip-link:focus { top: 12px; }

.ambient { position: fixed; inset: 0; z-index: 20; pointer-events: none; overflow: hidden; }
.ambient span { position: absolute; width: 3px; height: 3px; border-radius: 50%; background: var(--gold-bright); box-shadow: 0 0 12px 4px rgba(241,213,139,.35); animation: drift 9s linear infinite; opacity: 0; }
.ambient span:nth-child(1) { left: 7%; top: 72%; animation-delay: 0s; }
.ambient span:nth-child(2) { left: 22%; top: 48%; animation-delay: 2s; }
.ambient span:nth-child(3) { left: 42%; top: 84%; animation-delay: 5s; }
.ambient span:nth-child(4) { left: 65%; top: 61%; animation-delay: 1s; }
.ambient span:nth-child(5) { left: 82%; top: 78%; animation-delay: 3.5s; }
.ambient span:nth-child(6) { left: 94%; top: 42%; animation-delay: 6s; }
@keyframes drift { 0% { transform: translateY(35px) scale(.5); opacity: 0; } 20% { opacity: .8; } 80% { opacity: .25; } 100% { transform: translateY(-220px) scale(1.5); opacity: 0; } }

.site-header {
  position: absolute;
  z-index: 30;
  inset: 0 0 auto;
  height: 92px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(4,2,1,.97), rgba(10,4,2,.72));
  backdrop-filter: blur(8px);
}
.header-inner { height: 100%; display: flex; align-items: center; gap: 38px; }
.brand { display: inline-flex; align-items: center; min-width: 190px; }
.brand > img { display: block; width: 146px; height: 88px; object-fit: contain; filter: drop-shadow(0 4px 13px rgba(0,0,0,.55)); }
.brand-mark { display: grid; place-items: center; width: 43px; aspect-ratio: 1; color: var(--gold-bright); border: 1px solid var(--gold-dark); font: 700 27px/1 var(--display); transform: rotate(45deg); background: linear-gradient(135deg, #35170b, #090301); box-shadow: inset 0 0 0 4px rgba(0,0,0,.2), 0 0 24px rgba(213,169,91,.15); }
.brand-mark::first-letter { transform: rotate(-45deg); }
.brand-copy { display: grid; gap: 2px; }
.brand-copy strong { font: 700 23px/1 var(--display); letter-spacing: .12em; }
.brand-copy strong span { color: var(--gold); }
.brand-copy small, .footer-brand small { color: #a88e72; font-size: 8px; letter-spacing: .32em; }
.main-nav { display: flex; align-self: stretch; align-items: center; justify-content: center; gap: 8px; margin-inline: auto; }
.main-nav a { position: relative; display: grid; place-items: center; height: 100%; padding: 0 17px; color: #d9cbb8; font: 600 13px/1 var(--display); letter-spacing: .13em; transition: color .2s ease; }
.main-nav a::after { content: ""; position: absolute; left: 18px; right: 18px; bottom: -1px; height: 2px; background: var(--gold); transform: scaleX(0); transition: transform .2s ease; }
.main-nav a:hover, .main-nav a.is-active { color: var(--gold-bright); }
.main-nav a:hover::after, .main-nav a.is-active::after { transform: scaleX(1); }
.nav-toggle { display: none; }

.hero { position: relative; min-height: 1080px; overflow: hidden; isolation: isolate; padding: 116px 0 62px; background: radial-gradient(circle at 50% 35%, rgba(126,55,21,.3), transparent 31%), linear-gradient(180deg, #040201 0%, #190a05 52%, #070301 100%); }
.hero::before { content: ""; position: absolute; inset: 0; z-index: -4; opacity: .32; background-image: linear-gradient(30deg, transparent 49%, rgba(213,169,91,.05) 50%, transparent 51%), linear-gradient(150deg, transparent 49%, rgba(213,169,91,.04) 50%, transparent 51%); background-size: 80px 140px; mask-image: linear-gradient(to bottom, #000, transparent 86%); }
.hero::after { content: ""; position: absolute; inset: auto 0 0; z-index: -1; height: 48%; background: linear-gradient(to top, #070301 5%, transparent), radial-gradient(ellipse at 50% 100%, rgba(0,0,0,.7), transparent 68%); }
.hero-art { position: absolute; inset: 0; z-index: -2; pointer-events: none; }
.sun-disc { position: absolute; left: 50%; top: 170px; width: 620px; aspect-ratio: 1; transform: translateX(-50%); border-radius: 50%; border: 1px solid rgba(213,169,91,.2); background: radial-gradient(circle, rgba(209,161,78,.25) 0 2%, rgba(180,126,50,.12) 38%, rgba(45,16,7,.08) 65%, transparent 66%); box-shadow: 0 0 80px rgba(151,116,56,.13); }
.sun-disc::before, .sun-disc::after { content: ""; position: absolute; inset: 10%; border: 1px solid rgba(213,169,91,.1); border-radius: 50%; }
.sun-disc::after { inset: 26%; }
.citadel { position: absolute; left: 50%; bottom: 50px; width: 800px; height: 440px; transform: translateX(-50%); opacity: .28; filter: drop-shadow(0 -10px 28px rgba(0,0,0,.65)); }
.citadel::before { content: ""; position: absolute; inset: 45% 5% 0; background: #030100; clip-path: polygon(0 100%,0 55%,7% 55%,7% 28%,14% 28%,14% 48%,22% 48%,22% 14%,28% 14%,28% 52%,35% 52%,35% 25%,41% 25%,41% 47%,47% 47%,47% 0,53% 0,53% 47%,59% 47%,59% 25%,65% 25%,65% 52%,72% 52%,72% 14%,78% 14%,78% 48%,86% 48%,86% 28%,93% 28%,93% 55%,100% 55%,100% 100%); }
.citadel i { position: absolute; bottom: 0; width: 1px; height: 72%; background: linear-gradient(transparent, rgba(213,169,91,.27), transparent); transform-origin: bottom; }
.citadel i:nth-child(1) { left: 15%; transform: rotate(33deg); } .citadel i:nth-child(2) { left: 32%; transform: rotate(18deg); } .citadel i:nth-child(3) { left: 50%; } .citadel i:nth-child(4) { left: 68%; transform: rotate(-18deg); } .citadel i:nth-child(5) { left: 85%; transform: rotate(-33deg); }
.warrior { position: absolute; bottom: -80px; width: 420px; height: 700px; opacity: .43; background: linear-gradient(145deg, transparent 12%, #080301 12% 37%, #3a170c 38% 55%, #060201 56%); filter: drop-shadow(0 0 35px rgba(0,0,0,.75)); clip-path: polygon(37% 0, 57% 2%, 64% 13%, 59% 23%, 73% 38%, 84% 68%, 100% 100%, 0 100%, 20% 68%, 29% 37%, 38% 23%, 31% 13%); }
.warrior::before { content: ""; position: absolute; left: 28%; top: 7%; width: 44%; height: 21%; border: 2px solid rgba(239,188,105,.24); transform: rotate(-7deg); clip-path: polygon(50% 0,100% 25%,82% 100%,18% 100%,0 25%); background: linear-gradient(135deg, #4a2110, #080301); }
.warrior-left { left: max(-100px, calc(50% - 760px)); transform: rotate(4deg); }
.warrior-right { right: max(-100px, calc(50% - 760px)); transform: scaleX(-1) rotate(4deg); }
.hero-shell { position: relative; }
.server-pill { width: max-content; margin: 0 auto 8px; display: flex; align-items: center; gap: 10px; padding: 8px 15px; border: 1px solid var(--line); border-radius: 100px; background: rgba(20,7,3,.72); color: #c0aa91; text-transform: uppercase; font-size: 10px; letter-spacing: .14em; }
.server-pill i { width: 7px; height: 7px; border-radius: 50%; background: var(--status); box-shadow: 0 0 0 4px rgba(214,154,72,.11), 0 0 10px var(--status); }
.server-pill strong { color: var(--ivory); }
.hero-heading { max-width: 630px; margin: auto; text-align: center; }
.eyebrow { position: relative; z-index: 2; margin: 15px 0 6px; color: var(--gold); font: 700 11px/1 var(--display); letter-spacing: .36em; }
.hero-heading h1 { margin: 2px 0; line-height: 1; }
.hero-heading h1 img { display: block; width: clamp(330px, 33vw, 470px); height: 285px; margin: 0 auto -42px; object-fit: contain; filter: drop-shadow(0 12px 28px rgba(0,0,0,.72)); }
.hero-heading h1 span { color: var(--ivory); }
.hero-heading h1 b { margin-left: 5px; color: var(--gold); font-size: 1.08em; }
.hero-heading > p:last-child { max-width: 550px; margin: 10px auto 26px; color: #c8b59c; font: 500 15px/1.7 var(--body); }
.portal-grid { position: relative; width: min(440px, 100%); margin: auto; }
.portal-intro { padding: 28px 0; }
.chapter { display: inline-block; padding-bottom: 8px; border-bottom: 1px solid var(--gold-dark); color: var(--gold); font: 600 9px/1 var(--display); letter-spacing: .3em; }
.portal-intro h2 { max-width: 440px; margin: 20px 0 15px; font: 600 clamp(29px, 3vw, 43px)/1.2 var(--display); }
.portal-intro > p { max-width: 500px; color: var(--muted); font-size: 13px; line-height: 1.8; }
.feature-list { display: flex; gap: 34px; margin: 28px 0 30px; }
.feature-list div { display: flex; align-items: center; gap: 10px; }
.feature-list strong { color: var(--gold-bright); font: 600 20px/1 var(--display); }
.feature-list span { color: #a98d70; font-size: 9px; line-height: 1.45; text-transform: uppercase; letter-spacing: .08em; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-height: 50px; border: 0; cursor: pointer; font: 700 13px/1 var(--display); letter-spacing: .18em; text-transform: uppercase; text-shadow: 0 1px 0 rgba(255,255,255,.2); transition: transform .2s ease, filter .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-2px); filter: brightness(1.08); }
.btn svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.btn-primary { position: relative; min-width: 245px; padding: 0 22px; color: #241205; background: linear-gradient(135deg, var(--gold-bright), var(--gold)); clip-path: polygon(10px 0,100% 0,100% calc(100% - 10px),calc(100% - 10px) 100%,0 100%,0 10px); }
.login-card { position: relative; width: 100%; padding: 22px 26px 20px; border: 1px solid var(--line); background: linear-gradient(145deg, rgba(37,13,7,.96), rgba(7,3,1,.97)); box-shadow: 0 28px 70px rgba(0,0,0,.42), inset 0 0 45px rgba(239,188,105,.035); }
.login-card::before, .login-card::after { content: ""; position: absolute; width: 32px; height: 32px; border-color: var(--gold); pointer-events: none; }
.login-card::before { left: -1px; top: -1px; border-left: 2px solid var(--gold); border-top: 2px solid var(--gold); }
.login-card::after { right: -1px; bottom: -1px; border-right: 2px solid var(--gold); border-bottom: 2px solid var(--gold); }
.card-ornament { display: flex; align-items: center; gap: 10px; width: 108px; margin: 0 auto 8px; }
.card-ornament::before, .card-ornament::after { content: ""; height: 1px; flex: 1; background: linear-gradient(to right, transparent, var(--gold-dark)); }
.card-ornament::after { transform: scaleX(-1); }
.card-ornament span { width: 8px; aspect-ratio: 1; border: 1px solid var(--gold); transform: rotate(45deg); }
.card-heading { text-align: center; }
.card-heading > span { color: var(--gold); font: 600 8px/1 var(--display); letter-spacing: .28em; }
.card-heading h2 { margin: 3px 0 12px; font: 700 25px/1.2 var(--display); text-transform: uppercase; letter-spacing: .17em; }
.card-heading p { margin: 0 0 24px; color: #9a8269; font-size: 12px; }
.field { display: grid; gap: 6px; margin-bottom: 10px; }
.field label { color: #d5c1a8; font-size: 11px; text-transform: uppercase; letter-spacing: .12em; }
.label-row { display: flex; justify-content: space-between; align-items: center; }
.label-row a { color: var(--gold); font-size: 9px; }
.input-wrap { position: relative; }
.input-wrap > svg { position: absolute; left: 15px; top: 50%; width: 17px; transform: translateY(-50%); fill: none; stroke: #9b8165; stroke-width: 1.4; pointer-events: none; }
.input-wrap input { width: 100%; height: 42px; border: 1px solid rgba(239,188,105,.28); outline: 0; padding: 0 42px; color: var(--ivory); background: rgba(0,0,0,.24); font-size: 13px; transition: border-color .2s, box-shadow .2s; }
.input-wrap input::placeholder { color: #705b48; }
.input-wrap input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(213,169,91,.08); }
.password-toggle { position: absolute; right: 7px; top: 50%; display: grid; place-items: center; width: 36px; height: 36px; transform: translateY(-50%); border: 0; background: transparent; cursor: pointer; }
.password-toggle svg { width: 17px; fill: none; stroke: #9b8165; stroke-width: 1.4; }
.captcha-box { width: 288px; height: 64px; margin: 11px auto; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 10px; padding: 0 12px; color: #eee8df; border: 1px solid #514338; border-radius: 2px; background: #211d1a; box-shadow: 0 2px 8px rgba(0,0,0,.35); font-family: Inter, Arial, sans-serif; font-size: 11px; }
.captcha-check { width: 24px; height: 24px; border: 2px solid #a69b91; background: #f4f1ed; box-shadow: inset 0 0 0 1px #fff; }
.captcha-box strong { color: #bcb2a8; font-size: 9px; font-weight: 500; }
.remember { display: flex; align-items: center; gap: 9px; width: max-content; margin: 14px 0 18px; color: #ab9278; font-size: 11px; cursor: pointer; }
.remember input { position: absolute; opacity: 0; }
.remember span { display: grid; place-items: center; width: 15px; height: 15px; border: 1px solid #80684f; }
.remember input:checked + span::after { content: ""; width: 7px; height: 7px; background: var(--gold); }
.remember input:focus-visible + span { outline: 2px solid var(--gold); outline-offset: 2px; }
.btn-submit { width: 100%; color: #251305; background: linear-gradient(100deg, #bd8c3e, #f2d58c 52%, #bd8c3e); }
.login-links { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 9px; margin-top: 13px; padding-top: 12px; color: #ddbe91; border-top: 1px solid rgba(239,188,105,.18); font: 650 11px/1.35 Inter, Arial, sans-serif; }
.login-links a { padding: 3px 1px; color: #d7b37c; text-decoration: underline; text-decoration-color: rgba(239,188,105,.4); text-underline-offset: 4px; transition: color .2s, text-decoration-color .2s; }
.login-links a:hover, .login-links a:focus-visible { color: #ffe1a8; text-decoration-color: #ffe1a8; }
.login-links span { color: #a87843; font-size: 8px; }
.register-line { margin: 10px 0 0; padding: 10px 12px; text-align: center; color: #c5aa87; border: 1px solid rgba(239,188,105,.14); background: rgba(239,188,105,.045); font: 500 12px/1.35 Inter, Arial, sans-serif; }
.register-line a { margin-left: 3px; color: #ffd58d; font-weight: 750; text-decoration: underline; text-underline-offset: 4px; }
.register-line a:hover, .register-line a:focus-visible { color: #fff0cc; }
.scroll-cue { display: flex; flex-direction: column; align-items: center; gap: 9px; margin-top: 27px; color: #d0a866; font: 700 9px/1 var(--display); letter-spacing: .32em; text-shadow: 0 0 14px rgba(239,188,105,.28); }
.scroll-cue span { display: block; width: 1px; height: 34px; background: linear-gradient(var(--gold-bright), rgba(239,188,105,.08)); box-shadow: 0 0 8px rgba(239,188,105,.25); }

.news-strip { position: relative; z-index: 3; border-block: 1px solid var(--line); background: #0c0502; }
.news-inner { min-height: 82px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 30px; }
.news-label { padding: 8px 11px; color: var(--gold-bright); border: 1px solid var(--gold-dark); font: 600 8px/1 var(--display); letter-spacing: .17em; }
.news-inner > div { display: flex; gap: 18px; align-items: center; min-width: 0; }
.news-inner time { color: #8b735c; font-size: 10px; }
.news-inner div a { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; color: #d5c2aa; font-size: 12px; }
.text-link { color: var(--gold); font: 600 9px/1 var(--display); letter-spacing: .08em; }
.text-link span { margin-left: 6px; }
.site-footer { padding: 24px 0; border-top: 1px solid var(--line); background: linear-gradient(180deg, #0b0402, #040201); }
.footer-main { min-height: 116px; display: flex; align-items: center; justify-content: space-between; gap: 42px; }
.footer-logo { flex: 0 0 auto; }
.footer-logo img { display: block; width: 140px; height: 102px; object-fit: contain; filter: drop-shadow(0 8px 18px rgba(0,0,0,.65)); }
.footer-links { display: flex; align-items: center; justify-content: flex-end; flex-wrap: wrap; gap: 13px 24px; }
.footer-links a, .footer-links button { padding: 4px 0; color: #b99b79; border: 0; background: transparent; font: 600 12px/1 var(--display); letter-spacing: .04em; cursor: pointer; transition: color .2s; }
.footer-links a:hover, .footer-links button:hover { color: var(--gold-bright); }

.legal-modal { width: min(760px, calc(100% - 28px)); max-height: min(82vh, 820px); padding: 0; overflow: hidden; color: #eadbc5; border: 1px solid rgba(239,188,105,.45); background: #100603; box-shadow: 0 30px 100px rgba(0,0,0,.75); }
.legal-modal::backdrop { background: rgba(2,1,0,.82); backdrop-filter: blur(5px); }
.legal-modal-head { position: sticky; top: 0; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 22px 25px; border-bottom: 1px solid rgba(239,188,105,.2); background: linear-gradient(90deg, #241006, #100603); }
.legal-modal-head span { color: var(--gold); font: 700 9px/1 var(--display); letter-spacing: .2em; }
.legal-modal-head h2 { margin: 5px 0 0; color: var(--ivory); font: 700 25px/1.1 var(--display); }
.legal-modal-head button { flex: 0 0 auto; width: 38px; height: 38px; color: var(--gold-bright); border: 1px solid rgba(239,188,105,.28); background: rgba(0,0,0,.24); font: 400 26px/1 var(--body); cursor: pointer; }
.legal-modal-body { max-height: calc(min(82vh, 820px) - 88px); overflow-y: auto; padding: 24px 27px 30px; scrollbar-color: var(--gold-dark) #160804; }
.legal-modal-body h3 { margin: 24px 0 8px; color: var(--gold-bright); font: 700 17px/1.25 var(--display); }
.legal-modal-body p, .legal-modal-body li { color: #bda78c; font: 500 13px/1.72 var(--body); }
.legal-modal-body ul { margin: 10px 0; padding-left: 20px; }
.legal-modal-body li + li { margin-top: 7px; }
.legal-modal-body .legal-updated { margin-top: 0; color: #80684f; font-size: 11px; }
.legal-modal-body .legal-note { margin: 25px 0 0; padding: 15px 17px; color: #d0b58f; border-left: 2px solid var(--gold); background: rgba(239,188,105,.06); }
.footer-inner { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 38px; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand > img { width: 82px; height: 58px; object-fit: contain; }
.footer-brand div { display: grid; gap: 4px; }
.footer-brand strong { color: #d5c2aa; font: 600 15px/1 var(--display); letter-spacing: .12em; }
.footer-inner nav { display: flex; justify-content: center; flex-wrap: wrap; gap: 24px; font-size: 10px; }
.footer-inner nav a:hover { color: var(--gold); }
.footer-inner > p { margin: 0; font-size: 9px; }

/* İndirme sayfası */
.download-page { background: #070301; }
.download-hero { position: relative; min-height: 470px; display: grid; place-items: center; overflow: hidden; padding: 132px 0 74px; text-align: center; background: radial-gradient(circle at 50% 30%, rgba(116,49,20,.46), transparent 38%), linear-gradient(180deg, #040201, #160804 72%, #090301); }
.download-hero::before { content: ""; position: absolute; inset: 0; opacity: .12; background: repeating-linear-gradient(90deg, transparent 0 89px, rgba(239,188,105,.18) 90px), repeating-linear-gradient(0deg, transparent 0 89px, rgba(239,188,105,.12) 90px); mask-image: radial-gradient(circle, #000, transparent 70%); }
.download-glow { position: absolute; left: 50%; bottom: -270px; width: 700px; aspect-ratio: 1; transform: translateX(-50%); border: 1px solid rgba(239,188,105,.16); border-radius: 50%; box-shadow: 0 0 90px rgba(239,188,105,.08), inset 0 0 70px rgba(239,188,105,.05); }
.download-glow::before, .download-glow::after { content: ""; position: absolute; inset: 13%; border: 1px solid rgba(239,188,105,.1); border-radius: 50%; }
.download-glow::after { inset: 28%; }
.download-heading { position: relative; z-index: 1; }
.download-heading > img { display: block; width: 155px; height: 120px; margin: -28px auto -20px; object-fit: contain; filter: drop-shadow(0 10px 22px #000); }
.download-heading h1 { margin: 8px 0 13px; color: var(--ivory); font: 700 clamp(48px, 6vw, 72px)/1 var(--display); text-transform: uppercase; letter-spacing: .03em; }
.download-heading > p:last-child { max-width: 580px; margin: auto; color: #bea88d; font-size: 13px; line-height: 1.8; }
.download-content { position: relative; z-index: 2; padding: 76px 0; border-top: 1px solid var(--line); background: linear-gradient(180deg, #0b0402, #070301); }
.download-layout { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr); gap: 24px; align-items: stretch; }
.client-card { position: relative; padding: 42px; border: 1px solid rgba(239,188,105,.32); background: linear-gradient(135deg, rgba(43,15,7,.82), rgba(10,4,2,.96)); box-shadow: 0 24px 70px rgba(0,0,0,.28); }
.client-card::before { content: ""; position: absolute; left: -1px; top: -1px; width: 54px; height: 54px; border-left: 2px solid var(--gold); border-top: 2px solid var(--gold); }
.client-icon { display: grid; place-items: center; width: 58px; height: 58px; margin-bottom: 27px; color: var(--gold-bright); border: 1px solid var(--gold-dark); background: rgba(239,188,105,.07); }
.client-icon svg { width: 26px; fill: currentColor; }
.client-copy > span { color: var(--gold); font: 600 10px/1 var(--body); letter-spacing: .16em; }
.client-copy h2 { margin: 10px 0 12px; font: 700 35px/1.1 var(--display); text-transform: uppercase; letter-spacing: .025em; }
.client-copy p { max-width: 550px; margin: 0; color: #a7927c; font-size: 12px; line-height: 1.75; }
.client-meta { display: grid; grid-template-columns: repeat(3, 1fr); margin: 31px 0 28px; border-block: 1px solid rgba(239,188,105,.14); }
.client-meta div { padding: 17px 12px 17px 0; }
.client-meta div + div { padding-left: 18px; border-left: 1px solid rgba(239,188,105,.14); }
.client-meta dt { color: #796653; font-size: 8px; text-transform: uppercase; letter-spacing: .13em; }
.client-meta dd { margin: 5px 0 0; color: #d9c5a9; font-size: 11px; }
.btn-download { width: 100%; min-height: 56px; color: #271305; background: linear-gradient(100deg, #b87832, #f4ce82 52%, #b87832); }
.availability-note { display: flex; align-items: center; justify-content: center; gap: 8px; margin: 14px 0 0; color: #796b5d; font-size: 9px; }
.availability-note i { width: 6px; height: 6px; border-radius: 50%; background: #bb8247; box-shadow: 0 0 8px rgba(239,188,105,.45); }
.download-side { display: grid; gap: 12px; }
.info-card { display: grid; grid-template-columns: auto 1fr; gap: 19px; align-items: start; padding: 28px; border: 1px solid rgba(239,188,105,.14); background: rgba(18,7,3,.72); transition: border-color .2s, transform .2s; }
.info-card:hover { transform: translateX(4px); border-color: rgba(239,188,105,.4); }
.info-index { display: grid; place-items: center; width: 38px; height: 38px; color: var(--gold); border: 1px solid rgba(239,188,105,.3); font: 600 13px/1 var(--display); }
.info-card h2 { margin: 1px 0 7px; font: 600 20px/1.1 var(--display); text-transform: uppercase; letter-spacing: .025em; }
.info-card p { margin: 0; color: #8f7b68; font-size: 10px; line-height: 1.65; }
.requirements { padding: 80px 0 90px; background: #040201; }
.section-heading { margin-bottom: 34px; }
.requirements .section-heading .eyebrow { margin-bottom: 12px; font-family: Inter, Arial, sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .28em; }
.section-heading h2 { margin: 0; color: #fff2da; font: 700 42px/1.05 var(--display); text-transform: uppercase; letter-spacing: .015em; }
.requirements-table { border: 1px solid rgba(239,188,105,.22); background: rgba(13,6,3,.38); }
.requirement-row { display: grid; grid-template-columns: 1fr 1.25fr 1.25fr; min-height: 66px; align-items: center; border-bottom: 1px solid rgba(239,188,105,.12); }
.requirement-row:last-child { border-bottom: 0; }
.requirement-row > * { height: 100%; display: flex; align-items: center; padding: 0 22px; border-right: 1px solid rgba(239,188,105,.1); }
.requirement-row > *:last-child { border-right: 0; }
.requirement-row strong { color: #f0ddc2; font-family: Inter, Arial, sans-serif; font-size: 13px; font-weight: 600; letter-spacing: -.01em; }
.requirement-row span { color: #bca58d; font-family: Inter, Arial, sans-serif; font-size: 12px; font-weight: 500; line-height: 1.45; }
.requirement-head { min-height: 48px; background: rgba(239,188,105,.075); }
.requirement-head span { color: #efbc69; font-family: Inter, Arial, sans-serif; font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .16em; }
.support-callout { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 36px; padding: 30px 34px; border: 1px solid var(--line); background: linear-gradient(90deg, rgba(70,24,10,.55), rgba(20,7,3,.75)); }
.support-callout > div > span { color: var(--gold); font-size: 8px; font-weight: 700; letter-spacing: .15em; }
.support-callout h2 { margin: 7px 0 0; font: 600 23px/1.2 var(--display); text-transform: uppercase; }
.btn-outline { min-width: 175px; padding: 0 19px; color: var(--gold-bright); border: 1px solid var(--gold-dark); background: rgba(4,2,1,.4); }

/* Kayıt ve üye sayfaları */
.member-page { background: #050201; }
.member-hero { position: relative; min-height: 440px; display: grid; place-items: center; overflow: hidden; padding: 122px 0 64px; text-align: center; border-bottom: 1px solid var(--line); background: radial-gradient(circle at 50% 36%, rgba(126,55,21,.42), transparent 37%), linear-gradient(180deg, #040201, #160804 75%, #080301); }
.member-hero::before { content: ""; position: absolute; left: 50%; bottom: -310px; width: 700px; aspect-ratio: 1; transform: translateX(-50%); border: 1px solid rgba(239,188,105,.12); border-radius: 50%; box-shadow: inset 0 0 70px rgba(239,188,105,.035); }
.member-hero-glow { position: absolute; inset: 0; opacity: .14; background: repeating-linear-gradient(90deg, transparent 0 109px, rgba(239,188,105,.12) 110px); mask-image: radial-gradient(circle, #000, transparent 68%); }
.member-heading { position: relative; z-index: 1; }
.member-heading > img { width: 160px; height: 125px; margin: -29px auto -25px; object-fit: contain; filter: drop-shadow(0 9px 20px #000); }
.member-heading h1 { margin: 10px 0 9px; color: var(--ivory); font: 700 clamp(44px, 5vw, 66px)/1 var(--display); text-transform: uppercase; letter-spacing: .03em; }
.member-heading > p:last-child { margin: 0; color: #b59b7e; font: 500 14px/1.6 var(--body); }
.member-content { padding: 70px 0 86px; background: linear-gradient(180deg, #090301, #040201); }
.register-card { width: min(760px, 100%); margin: auto; padding: 38px 42px 34px; border: 1px solid rgba(239,188,105,.28); background: linear-gradient(145deg, rgba(37,13,7,.88), rgba(7,3,1,.96)); box-shadow: 0 30px 90px rgba(0,0,0,.4); }
.form-section-heading { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 17px; margin-bottom: 28px; padding-bottom: 22px; border-bottom: 1px solid rgba(239,188,105,.16); }
.form-section-heading > span { display: grid; place-items: center; width: 43px; height: 43px; color: var(--gold); border: 1px solid var(--gold-dark); font: 700 13px/1 var(--display); }
.form-section-heading h2 { margin: 0; font: 700 27px/1.1 var(--display); text-transform: uppercase; }
.form-section-heading p { margin: 4px 0 0; color: #8f7860; font: 500 11px/1.5 Inter, Arial, sans-serif; }
.register-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3px 18px; }
.register-span-2 { grid-column: span 2; }
.register-card .field { margin-bottom: 15px; }
.register-card .input-wrap input { height: 48px; font-family: Inter, Arial, sans-serif; font-size: 12px; }
.select-wrap { position: relative; }
.select-wrap select { width: 100%; height: 48px; appearance: none; padding: 0 44px 0 15px; color: #d7c3aa; border: 1px solid rgba(239,188,105,.28); outline: 0; background: rgba(0,0,0,.24); font: 500 12px/1 Inter, Arial, sans-serif; }
.select-wrap select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(239,188,105,.08); }
.select-wrap svg { position: absolute; right: 16px; top: 50%; width: 14px; transform: translateY(-50%); fill: none; stroke: var(--gold); stroke-width: 1.7; pointer-events: none; }
.agreement-check { display: flex; align-items: flex-start; gap: 11px; margin: 10px 0 22px; color: #a99176; font: 500 11px/1.55 Inter, Arial, sans-serif; cursor: pointer; }
.agreement-check input { position: absolute; opacity: 0; }
.agreement-check > span:first-of-type { flex: 0 0 auto; display: grid; place-items: center; width: 17px; height: 17px; margin-top: 1px; border: 1px solid #80684f; }
.agreement-check input:checked + span::after { content: ""; width: 9px; height: 9px; background: var(--gold); }
.agreement-check input:focus-visible + span { outline: 2px solid var(--gold); outline-offset: 2px; }
.agreement-check a { color: var(--gold-bright); text-decoration: underline; text-underline-offset: 3px; }
.register-submit { width: 100%; min-height: 55px; }
.form-switch { margin: 17px 0 0; text-align: center; color: #927a63; font: 500 12px/1.5 var(--body); }
.form-switch a { color: var(--gold-bright); font-weight: 700; }

/* Oyuncu kontrol paneli */
.account-header { position: absolute; }
.account-logout { padding: 10px 14px; color: #e0c8a9; border: 1px solid var(--line); font: 700 11px/1 var(--display); letter-spacing: .08em; text-transform: uppercase; }
.dashboard-main { min-height: 100vh; }
.dashboard-welcome { padding: 139px 0 46px; border-bottom: 1px solid var(--line); background: radial-gradient(circle at 73% 25%, rgba(113,43,17,.3), transparent 28%), linear-gradient(180deg, #080301, #160804); }
.welcome-inner { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; }
.welcome-inner .eyebrow { margin: 0 0 12px; }
.welcome-inner h1 { margin: 0; font: 700 clamp(36px, 4vw, 56px)/1 var(--display); }
.welcome-inner h1 span { color: var(--gold-bright); }
.welcome-inner > div > p:last-child { margin: 11px 0 0; color: #9e876e; font: 500 12px/1.6 Inter, Arial, sans-serif; }
.account-status { display: grid; grid-template-columns: auto auto; gap: 3px 9px; align-items: center; padding: 14px 19px; border: 1px solid var(--line); background: rgba(5,2,1,.55); }
.account-status i { grid-row: span 2; width: 8px; height: 8px; border-radius: 50%; background: var(--status); box-shadow: 0 0 10px var(--status); }
.account-status span { color: #806b55; font: 600 8px/1 Inter, Arial, sans-serif; text-transform: uppercase; letter-spacing: .12em; }
.account-status strong { color: #e5d1b6; font: 700 13px/1 var(--display); }
.dashboard-content { padding: 42px 0 78px; background: #050201; }
.dashboard-layout { display: grid; grid-template-columns: 250px minmax(0,1fr); gap: 25px; align-items: start; }
.dashboard-sidebar { position: sticky; top: 20px; display: grid; gap: 14px; }
.profile-card { padding: 27px 22px 22px; text-align: center; border: 1px solid rgba(239,188,105,.2); background: linear-gradient(145deg, rgba(37,13,7,.78), rgba(8,3,1,.94)); }
.profile-emblem { display: grid; place-items: center; width: 66px; height: 66px; margin: 0 auto 13px; color: var(--gold-bright); border: 1px solid var(--gold-dark); background: #180a05; font: 700 20px/1 var(--display); }
.profile-card > strong { display: block; color: #f1dfc7; font: 700 21px/1.1 var(--display); }
.profile-card > span { display: block; margin-top: 4px; color: #846d58; font: 500 10px/1 Inter, Arial, sans-serif; }
.profile-card dl { margin: 24px 0 0; text-align: left; }
.profile-card dl div { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 11px 0; border-top: 1px solid rgba(239,188,105,.1); }
.profile-card dt { color: #7e6752; font: 500 9px/1.2 Inter, Arial, sans-serif; }
.profile-card dd { margin: 0; color: #d8c1a3; font: 600 10px/1.2 Inter, Arial, sans-serif; }
.panel-nav { display: grid; border: 1px solid rgba(239,188,105,.16); background: rgba(13,5,2,.8); }
.panel-nav a { display: flex; align-items: center; gap: 12px; min-height: 47px; padding: 0 15px; color: #9b8269; border-bottom: 1px solid rgba(239,188,105,.08); font: 600 11px/1 var(--display); }
.panel-nav a:last-child { border-bottom: 0; }
.panel-nav a span { color: #6d523a; font-size: 9px; }
.panel-nav a:hover, .panel-nav a.is-active { color: var(--gold-bright); background: rgba(239,188,105,.06); }
.dashboard-body { display: grid; gap: 20px; }
.dashboard-section { padding: 27px 29px; border: 1px solid rgba(239,188,105,.17); background: linear-gradient(145deg, rgba(25,9,4,.72), rgba(7,3,1,.9)); }
.dashboard-section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 22px; }
.dashboard-section-head > div > span, .support-box > span { color: var(--gold); font: 700 8px/1 Inter, Arial, sans-serif; letter-spacing: .16em; }
.dashboard-section-head h2 { margin: 6px 0 0; font: 700 25px/1 var(--display); text-transform: uppercase; }
.dashboard-section-head > a { color: #9b8063; font: 600 10px/1 Inter, Arial, sans-serif; }
.section-count { color: var(--gold); font: 700 13px/1 Inter, Arial, sans-serif; }
.account-info-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid rgba(239,188,105,.1); }
.account-info-grid > div { min-height: 72px; display: flex; flex-direction: column; justify-content: center; gap: 7px; padding: 0 16px; border-right: 1px solid rgba(239,188,105,.1); border-bottom: 1px solid rgba(239,188,105,.1); }
.account-info-grid > div:nth-child(3n) { border-right: 0; }
.account-info-grid > div:nth-last-child(-n+3) { border-bottom: 0; }
.account-info-grid span { color: #7f6954; font: 600 8px/1 Inter, Arial, sans-serif; text-transform: uppercase; letter-spacing: .1em; }
.account-info-grid strong { color: #d9c3a7; font: 600 11px/1.2 Inter, Arial, sans-serif; }
.status-good { color: #d8aa61 !important; }
.character-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.character-card { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 15px; padding: 17px; border: 1px solid rgba(239,188,105,.13); background: rgba(0,0,0,.17); }
.character-avatar { display: grid; place-items: center; width: 48px; height: 48px; color: #f1d8b4; border: 1px solid #885334; background: #351207; font: 700 14px/1 var(--display); }
.character-avatar.is-alt { border-color: #815d37; background: #28170b; }
.character-card div:nth-child(2) > span { color: var(--gold); font: 600 8px/1 Inter, Arial, sans-serif; text-transform: uppercase; }
.character-card h3 { margin: 4px 0 2px; font: 700 17px/1 var(--display); }
.character-card p { margin: 0; color: #7f6954; font: 500 9px/1.2 Inter, Arial, sans-serif; }
.character-card > strong { color: var(--gold-bright); font: 700 15px/1 var(--display); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.service-grid a { min-height: 98px; display: flex; flex-direction: column; justify-content: center; padding: 15px 17px; border: 1px solid rgba(239,188,105,.13); background: rgba(0,0,0,.16); transition: border-color .2s, transform .2s; }
.service-grid a:hover { transform: translateY(-2px); border-color: rgba(239,188,105,.42); }
.service-grid a > span { color: #735337; font: 700 8px/1 Inter, Arial, sans-serif; }
.service-grid strong { margin-top: 10px; color: #e1cab0; font: 700 15px/1 var(--display); }
.service-grid small { margin-top: 5px; color: #765f4b; font: 500 9px/1.3 Inter, Arial, sans-serif; }
.activity-support-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 28px; }
.activity-list { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; }
.activity-list li { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-top: 1px solid rgba(239,188,105,.09); }
.activity-list i { width: 7px; height: 7px; border-radius: 50%; background: var(--status); }
.activity-list strong { display: block; color: #ccb497; font: 600 10px/1.2 Inter, Arial, sans-serif; }
.activity-list span { display: block; margin-top: 4px; color: #6f5a47; font: 500 8px/1 Inter, Arial, sans-serif; }
.support-box { padding: 23px; border: 1px solid rgba(239,188,105,.18); background: rgba(67,23,9,.34); }
.support-box h2 { margin: 9px 0 8px; font: 700 23px/1 var(--display); text-transform: uppercase; }
.support-box p { margin: 0 0 18px; color: #927961; font: 500 10px/1.55 Inter, Arial, sans-serif; }
.support-box .btn { width: 100%; min-width: 0; min-height: 43px; font-size: 10px; }

/* MSP yapısına uyarlanmış oyuncu kontrol paneli */
.account-page { background: #050201; }
.account-page .account-header { position: absolute; background: linear-gradient(180deg, rgba(7,3,1,.96), rgba(12,5,2,.9)); }
.account-page .header-inner { gap: 20px; }
.account-page .main-nav { gap: 9px; margin-inline: auto; }
.account-page .main-nav a { height: 44px; padding: 0 15px; color: #bca384; border-bottom: 1px solid transparent; background: transparent; font-size: 9px; }
.account-page .main-nav a::after { display: none; }
.account-page .main-nav a:hover { color: #ffe1a3; border-bottom-color: rgba(239,188,105,.72); background: linear-gradient(180deg, transparent, rgba(239,188,105,.045)); }
.account-control-link { flex: 0 0 auto; display: grid; place-items: center; min-height: 43px; padding: 0 22px; color: #211104; background: linear-gradient(105deg, #bc843c, #f2d78f 55%, #bd873f); clip-path: polygon(8px 0,100% 0,100% calc(100% - 8px),calc(100% - 8px) 100%,0 100%,0 8px); box-shadow: 0 0 20px rgba(239,188,105,.12); font: 700 9px/1 var(--display); text-transform: uppercase; letter-spacing: .13em; }
.panel-main { min-height: 100vh; background: #050201; }
.panel-stage { position: relative; min-height: 1120px; overflow: hidden; padding: 115px 0 95px; border-bottom: 1px solid var(--line); background: radial-gradient(ellipse at 50% 12%, rgba(111,54,22,.58), transparent 33%), radial-gradient(ellipse at 50% 48%, rgba(75,34,15,.24), transparent 46%), linear-gradient(180deg, #160a05 0, #0a0402 54%, #050201 100%); }
.panel-stage::before { content: ""; position: absolute; inset: 0; opacity: .2; background: repeating-linear-gradient(90deg, transparent 0 119px, rgba(239,188,105,.08) 120px), linear-gradient(115deg, transparent 28%, rgba(239,188,105,.05) 28.2%, transparent 28.4%, transparent 70%, rgba(239,188,105,.04) 70.2%, transparent 70.4%); mask-image: linear-gradient(#000, transparent 72%); }
.panel-stage::after { content: ""; position: absolute; left: 50%; top: 92px; width: 940px; height: 640px; transform: translateX(-50%); opacity: .26; border: 1px solid rgba(239,188,105,.18); border-radius: 50%; box-shadow: inset 0 0 90px rgba(239,188,105,.04), 0 0 90px rgba(239,188,105,.03); }
.panel-guardian { position: absolute; z-index: 1; top: 112px; bottom: 0; width: min(30vw, 430px); opacity: .3; pointer-events: none; background: linear-gradient(150deg, rgba(194,109,54,.34), rgba(35,10,3,.02) 60%); clip-path: polygon(28% 0, 67% 4%, 88% 18%, 72% 31%, 91% 48%, 68% 61%, 78% 83%, 52% 100%, 12% 91%, 25% 69%, 0 52%, 17% 34%, 5% 17%); filter: drop-shadow(0 0 28px rgba(0,0,0,.75)); }
.panel-guardian::before { content: ""; position: absolute; inset: 12% 16% 24%; opacity: .55; background: linear-gradient(165deg, #7b3a1b, #180702 55%, #050201); clip-path: polygon(48% 0, 70% 16%, 61% 34%, 84% 54%, 63% 100%, 26% 82%, 7% 45%, 30% 23%); }
.panel-guardian-left { left: -95px; }
.panel-guardian-right { right: -95px; transform: scaleX(-1); }
.panel-shell { position: relative; z-index: 2; width: min(980px, calc(100% - 40px)); }
.panel-online { width: max-content; display: flex; align-items: center; gap: 9px; margin: 0 auto 37px; padding: 9px 17px; color: #cdb38e; border: 1px solid rgba(239,188,105,.38); border-radius: 50px; background: rgba(8,3,1,.72); font: 600 9px/1 Inter, Arial, sans-serif; letter-spacing: .08em; text-transform: uppercase; }
.panel-online i { width: 8px; height: 8px; border-radius: 50%; background: var(--status); box-shadow: 0 0 10px var(--status); }
.panel-online strong { color: #ffe0a3; font-size: 11px; }
.panel-online span { color: #8f785f; }
.panel-title-row { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 22px; margin-bottom: 21px; }
.panel-title-row > span { height: 1px; background: linear-gradient(90deg, transparent, rgba(239,188,105,.52)); }
.panel-title-row > span:last-child { transform: scaleX(-1); }
.panel-title-row h1 { margin: 0; color: #f5d899; font: 700 clamp(27px, 3.4vw, 39px)/1 var(--display); text-align: center; text-transform: uppercase; letter-spacing: .16em; text-shadow: 0 3px 18px rgba(0,0,0,.85); }
.panel-account-card { padding: 27px 29px; border: 1px solid rgba(239,188,105,.32); background: linear-gradient(135deg, rgba(28,9,4,.95), rgba(10,4,2,.94)); box-shadow: 0 20px 70px rgba(0,0,0,.42); }
.panel-account-table { width: 100%; border-collapse: collapse; font: 500 12px/1.45 Inter, Arial, sans-serif; }
.panel-account-table tr { border-bottom: 1px solid rgba(239,188,105,.11); }
.panel-account-table tr:last-child { border-bottom: 0; }
.panel-account-table th, .panel-account-table td { height: 45px; padding: 8px 16px; }
.panel-account-table th { width: 220px; color: #b99a73; background: rgba(0,0,0,.16); font: 600 11px/1.35 var(--display); text-align: right; letter-spacing: .025em; }
.panel-account-table td { color: #e0cfb7; background: rgba(255,255,255,.012); }
.panel-active { color: #e8bd70; }
.panel-wide-link { min-height: 47px; display: grid; place-items: center; margin-top: 6px; color: #ebc77c; border: 1px solid rgba(239,188,105,.36); background: linear-gradient(90deg, rgba(49,22,8,.76), rgba(19,8,3,.9), rgba(49,22,8,.76)); font: 700 10px/1 var(--display); text-transform: uppercase; letter-spacing: .16em; transition: border-color .2s, color .2s, background .2s; }
.panel-wide-link:hover { color: #fff0c7; border-color: #d6a551; background: linear-gradient(90deg, rgba(66,29,10,.85), rgba(30,12,4,.95), rgba(66,29,10,.85)); }
.panel-action-group { margin-top: 24px; text-align: center; }
.panel-action-note { width: min(720px, 100%); margin: 0 auto 17px; padding: 14px 20px; color: #aa9275; border-left: 2px solid var(--gold); border-right: 1px solid rgba(239,188,105,.12); background: rgba(239,188,105,.04); font: 500 10px/1.65 Inter, Arial, sans-serif; }
.panel-button-row { display: flex; align-items: stretch; justify-content: center; flex-wrap: wrap; gap: 10px; }
.panel-action-button { min-width: 146px; min-height: 46px; display: grid; place-items: center; padding: 0 20px; color: #e8c77e; border: 1px solid rgba(239,188,105,.42); background: linear-gradient(145deg, rgba(43,19,7,.85), rgba(13,5,2,.94)); box-shadow: inset 0 0 18px rgba(239,188,105,.025); font: 700 10px/1.2 var(--display); text-transform: uppercase; letter-spacing: .12em; transition: transform .2s, color .2s, border-color .2s, background .2s; }
.panel-action-button:hover { transform: translateY(-2px); color: #fff1c8; border-color: #e6b864; background: linear-gradient(145deg, rgba(65,30,11,.92), rgba(19,7,3,.96)); }
.panel-action-button-wide { min-width: 210px; }
.panel-security-actions { margin-top: 4px; }
.panel-tool-actions { margin-top: 12px; }
.panel-logout-row { margin-top: 18px; }
.panel-logout-button { min-width: 155px; color: #e9d2ae; border-color: rgba(239,188,105,.28); background: rgba(8,3,1,.82); }

/* Truva'ya özgü alternatif panel düzeni */
.truva-panel-heading { position: relative; margin: -27px auto 31px; text-align: center; }
.truva-panel-heading img { display: block; width: 142px; height: 102px; margin: 0 auto -15px; object-fit: contain; filter: drop-shadow(0 9px 20px #000); }
.truva-panel-heading p { margin: 0 0 9px; color: var(--gold); font: 700 9px/1 Inter, Arial, sans-serif; letter-spacing: .28em; }
.truva-panel-heading h1 { margin: 0; color: #fff0d2; font: 700 clamp(42px, 5vw, 64px)/.95 var(--display); text-transform: uppercase; letter-spacing: .035em; }
.truva-panel-heading > span { display: block; max-width: 560px; margin: 13px auto 0; color: #a78f73; font: 500 11px/1.65 Inter, Arial, sans-serif; }
.truva-account-overview { display: grid; grid-template-columns: 260px minmax(0,1fr); border: 1px solid rgba(239,188,105,.3); background: linear-gradient(145deg, rgba(31,11,5,.94), rgba(8,3,1,.96)); box-shadow: 0 25px 80px rgba(0,0,0,.38); }
.truva-account-identity { position: relative; padding: 31px 25px 26px; text-align: center; border-right: 1px solid rgba(239,188,105,.17); background: radial-gradient(circle at 50% 0, rgba(142,65,25,.22), transparent 45%), rgba(0,0,0,.15); }
.truva-player-seal { display: grid; place-items: center; width: 72px; height: 72px; margin: 0 auto 17px; color: #f8daa0; border: 1px solid #a36f36; background: linear-gradient(145deg, #351207, #100603); box-shadow: inset 0 0 0 5px rgba(0,0,0,.2), 0 0 22px rgba(239,188,105,.07); font: 700 22px/1 var(--display); transform: rotate(45deg); }
.truva-player-seal span { transform: rotate(-45deg); }
.truva-account-identity > span { color: #917253; font: 700 8px/1 Inter, Arial, sans-serif; letter-spacing: .16em; }
.truva-account-identity h2 { margin: 7px 0 2px; color: #f1ddc2; font: 700 24px/1 var(--display); }
.truva-account-identity > p { margin: 0; color: #806a55; font: 500 9px/1.4 Inter, Arial, sans-serif; }
.truva-account-state { width: max-content; display: flex; align-items: center; gap: 8px; margin: 18px auto 0; padding: 8px 12px; color: #d7b77e; border: 1px solid rgba(239,188,105,.2); background: rgba(239,188,105,.035); font: 600 9px/1 Inter, Arial, sans-serif; }
.truva-account-state i { width: 7px; height: 7px; border-radius: 50%; background: var(--status); box-shadow: 0 0 8px var(--status); }
.truva-account-identity dl { margin: 22px 0 0; text-align: left; }
.truva-account-identity dl div { display: flex; justify-content: space-between; gap: 12px; padding: 11px 0; border-top: 1px solid rgba(239,188,105,.1); }
.truva-account-identity dt { color: #76604c; font: 500 9px/1.2 Inter, Arial, sans-serif; }
.truva-account-identity dd { margin: 0; color: #d7bd96; font: 650 10px/1.2 Inter, Arial, sans-serif; }
.truva-account-details { padding: 30px 31px 26px; }
.truva-section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 20px; }
.truva-section-heading span, .truva-command-card > span, .truva-security-copy > span { color: var(--gold); font: 700 8px/1 Inter, Arial, sans-serif; letter-spacing: .17em; }
.truva-section-heading h2 { margin: 7px 0 0; color: #f3dfc5; font: 700 27px/1 var(--display); text-transform: uppercase; }
.truva-section-heading > strong { padding: 7px 10px; color: #dbb873; border: 1px solid rgba(239,188,105,.18); font: 650 8px/1 Inter, Arial, sans-serif; text-transform: uppercase; letter-spacing: .1em; }
.truva-detail-grid { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid rgba(239,188,105,.1); }
.truva-detail-grid > div { min-height: 67px; display: flex; flex-direction: column; justify-content: center; gap: 7px; padding: 13px 16px; border-right: 1px solid rgba(239,188,105,.1); border-bottom: 1px solid rgba(239,188,105,.1); }
.truva-detail-grid > div:nth-child(2n) { border-right: 0; }
.truva-detail-grid > div:nth-last-child(-n+2) { border-bottom: 0; }
.truva-detail-grid span { color: #745e4a; font: 600 8px/1 Inter, Arial, sans-serif; text-transform: uppercase; letter-spacing: .09em; }
.truva-detail-grid strong { color: #d9c4a8; font: 600 10px/1.3 Inter, Arial, sans-serif; }
.truva-contract-link { display: flex; align-items: center; justify-content: space-between; margin-top: 13px; padding: 11px 14px; color: #cda86e; border-left: 2px solid var(--gold); background: rgba(239,188,105,.035); font: 600 9px/1 Inter, Arial, sans-serif; }
.truva-contract-link:hover { color: #ffe4ad; background: rgba(239,188,105,.07); }
.truva-contract-link span { font-size: 15px; }
.truva-command-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 20px; }
.truva-command-card { position: relative; min-height: 270px; padding: 28px 29px; overflow: hidden; border: 1px solid rgba(239,188,105,.18); background: linear-gradient(135deg, rgba(28,10,4,.82), rgba(8,3,1,.94)); }
.truva-command-card::after { content: ""; position: absolute; right: -70px; top: -70px; width: 180px; height: 180px; border: 1px solid rgba(239,188,105,.08); transform: rotate(45deg); }
.truva-command-icon { position: relative; z-index: 1; display: grid; place-items: center; width: 46px; height: 46px; margin-bottom: 18px; color: #efbc69; border: 1px solid rgba(239,188,105,.42); background: linear-gradient(145deg, rgba(239,188,105,.1), rgba(58,20,7,.2)); box-shadow: inset 0 0 18px rgba(239,188,105,.035), 0 0 20px rgba(239,188,105,.025); }
.truva-command-icon::before, .truva-command-icon::after { content: ""; position: absolute; width: 7px; height: 7px; pointer-events: none; }
.truva-command-icon::before { left: -1px; top: -1px; border-left: 1px solid #f4c875; border-top: 1px solid #f4c875; }
.truva-command-icon::after { right: -1px; bottom: -1px; border-right: 1px solid #f4c875; border-bottom: 1px solid #f4c875; }
.truva-gold-wallet { position: relative; width: 27px; height: 18px; border: 1.5px solid #efbc69; border-radius: 2px; background: linear-gradient(145deg, rgba(246,211,141,.18), rgba(98,42,12,.12)); box-shadow: inset 0 0 8px rgba(239,188,105,.08); filter: drop-shadow(0 2px 5px rgba(239,188,105,.18)); }
.truva-gold-wallet::before { content: ""; position: absolute; left: 3px; top: -5px; width: 18px; height: 7px; border: 1px solid rgba(239,188,105,.72); border-radius: 2px 2px 0 0; background: rgba(47,17,5,.85); transform: skewX(-12deg); }
.truva-gold-wallet::after { content: ""; position: absolute; right: -4px; top: 5px; width: 12px; height: 8px; border: 1px solid #f4c875; border-radius: 2px; background: #351306; }
.truva-gold-wallet i { position: absolute; z-index: 1; right: 0; top: 8px; width: 2px; height: 2px; border-radius: 50%; background: #f9dc9e; box-shadow: 0 0 4px rgba(249,220,158,.45); }
.truva-gold-headset { position: relative; width: 24px; height: 22px; margin-top: 2px; border: 1.5px solid #efbc69; border-bottom: 0; border-radius: 14px 14px 0 0; filter: drop-shadow(0 2px 5px rgba(239,188,105,.18)); }
.truva-gold-headset::before, .truva-gold-headset::after { content: ""; position: absolute; top: 10px; width: 5px; height: 9px; border: 1px solid #efbc69; background: linear-gradient(180deg, rgba(246,211,141,.2), rgba(62,22,7,.85)); }
.truva-gold-headset::before { left: -4px; border-radius: 3px 1px 1px 4px; }
.truva-gold-headset::after { right: -4px; border-radius: 1px 3px 4px 1px; }
.truva-gold-headset i { position: absolute; right: -1px; bottom: -3px; width: 9px; height: 5px; border: solid #f4c875; border-width: 0 0 1.5px 1.5px; border-radius: 0 0 0 5px; }
.truva-gold-headset i::after { content: ""; position: absolute; left: -2px; bottom: -2px; width: 3px; height: 3px; border-radius: 50%; background: #f8d58e; }
.truva-command-card h2 { position: relative; z-index: 1; margin: 8px 0 7px; color: #f0d8b8; font: 700 25px/1 var(--display); text-transform: uppercase; }
.truva-command-card > p { position: relative; z-index: 1; margin: 0; color: #88715b; font: 500 10px/1.5 Inter, Arial, sans-serif; }
.truva-command-links { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; margin-top: 22px; }
.truva-command-links a { min-height: 49px; display: flex; align-items: center; justify-content: space-between; gap: 7px; padding: 0 11px; color: #cbb08b; border: 1px solid rgba(239,188,105,.15); background: rgba(0,0,0,.16); font: 650 9px/1.2 Inter, Arial, sans-serif; }
.truva-command-links a span { color: var(--gold); font-size: 13px; }
.truva-command-links a:hover { color: #ffe2aa; border-color: rgba(239,188,105,.5); background: rgba(239,188,105,.055); }
.truva-security-hall { display: grid; grid-template-columns: 250px 1fr; gap: 28px; align-items: center; margin-top: 16px; padding: 28px 29px; border: 1px solid rgba(239,188,105,.2); background: linear-gradient(90deg, rgba(54,20,8,.62), rgba(11,4,2,.94)); }
.truva-security-copy h2 { margin: 8px 0 8px; color: #f1d9b8; font: 700 27px/1 var(--display); text-transform: uppercase; }
.truva-security-copy p { margin: 0; color: #8b745d; font: 500 10px/1.55 Inter, Arial, sans-serif; }
.truva-security-actions { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
.truva-security-actions a { min-height: 71px; display: flex; flex-direction: column; justify-content: center; gap: 9px; padding: 12px; border: 1px solid rgba(239,188,105,.16); background: rgba(0,0,0,.2); }
.truva-security-actions small { color: #6e5036; font: 700 8px/1 Inter, Arial, sans-serif; }
.truva-security-actions strong { color: #d8bea0; font: 700 12px/1.15 var(--display); }
.truva-security-actions a:hover { border-color: rgba(239,188,105,.48); background: rgba(239,188,105,.05); }
.truva-panel-exit { margin-top: 20px; text-align: center; }
.truva-panel-exit a { display: inline-flex; align-items: center; gap: 18px; min-height: 43px; padding: 0 20px; color: #aa8f72; border-bottom: 1px solid rgba(239,188,105,.25); font: 700 9px/1 Inter, Arial, sans-serif; text-transform: uppercase; letter-spacing: .13em; }
.truva-panel-exit a span { color: var(--gold); font-size: 15px; }
.truva-panel-exit a:hover { color: #f5d6a1; border-bottom-color: var(--gold); }

@media (max-width: 1120px) {
  .panel-guardian { opacity: .17; }
  .panel-guardian-left { left: -150px; }
  .panel-guardian-right { right: -150px; }
}

@media (max-width: 980px) {
  .site-header { height: 76px; }
  .header-inner { justify-content: space-between; }
  .brand { min-width: 0; }
  .brand > img { width: 116px; height: 70px; }
  .nav-toggle { display: grid; gap: 5px; place-content: center; width: 43px; height: 43px; margin-left: auto; border: 1px solid var(--line); background: rgba(20,7,3,.86); cursor: pointer; }
  .nav-toggle span:not(.sr-only) { width: 18px; height: 1px; background: var(--gold-bright); transition: transform .2s, opacity .2s; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .main-nav { position: absolute; left: 20px; right: 20px; top: 75px; display: grid; align-items: stretch; max-height: 0; overflow: hidden; background: #130704; border: 0 solid var(--line); opacity: 0; transition: max-height .25s, opacity .2s, border-width .2s; }
  .main-nav.is-open { max-height: 360px; border-width: 1px; opacity: 1; }
  .main-nav a { height: 48px; border-bottom: 1px solid rgba(213,169,91,.1); }
  .main-nav a::after { display: none; }
  .portal-grid { width: min(440px, 100%); }
  .warrior { opacity: .25; }
  .account-logout { display: none; }
  .dashboard-layout { grid-template-columns: 1fr; }
  .dashboard-sidebar { position: static; grid-template-columns: 250px 1fr; }
  .panel-nav { grid-template-columns: 1fr 1fr; }
  .panel-nav a { border-right: 1px solid rgba(239,188,105,.08); }
  .account-page .main-nav a { border: 0; border-bottom: 1px solid rgba(239,188,105,.1); background: transparent; }
  .account-control-link { display: none; }
  .panel-stage { padding-top: 105px; }
}

@media (max-width: 800px) {
  :root { --shell: min(100% - 28px, 620px); }
  .hero { min-height: auto; padding-top: 104px; }
  .hero-heading > p:last-child { margin-bottom: 24px; }
  .portal-grid { grid-template-columns: 1fr; gap: 22px; }
  .portal-intro { text-align: center; order: 2; padding-top: 10px; }
  .portal-intro > p { margin-inline: auto; }
  .feature-list { justify-content: center; flex-wrap: wrap; }
  .login-card { order: 1; width: min(100%, 480px); margin: auto; }
  .sun-disc { top: 120px; width: 460px; }
  .warrior { width: 310px; height: 580px; bottom: 50px; opacity: .16; }
  .warrior-left { left: -150px; }
  .warrior-right { right: -150px; }
  .citadel { width: 650px; }
  .scroll-cue { display: none; }
  .news-inner { grid-template-columns: auto 1fr; padding-block: 18px; }
  .news-inner .text-link { display: none; }
  .news-inner > div { display: grid; gap: 5px; }
  .footer-inner { grid-template-columns: 1fr; justify-items: center; text-align: center; gap: 25px; }
  .footer-main { flex-direction: column; justify-content: center; gap: 8px; }
  .footer-links { justify-content: center; }
  .download-layout { grid-template-columns: 1fr; }
  .download-side { grid-template-columns: repeat(3, 1fr); }
  .info-card { grid-template-columns: 1fr; }
  .support-callout { align-items: flex-start; flex-direction: column; }
  .register-card { padding: 31px 27px 28px; }
  .dashboard-welcome { padding-top: 112px; }
  .welcome-inner { align-items: flex-start; flex-direction: column; }
  .dashboard-sidebar { grid-template-columns: 1fr; }
  .panel-nav { grid-template-columns: 1fr 1fr; }
  .account-info-grid { grid-template-columns: 1fr 1fr; }
  .account-info-grid > div:nth-child(3n) { border-right: 1px solid rgba(239,188,105,.1); }
  .account-info-grid > div:nth-child(2n) { border-right: 0; }
  .account-info-grid > div:nth-last-child(-n+3) { border-bottom: 1px solid rgba(239,188,105,.1); }
  .account-info-grid > div:nth-last-child(-n+2) { border-bottom: 0; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .activity-support-grid { grid-template-columns: 1fr; }
  .panel-stage { min-height: 0; padding-bottom: 68px; }
  .panel-guardian { width: 360px; opacity: .1; }
  .panel-title-row { gap: 12px; }
  .panel-title-row h1 { letter-spacing: .1em; }
  .panel-account-card { padding: 20px; }
}

@media (max-width: 520px) {
  .brand-copy small { display: none; }
  .hero-heading h1 img { width: 330px; height: 230px; margin-block: 0 -35px; }
  .hero-heading > p:last-child { font-size: 12px; }
  .login-card { padding: 21px 18px 19px; }
  .captcha-box { width: min(304px, 100%); }
  .feature-list { gap: 18px; }
  .news-inner { grid-template-columns: 1fr; gap: 10px; }
  .news-label { width: max-content; }
  .footer-inner nav { gap: 16px; }
  .footer-links { gap: 12px 18px; }
  .footer-links a, .footer-links button { font-size: 11px; }
  .legal-modal-head { padding: 18px; }
  .legal-modal-head h2 { font-size: 21px; }
  .legal-modal-body { padding: 19px 18px 24px; }
  .download-hero { min-height: 400px; padding-top: 112px; }
  .download-content, .requirements { padding-block: 52px; }
  .client-card { padding: 30px 22px; }
  .client-meta { grid-template-columns: 1fr; }
  .client-meta div { padding: 13px 0; }
  .client-meta div + div { padding-left: 0; border-left: 0; border-top: 1px solid rgba(239,188,105,.1); }
  .download-side { grid-template-columns: 1fr; }
  .info-card { grid-template-columns: auto 1fr; padding: 23px 20px; }
  .requirements-table { border: 0; }
  .requirement-row { grid-template-columns: 1fr; margin-bottom: 12px; border: 1px solid rgba(239,188,105,.14); }
  .requirement-row > * { min-height: 42px; padding-inline: 15px; border-right: 0; border-bottom: 1px solid rgba(239,188,105,.08); }
  .requirement-row > *:last-child { border-bottom: 0; }
  .requirement-head { display: none; }
  .support-callout { padding: 25px 21px; }
  .member-hero { min-height: 390px; padding-top: 108px; }
  .member-content { padding-block: 45px 58px; }
  .register-card { padding: 25px 18px 23px; }
  .register-grid { grid-template-columns: 1fr; }
  .register-span-2 { grid-column: auto; }
  .form-section-heading { align-items: start; }
  .dashboard-content { padding-block: 25px 50px; }
  .dashboard-section { padding: 23px 18px; }
  .panel-nav { grid-template-columns: 1fr; }
  .account-info-grid, .character-grid, .service-grid { grid-template-columns: 1fr; }
  .account-info-grid > div { border-right: 0 !important; border-bottom: 1px solid rgba(239,188,105,.1) !important; }
  .account-info-grid > div:last-child { border-bottom: 0 !important; }
  .dashboard-section-head { align-items: flex-start; }
  .character-card { grid-template-columns: auto 1fr; }
  .character-card > strong { grid-column: 2; }
  .panel-shell { width: min(620px, calc(100% - 28px)); }
  .panel-online { margin-bottom: 28px; }
  .panel-title-row { grid-template-columns: 1fr; }
  .panel-title-row > span { display: none; }
  .panel-title-row h1 { font-size: 27px; line-height: 1.08; }
  .panel-account-card { padding: 10px 12px; }
  .panel-account-table, .panel-account-table tbody, .panel-account-table tr, .panel-account-table th, .panel-account-table td { display: block; width: 100%; }
  .panel-account-table tr { padding: 10px 6px; }
  .panel-account-table th, .panel-account-table td { height: auto; padding: 3px 6px; text-align: left; background: transparent; }
  .panel-account-table th { color: #8f7456; font-family: Inter, Arial, sans-serif; font-size: 8px; text-transform: uppercase; letter-spacing: .12em; }
  .panel-account-table td { margin-top: 3px; font-size: 11px; }
  .panel-wide-link { padding: 12px 15px; text-align: center; line-height: 1.4; }
  .panel-action-note { padding: 12px 14px; }
  .panel-button-row { display: grid; grid-template-columns: 1fr 1fr; }
  .panel-action-button, .panel-action-button-wide { min-width: 0; padding-inline: 10px; }
  .panel-logout-row { grid-template-columns: minmax(150px, 1fr); }
}

@media (max-width: 900px) {
  .truva-account-overview { grid-template-columns: 1fr; }
  .truva-account-identity { border-right: 0; border-bottom: 1px solid rgba(239,188,105,.17); }
  .truva-account-identity dl { max-width: 420px; margin-inline: auto; }
  .truva-security-hall { grid-template-columns: 1fr; }
  .truva-security-copy { text-align: center; }
}

@media (max-width: 620px) {
  .truva-panel-heading { margin-top: -20px; }
  .truva-panel-heading img { width: 128px; height: 94px; }
  .truva-panel-heading h1 { font-size: 42px; }
  .truva-account-details { padding: 24px 18px 20px; }
  .truva-section-heading { align-items: flex-start; }
  .truva-detail-grid { grid-template-columns: 1fr; }
  .truva-detail-grid > div { border-right: 0; }
  .truva-detail-grid > div:nth-last-child(-n+2) { border-bottom: 1px solid rgba(239,188,105,.1); }
  .truva-detail-grid > div:last-child { border-bottom: 0; }
  .truva-command-grid { grid-template-columns: 1fr; }
  .truva-command-card { min-height: 0; padding: 24px 19px; }
  .truva-command-links { grid-template-columns: 1fr; }
  .truva-security-hall { padding: 24px 19px; }
  .truva-security-actions { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
