@charset "utf-8";

:root{
  --bg0:#0b0c10;
  --bg1:#111319;
  --panel:rgba(17,19,25,.82);
  --border:rgba(245,229,175,.18);
  --text:#eef1f6;
  --muted:rgba(238,241,246,.72);
  --gold:#f5e5af;
  --shadow:0 18px 60px rgba(0,0,0,.45);
  --radius:18px;
  --max:1120px;
}

*{box-sizing:border-box}
html{color-scheme:dark}
body{
  margin:0;
  font-family:ui-sans-serif,system-ui,-apple-system,"Segoe UI",Roboto,Arial,"Noto Sans",sans-serif;
  line-height:1.5;
  color:var(--text);
  background:
    radial-gradient(900px 520px at 12% 14%, rgba(245,229,175,.12), transparent 60%),
    radial-gradient(760px 540px at 84% 6%, rgba(217,181,92,.10), transparent 58%),
    radial-gradient(760px 600px at 84% 92%, rgba(55,161,255,.08), transparent 60%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
  min-height:100svh;
}

a{color:inherit}
a:focus-visible,button:focus-visible,input:focus-visible,select:focus-visible,textarea:focus-visible{
  outline:2px solid rgba(245,229,175,.72);
  outline-offset:3px;
  border-radius:10px;
}

.wrap{max-width:var(--max); margin:0 auto; padding:20px 18px 60px}

.top{
  display:flex;
  gap:14px;
  align-items:center;
  justify-content:space-between;
  padding:14px 16px;
  border:1px solid var(--border);
  background:linear-gradient(180deg, rgba(19,22,30,.82), rgba(14,16,22,.74));
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  backdrop-filter:blur(8px);
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  min-width:0;
}

.mark{
  width:34px;
  height:34px;
  display:grid;
  place-items:center;
  border-radius:12px;
  border:1px solid rgba(245,229,175,.22);
  background:radial-gradient(circle at 30% 30%, rgba(245,229,175,.22), rgba(245,229,175,.06) 60%, rgba(0,0,0,0));
  flex:0 0 auto;
}

.brandText{min-width:0}
.brandName{
  font-weight:740;
  letter-spacing:.2px;
  font-size:15px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.brandSub{font-size:12px; color:var(--muted)}

.lang{
  display:flex;
  flex-wrap:wrap;
  justify-content:flex-end;
  gap:8px;
}

.lang a{
  font-size:12px;
  text-decoration:none;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(245,229,175,.16);
  background:rgba(0,0,0,.20);
}
.lang a[aria-current="page"]{
  border-color:rgba(245,229,175,.40);
  background:rgba(245,229,175,.12);
}

.subnav{
  margin-top:12px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  padding:12px 12px;
  border-radius:var(--radius);
  border:1px solid rgba(245,229,175,.14);
  background:rgba(0,0,0,.14);
}
.subnavItem{
  text-decoration:none;
  font-size:13px;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(245,229,175,.12);
  background:rgba(0,0,0,.12);
}
.subnavItem[aria-current="page"]{
  border-color:rgba(245,229,175,.40);
  background:rgba(245,229,175,.10);
}

.main{padding:28px 6px 10px}

.hero{padding:6px 0 10px}
.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:7px 12px;
  border-radius:999px;
  border:1px solid rgba(245,229,175,.18);
  background:rgba(0,0,0,.20);
  color:var(--muted);
  font-size:13px;
}

h1{
  margin:14px 0 8px;
  font-size:clamp(28px,4vw,44px);
  line-height:1.12;
  letter-spacing:.2px;
}
.lead{
  margin:0;
  color:var(--muted);
  font-size:clamp(14px,1.4vw,18px);
  max-width:76ch;
}

.grid{
  margin-top:22px;
  display:grid;
  grid-template-columns:repeat(12,1fr);
  gap:14px;
}
.card{
  grid-column:span 12;
  border-radius:var(--radius);
  border:1px solid var(--border);
  background:linear-gradient(180deg, rgba(17,19,25,.86), rgba(12,14,20,.82));
  box-shadow:var(--shadow);
  padding:18px 18px 16px;
  backdrop-filter:blur(8px);
}
.card h2{margin:0 0 8px; font-size:18px}
.card p{margin:0 0 12px; color:var(--muted)}

.btnRow{display:flex; flex-wrap:wrap; gap:10px}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  text-decoration:none;
  padding:11px 14px;
  border-radius:12px;
  border:1px solid rgba(245,229,175,.22);
  background:linear-gradient(180deg, rgba(245,229,175,.18), rgba(245,229,175,.08));
  color:var(--text);
  font-weight:680;
}
.btnSecondary{
  border-color:rgba(245,229,175,.14);
  background:rgba(0,0,0,.18);
  font-weight:650;
}

