@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{
  position:relative;
  z-index:9998;
  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);
}

.topRight{display:flex; align-items:center; gap:10px}
.topAvatar{
  width:34px;
  height:34px;
  border-radius:999px;
  border:1px solid rgba(245,229,175,.16);
  background:rgba(0,0,0,.20);
  overflow:hidden;
  display:grid;
  place-items:center;
  text-decoration:none;
}
.topAvatar img{width:100%; height:100%; object-fit:cover; display:block}
.topAvatarFallback{font-size:12px; font-weight:800; color:rgba(238,241,246,.86)}

.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);
}
.subnavItemRight{margin-left:auto}
.subnavItem[aria-current="page"]{
  border-color:rgba(245,229,175,.40);
  background:rgba(245,229,175,.10);
}


.menu{position:relative}
.menu > summary{list-style:none}
.menu > summary::-webkit-details-marker{display:none}
.menuBtn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  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);
  cursor:pointer;
  user-select:none;
}
.menuBtn::after{
  content:"▾";
  font-size:12px;
  color:rgba(238,241,246,.62);
}
.menuList{
  position:absolute;
  right:0;
  top:calc(100% + 8px);
  min-width:190px;
  border-radius:14px;
  border:1px solid rgba(245,229,175,.16);
  background:rgba(0,0,0,.92);
  box-shadow:0 18px 60px rgba(0,0,0,.55);
  padding:8px;
  z-index:9999;
}
.menuItem{
  display:block;
  width:100%;
  text-decoration:none;
  padding:9px 10px;
  border-radius:12px;
  border:1px solid transparent;
  background:transparent;
  color:rgba(238,241,246,.86);
  font-size:13px;
  text-align:left;
}
.menuItemExt{display:flex; align-items:center; gap:10px}
.menuIcon{width:18px; height:18px; flex:0 0 18px; display:block}
.menuItem:hover{
  border-color:rgba(245,229,175,.16);
  background:rgba(245,229,175,.08);
}
.menuItem[aria-current="page"]{
  border-color:rgba(245,229,175,.32);
  background:rgba(245,229,175,.12);
}
.menuItemBtn{
  cursor:pointer;
  font-family:inherit;
}
.menuAccount{margin-left:auto}
.menuLang .menuBtn{
  font-size:12px;
  padding:7px 10px;
  border:1px solid rgba(245,229,175,.16);
  background:rgba(0,0,0,.20);
}
.menuLang .menuList{
  max-height:220px;
  overflow-y:auto;
  overscroll-behavior:contain;
  scrollbar-width:thin;
  scrollbar-color:rgba(245,229,175,.30) rgba(0,0,0,.20);
}
.menuLang .menuList::-webkit-scrollbar{width:10px}
.menuLang .menuList::-webkit-scrollbar-thumb{background:rgba(245,229,175,.24); border-radius:999px; border:2px solid rgba(0,0,0,.18)}
.menuLang .menuList::-webkit-scrollbar-track{background:rgba(0,0,0,.18); border-radius:999px}


.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}
.tableWrapFit{overflow-x:hidden}
.table{
  width:max-content;
  min-width:100%;
  border-collapse:separate;
  border-spacing:0;
  min-width:520px;
}
.tableFit{
  width:100%;
  min-width:0;
  table-layout:fixed;
}
.tableFit th,.tableFit td{padding:8px 8px}
.tableFit td:first-child a{
  display:block;
  max-width:100%;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.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)}

.msgUser{display:flex; align-items:center; gap:8px; min-width:0}
.msgUserLink{display:inline-flex; align-items:center; gap:10px; color:inherit; text-decoration:none; min-width:0}
.msgUserLink strong{white-space:nowrap; overflow:hidden; text-overflow:ellipsis; max-width:260px}
.msgAvatar,.msgAvatarFallback{width:34px; height:34px; border-radius:50%; flex:0 0 34px}
.msgAvatar{object-fit:cover; display:block}
.msgAvatarFallback{display:inline-flex; align-items:center; justify-content:center; background:rgba(0,0,0,.18); border:1px solid rgba(245,229,175,.16); font-weight:800}
.msgWall{opacity:.85; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; max-width:220px}
.msgWallLink{color:inherit; text-decoration:none}