.field{
  display:grid;
  gap:6px;
  margin-top:10px;
}
.field span{font-size:12px; color:rgba(238,241,246,.68)}
.field input,.field textarea,.field select{
  width:100%;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid rgba(245,229,175,.14);
  background:rgba(0,0,0,.18);
  color:var(--text);
}
.field select{
  background-color:var(--bg0);
}
.field select option,
.field select optgroup{
  background-color:var(--bg0);
  color:var(--text);
}
.field select option:checked{
  background-color:rgba(245,229,175,.16);
  color:var(--text);
}

.tableWrap{overflow:auto; max-width:100%; max-height:70vh}
.table{
  width:max-content;
  min-width:100%;
  border-collapse:separate;
  border-spacing:0;
  min-width:520px;
}
.table th,.table td{
  padding:10px 10px;
  border-bottom:1px solid rgba(245,229,175,.12);
  text-align:left;
  vertical-align:top;
}
.table th{font-size:12px; color:rgba(238,241,246,.70); font-weight:700}

.msg{
  border:1px solid rgba(245,229,175,.12);
  border-radius:14px;
  padding:12px 12px;
  background:rgba(0,0,0,.16);
  margin-top:10px;
}
.msgHead{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:10px;
}
.msgMeta{font-size:12px; color:rgba(238,241,246,.60)}
.msgBody{margin-top:8px; color:rgba(238,241,246,.86)}

.attGrid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
  margin-top:10px;
}
.att{
  display:block;
  border-radius:14px;
  border:1px solid rgba(245,229,175,.12);
  overflow:hidden;
  background:rgba(0,0,0,.18);
}
.att img{display:block; width:100%; height:auto}

.code{
  margin:0;
  padding:12px 12px;
  border:1px solid rgba(245,229,175,.12);
  border-radius:14px;
  background:rgba(0,0,0,.18);
  overflow:auto;
  max-width:100%;
  color:rgba(238,241,246,.86);
  font-size:12px;
  line-height:1.45;
}
.kvkGrid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
  margin-top:12px;
}
@media (max-width: 740px){
  .kvkGrid{grid-template-columns:1fr}
}
.kvkCard{
  display:block;
  border-radius:18px;
  border:1px solid rgba(245,229,175,.14);
  background:linear-gradient(180deg, rgba(0,0,0,.22), rgba(0,0,0,.12));
  padding:14px 14px;
  color:inherit;
  text-decoration:none;
}
.kvkTop{display:flex; align-items:center; justify-content:space-between; gap:12px}
.kvkCode{font-weight:800; letter-spacing:.4px}
.kvkStatus{font-size:12px; color:rgba(238,241,246,.68)}
.kvkTitle{margin-top:6px; color:rgba(238,241,246,.86)}
.kvkMeta{margin-top:10px; display:flex; gap:12px; flex-wrap:wrap; font-size:12px; color:rgba(238,241,246,.62)}
.cmdGrid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
  margin-top:14px;
}
@media (max-width: 980px){
  .cmdGrid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media (max-width: 640px){
  .cmdGrid{grid-template-columns:1fr}
}
.cmdCard{
  display:block;
  border-radius:18px;
  border:1px solid rgba(245,229,175,.14);
  background:linear-gradient(180deg, rgba(0,0,0,.22), rgba(0,0,0,.12));
  padding:14px 14px;
  color:inherit;
  text-decoration:none;
  overflow:hidden;
}
.cmdTop{display:flex; align-items:flex-start; justify-content:space-between; gap:10px}
.cmdName{font-weight:820; letter-spacing:.2px}
.cmdTitle{margin-top:6px; color:rgba(238,241,246,.78); font-size:13px}
.cmdBadges{display:flex; gap:8px; flex-wrap:wrap; justify-content:flex-end}
.pill{
  display:inline-flex;
  align-items:center;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(245,229,175,.16);
  background:rgba(0,0,0,.18);
  font-size:12px;
  color:rgba(238,241,246,.78);
}
.cmdImg{
  width:100%;
  height:auto;
  margin-top:12px;
  border-radius:14px;
  border:1px solid rgba(245,229,175,.12);
  background:rgba(0,0,0,.18);
  display:block;
}
.rt{color:rgba(238,241,246,.86)}
.rt p{margin:0 0 10px}
.rt h2,.rt h3{margin:14px 0 8px; font-size:16px}
.portrait{
  width:100%;
  max-width:360px;
  height:auto;
  border-radius:16px;
  border:1px solid rgba(245,229,175,.18);
  background:rgba(0,0,0,.18);
}

.footer{
  margin-top:26px;
  color:rgba(238,241,246,.62);
  font-size:12px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
}
.footer a{color:rgba(245,229,175,.86); text-decoration:none}

@media (min-width:820px){
  .wrap{padding:26px 22px 72px}
  .card{padding:20px 20px 18px}
  .grid .card:first-child:nth-last-child(2){grid-column:span 7}
  .grid .card:last-child:nth-child(2){grid-column:span 5}
  .tableWrap{max-height:78vh}
}