.composer{border:1px solid rgba(245,229,175,.12); border-radius:14px; background:rgba(0,0,0,.16); overflow:hidden}
.composerSummary{list-style:none; display:flex; align-items:center; gap:10px; padding:12px 12px; cursor:pointer}
.composerSummary::-webkit-details-marker{display:none}
.composerAvatar,.composerAvatarFallback{width:34px; height:34px; border-radius:50%; flex:0 0 34px}
.composerAvatar{object-fit:cover; display:block}
.composerAvatarFallback{display:inline-flex; align-items:center; justify-content:center; background:rgba(0,0,0,.18); border:1px solid rgba(245,229,175,.16); font-weight:800}
.composerPrompt{display:block; width:100%; padding:10px 12px; border-radius:999px; background:rgba(0,0,0,.18); border:1px solid rgba(245,229,175,.14); color:rgba(238,241,246,.82)}
.composerPanel{padding:12px 12px; border-top:1px solid rgba(245,229,175,.12)}

.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}

.fileThumbs{display:flex; flex-wrap:wrap; gap:8px}
.fileThumb{
  width:44px;
  height:44px;
  border-radius:12px;
  border:1px solid rgba(245,229,175,.16);
  background:rgba(0,0,0,.18);
  overflow:hidden;
  display:block;
}
.fileThumb img{width:100%; height:100%; object-fit:cover; display:block}
.fileThumbsLg{gap:10px}
.fileThumbsScroll{
  flex-wrap:nowrap;
  overflow-x:auto;
  overflow-y:hidden;
  max-width:100%;
  min-width:0;
  padding-bottom:10px;
}
.fileThumbsScroll .fileThumb{flex:0 0 auto}
.fileThumbLg{
  width:280px;
  height:280px;
  border-radius:18px;
}
.fileThumbLg img{object-fit:contain; background:rgba(0,0,0,.18)}
@media (max-width: 980px){
  .fileThumbLg{width:220px; height:220px; border-radius:16px}
}
@media (max-width: 640px){
  .fileThumbLg{width:170px; height:170px; border-radius:14px}
}
@media (max-width: 420px){
  .fileThumbLg{width:140px; height:140px; border-radius:14px}
}

.lightbox{
  position:fixed;
  inset:0;
  z-index:9999;
}
.lightbox[hidden]{display:none}
.lightboxBg{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.72);
  backdrop-filter:blur(6px);
}
.lightboxBox{
  position:absolute;
  inset:18px;
  display:grid;
  place-items:center;
  padding:56px 18px 18px;
}
.lightboxImg{
  max-width:min(1700px, calc(100vw - 36px));
  max-height:min(700px, calc(100vh - 90px));
  width:auto;
  height:auto;
  object-fit:contain;
  display:block;
  border-radius:16px;
  border:1px solid rgba(245,229,175,.18);
  background:rgba(0,0,0,.25);
  box-shadow:0 24px 90px rgba(0,0,0,.6);
}
.lightboxClose{
  position:absolute;
  top:0;
  right:0;
  margin:10px;
  width:42px;
  height:42px;
  border-radius:14px;
  border:1px solid rgba(245,229,175,.18);
  background:rgba(0,0,0,.28);
  color:var(--text);
  font-size:24px;
  line-height:1;
  cursor:pointer;
}

.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(6,minmax(0,1fr));
  gap:14px;
  margin-top:14px;
}
@media (max-width: 980px){
  .cmdGrid{grid-template-columns:repeat(4,minmax(0,1fr))}
}
@media (max-width: 640px){
  .cmdGrid{grid-template-columns:repeat(3,minmax(0,1fr))}
}
.cmdCard{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  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:12px 10px;
  color:inherit;
  text-decoration:none;
  overflow:hidden;
}
.cmdIcon{
  width:86px;
  height:86px;
  object-fit:cover;
  border-radius:22px;
  border:1px solid rgba(245,229,175,.18);
  background:rgba(0,0,0,.18);
  display:block;
}
.cmdLabel{
  margin-top:10px;
  font-weight:820;
  letter-spacing:.2px;
}
.cmdMeta{
  margin-top:4px;
  font-size:12px;
  color:rgba(238,241,246,.68);
}
.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}
.rt img{
  max-width:100%;
  height:auto;
  border-radius:14px;
  border:1px solid rgba(245,229,175,.12);
  background:rgba(0,0,0,.18);
  display:block;
  cursor:zoom-in;
}
.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);
}
.avatar{
  width:128px;
  height:128px;
  border-radius:999px;
  border:1px solid rgba(245,229,175,.18);
  background:rgba(0,0,0,.18);
  object-fit:cover;
  display:block;
}

.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}
}
