@font-face {
  font-family: "FZCuYuan";
  src: url("/fonts/FZCuYuan.ttf?v=20260713-performance") format("truetype");
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --bg: #071211;
  --bg-deep: #050d0c;
  --bg-panel: #071514;
  --side: #0a1515;
  --panel: #0b1717;
  --panel-soft: #102020;
  --panel-muted: #142524;
  --input: #0d2020;
  --text: #dce8e3;
  --muted: #7d8c8b;
  --line: #1f3c3b;
  --line-bright: #2c6f52;
  --green: #66ff33;
  --green-soft: rgba(102, 255, 51, 0.16);
  --green-mid: #24931f;
  --green-dark: #123d20;
  --gold: #f0b23b;
  --gold-soft: rgba(240, 178, 59, 0.18);
  --red-dim: #5b3839;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  position: relative;
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% -10%, rgba(102, 255, 51, 0.045), transparent 34%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
  color: var(--text);
  font-family:
    "FZCuYuan",
    "Microsoft YaHei",
    "PingFang SC",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle, rgba(102, 255, 51, 0.22) 0 1px, transparent 2px) 8% 22% / 240px 240px,
    radial-gradient(circle, rgba(145, 255, 118, 0.14) 0 1px, transparent 2px) 76% 18% / 310px 310px,
    radial-gradient(circle, rgba(132, 215, 190, 0.14) 0 1px, transparent 2px) 36% 78% / 280px 280px,
    radial-gradient(circle, rgba(102, 255, 51, 0.16) 0 1px, transparent 2px) 92% 62% / 360px 360px;
  opacity: 0.58;
  animation: particle-drift 22s linear infinite;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 620px 420px at 50% 12%, rgba(102, 255, 51, 0.055), transparent 64%),
    radial-gradient(ellipse 420px 320px at 82% 72%, rgba(240, 178, 59, 0.026), transparent 68%),
    linear-gradient(115deg, transparent 0%, rgba(102, 255, 51, 0.035) 32%, transparent 58%),
    linear-gradient(235deg, transparent 6%, rgba(240, 178, 59, 0.03) 42%, transparent 76%);
  opacity: 0.86;
  animation: ambient-pulse 7s ease-in-out infinite alternate;
}

body.access-checking,
body.access-locked {
  overflow: hidden;
}

body.access-checking .access-gate,
body.access-checking .app-frame,
body.access-checking .image-lightbox,
body.access-locked .app-frame,
body.access-locked .image-lightbox {
  display: none;
}

body.access-ready .access-gate {
  display: none;
}

.access-gate {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 100vh;
  min-height: 100dvh;
  place-items: center;
  padding: 24px;
}

.access-card {
  position: relative;
  display: grid;
  width: min(430px, 100%);
  gap: 18px;
  overflow: hidden;
  padding: 26px;
  border: 1px solid rgba(102, 255, 51, 0.38);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(13, 31, 29, 0.94), rgba(6, 17, 16, 0.98)),
    rgba(9, 19, 19, 0.96);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.035),
    0 0 28px rgba(102, 255, 51, 0.12),
    var(--shadow);
}

.access-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 38%),
    radial-gradient(ellipse at 50% 0%, rgba(102, 255, 51, 0.11), transparent 58%);
}

.access-card > * {
  position: relative;
}

.access-brand {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
  width: 112px;
  padding-bottom: 14px;
  border-bottom: 3px solid var(--green);
  color: #f0fbf6;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.access-brand span {
  display: grid;
  place-items: center;
}

.access-copy {
  display: grid;
  gap: 8px;
}

.access-copy h1 {
  font-size: 28px;
}

.access-copy p {
  color: #aebbb8;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.6;
}

.access-field {
  display: grid;
  gap: 9px;
}

.access-field span {
  color: #dce8e3;
  font-size: 14px;
  font-weight: 900;
}

.access-field input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 6px;
  outline: 0;
  background: var(--input);
  color: var(--text);
  padding: 0 13px;
  font-size: 15px;
  font-weight: 800;
}

.access-field input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(102, 255, 51, 0.1);
}

.access-field input::placeholder {
  color: #586967;
}

.access-submit {
  min-height: 46px;
  border: 1px solid rgba(102, 255, 51, 0.86);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(102, 255, 51, 0.42), rgba(36, 147, 31, 0.78) 48%, rgba(8, 34, 22, 0.98)),
    var(--green-mid);
  color: #f8fff4;
  cursor: pointer;
  font-size: 15px;
  font-weight: 900;
  text-shadow: 0 0 10px rgba(102, 255, 51, 0.55);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 18px rgba(102, 255, 51, 0.28);
  transition:
    transform 0.16s ease,
    border-color 0.16s ease,
    filter 0.16s ease,
    box-shadow 0.16s ease;
}

.access-submit:hover,
.access-submit:focus-visible {
  transform: translateY(-1px);
  border-color: #9dff75;
  filter: brightness(1.06);
  outline: none;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.12),
    0 0 24px rgba(102, 255, 51, 0.4);
}

.access-submit:disabled {
  cursor: wait;
  filter: grayscale(0.35) brightness(0.86);
  opacity: 0.72;
  transform: none;
}

.access-message {
  min-height: 0;
  color: #9fb0ad;
  font-size: 13px;
  line-height: 1.55;
}

.access-message:not(:empty) {
  min-height: 22px;
}

.access-message.error {
  color: #ffb5a8;
}

.access-message.ok {
  color: #9dff75;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.app-frame {
  position: relative;
  z-index: 1;
  display: block;
  width: min(1180px, calc(100% - 32px));
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0 auto;
  background: transparent;
  box-shadow: none;
}

.side-rail {
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 22px 18px;
  background: rgba(8, 18, 18, 0.96);
}

.side-brand {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  width: 96px;
  padding-bottom: 14px;
  border-bottom: 3px solid var(--green);
  color: #f0fbf6;
  font-size: 17px;
  font-weight: 900;
  line-height: 1;
}

.side-brand span {
  display: grid;
  place-items: center;
}

.side-hint {
  display: grid;
  gap: 4px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.side-hint strong {
  color: #9ca9a8;
  font-weight: 800;
}

.side-nav {
  display: grid;
  gap: 12px;
  margin-top: 72px;
}

.side-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 42px;
  padding: 0 13px;
  border-radius: 6px;
  color: #6e7b7a;
  text-decoration: none;
  font-weight: 800;
}

.side-link::before {
  content: "";
  position: absolute;
  inset: 8px auto 8px 0;
  width: 0;
  border-radius: 0 4px 4px 0;
  background: var(--green);
  box-shadow: 0 0 12px rgba(102, 255, 51, 0.75);
}

.side-link.active,
.side-link:hover {
  background: rgba(102, 255, 51, 0.08);
  color: var(--text);
}

.side-link.active::before {
  width: 5px;
}

.side-link svg,
.icon-button svg,
.row-button svg,
.search svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.side-link.active svg,
.side-link:hover svg {
  color: var(--green);
  filter: drop-shadow(0 0 5px rgba(102, 255, 51, 0.65));
}

.side-tips {
  display: grid;
  gap: 8px;
  margin-top: auto;
  padding-top: 28px;
  color: #93a19f;
  font-size: 12px;
  line-height: 1.4;
}

.side-tips p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.side-tips span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px rgba(102, 255, 51, 0.8);
}

.main-panel {
  width: 100%;
  min-width: 0;
  min-height: 100vh;
  min-height: 100dvh;
  padding: clamp(14px, 2.1vw, 34px);
}

.topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  min-height: 70px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.brand-line {
  display: flex;
  align-items: flex-start;
  gap: clamp(14px, 1.6vw, 24px);
  min-width: 0;
}

.pubg-mark {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  flex: 0 0 auto;
  gap: 6px;
  width: clamp(88px, 7vw, 116px);
  padding: 2px 0 14px;
  border-bottom: 3px solid var(--green);
  color: #f0fbf6;
  font-size: clamp(15px, 1.15vw, 18px);
  font-weight: 900;
  line-height: 1;
}

.pubg-mark span {
  display: grid;
  place-items: center;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  color: #eff9f4;
  font-size: clamp(22px, 2vw, 34px);
  line-height: 1.2;
  font-weight: 900;
}

.topbar p {
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.icon-button,
.row-button,
.nav-button {
  display: inline-grid;
  place-items: center;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--input);
  color: #b9c7c4;
  cursor: pointer;
  text-decoration: none;
  transition:
    transform 0.16s ease,
    border-color 0.16s ease,
    color 0.16s ease,
    background 0.16s ease,
    box-shadow 0.16s ease,
    filter 0.16s ease;
}

.icon-button,
.row-button {
  width: 40px;
}

.nav-button {
  min-width: 92px;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 900;
}

.nav-button.solid {
  border-color: var(--line-bright);
  background: var(--green-mid);
  color: #f4fff1;
}

.icon-button:hover,
.row-button:hover,
.nav-button:hover {
  transform: translateY(-1px);
  border-color: var(--green);
  background: var(--green-soft);
  color: var(--green);
}

.nav-button.support-cta,
.nav-button.home-cta {
  position: relative;
  min-width: 118px;
  overflow: hidden;
  isolation: isolate;
  letter-spacing: 0;
}

.nav-button.support-cta {
  --cta-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 16px rgba(102, 255, 51, 0.28),
    0 8px 18px rgba(0, 0, 0, 0.26);
  --cta-shadow-strong:
    inset 0 0 0 1px rgba(255, 255, 255, 0.12),
    0 0 24px rgba(102, 255, 51, 0.42),
    0 8px 18px rgba(0, 0, 0, 0.26);
  --cta-inset: rgba(231, 255, 224, 0.16);
  --cta-glow: rgba(102, 255, 51, 0.2);
  border-color: rgba(102, 255, 51, 0.82);
  background:
    linear-gradient(135deg, rgba(102, 255, 51, 0.38), rgba(36, 147, 31, 0.72) 48%, rgba(8, 34, 22, 0.96)),
    var(--green-mid);
  color: #f8fff4;
  text-shadow: 0 0 11px rgba(102, 255, 51, 0.72);
  box-shadow: var(--cta-shadow);
  animation: cta-breathe 2.8s ease-in-out infinite alternate;
}

.nav-button.home-cta {
  --cta-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 16px rgba(240, 178, 59, 0.24),
    0 8px 18px rgba(0, 0, 0, 0.26);
  --cta-shadow-strong:
    inset 0 0 0 1px rgba(255, 255, 255, 0.14),
    0 0 24px rgba(240, 178, 59, 0.4),
    0 8px 18px rgba(0, 0, 0, 0.26);
  --cta-inset: rgba(255, 244, 210, 0.18);
  --cta-glow: rgba(240, 178, 59, 0.2);
  border-color: rgba(240, 178, 59, 0.86);
  background:
    linear-gradient(135deg, rgba(255, 218, 132, 0.36), rgba(164, 103, 23, 0.78) 48%, rgba(42, 26, 11, 0.96)),
    #9d6318;
  color: #fff7df;
  text-shadow: 0 0 11px rgba(240, 178, 59, 0.66);
  box-shadow: var(--cta-shadow);
  animation: cta-breathe 2.8s ease-in-out infinite alternate;
}

.nav-button.support-cta::before,
.nav-button.home-cta::before {
  content: "";
  position: absolute;
  inset: 3px;
  z-index: -1;
  pointer-events: none;
  border: 1px solid var(--cta-inset);
  border-radius: 4px;
  box-shadow: inset 0 0 12px var(--cta-glow);
}

.nav-button.support-cta::after,
.nav-button.home-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  border-radius: inherit;
  background:
    radial-gradient(circle at 20% 16%, rgba(255, 255, 255, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 46%);
  opacity: 0.58;
  transition: opacity 0.18s ease;
}

.nav-button.support-cta:hover,
.nav-button.home-cta:hover {
  transform: translateY(-2px);
  color: #ffffff;
  box-shadow: var(--cta-shadow-strong);
}

.nav-button.support-cta:hover {
  border-color: #9dff75;
  background:
    linear-gradient(135deg, rgba(147, 255, 102, 0.52), rgba(48, 175, 40, 0.82) 48%, rgba(10, 48, 28, 0.98)),
    var(--green-mid);
}

.nav-button.home-cta:hover {
  border-color: #ffd77c;
  background:
    linear-gradient(135deg, rgba(255, 223, 148, 0.5), rgba(188, 120, 28, 0.84) 48%, rgba(55, 33, 12, 0.98)),
    #a86818;
}

.nav-button.support-cta:hover::after,
.nav-button.home-cta:hover::after {
  opacity: 0.78;
}

.nav-button.support-cta:focus-visible,
.nav-button.home-cta:focus-visible {
  outline: 2px solid rgba(157, 255, 117, 0.78);
  outline-offset: 3px;
}

.nav-button.home-cta:focus-visible {
  outline-color: rgba(255, 215, 124, 0.78);
}

.section-title {
  display: grid;
  gap: 10px;
  margin: 34px 0 22px;
}

.section-title h2 {
  color: #e6f1ec;
  font-size: 18px;
  font-weight: 900;
}

.section-title span {
  width: 56px;
  height: 3px;
  background: var(--green);
  box-shadow: 0 0 11px rgba(102, 255, 51, 0.65);
  animation: underline-pulse 2.6s ease-in-out infinite alternate;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(260px, 0.65fr);
  gap: 16px;
}

.control-card,
.toolbar,
.file-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(9, 19, 19, 0.88);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.018),
    0 16px 38px rgba(0, 0, 0, 0.22);
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background-color 0.18s ease;
}

.control-card::before,
.toolbar::before,
.file-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 36%),
    radial-gradient(ellipse at 50% 0%, rgba(102, 255, 51, 0.045), transparent 58%);
  opacity: 0.72;
}

.control-card:hover,
.toolbar:hover,
.file-panel:hover {
  transform: translateY(-1px);
  border-color: rgba(102, 255, 51, 0.42);
  box-shadow:
    inset 0 0 0 1px rgba(102, 255, 51, 0.08),
    0 0 24px rgba(102, 255, 51, 0.1),
    0 18px 42px rgba(0, 0, 0, 0.28);
}

.announcement-panel {
  min-height: 178px;
  padding: 18px;
  border-color: var(--line-bright);
  box-shadow:
    inset 0 0 0 1px rgba(102, 255, 51, 0.24),
    0 0 22px rgba(102, 255, 51, 0.16),
    0 16px 38px rgba(0, 0, 0, 0.22);
}

.card-title {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.title-dot {
  width: 18px;
  height: 18px;
  border: 4px solid var(--green);
  border-radius: 50%;
  background: #112514;
  box-shadow: 0 0 13px rgba(102, 255, 51, 0.7);
}

.card-title h3 {
  min-width: 0;
  overflow: hidden;
  color: #edf7f2;
  font-size: 17px;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.card-title span {
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}

.announcement-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.announcement-list li {
  position: relative;
  min-height: 34px;
  padding: 8px 12px 8px 24px;
  border: 1px solid rgba(39, 75, 73, 0.68);
  border-radius: 6px;
  background: rgba(12, 31, 30, 0.72);
  color: #dce8e3;
  font-size: 14px;
  line-height: 1.45;
}

.announcement-list li::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px rgba(102, 255, 51, 0.82);
}

.status-panel {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 18px;
}

.notice-panel {
  border-color: rgba(102, 255, 51, 0.2);
  background:
    linear-gradient(180deg, rgba(13, 31, 29, 0.82), rgba(7, 18, 17, 0.9)),
    rgba(9, 19, 19, 0.88);
  box-shadow:
    inset 0 0 0 1px rgba(132, 215, 190, 0.04),
    0 0 18px rgba(102, 255, 51, 0.055),
    0 16px 38px rgba(0, 0, 0, 0.22);
}

.notice-title {
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  margin-bottom: 7px;
}

.notice-title .title-dot {
  width: 4px;
  height: 22px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, #8cff75, #2ccf55);
  box-shadow:
    0 0 14px rgba(102, 255, 51, 0.5),
    0 0 2px rgba(255, 255, 255, 0.5);
}

.notice-list {
  display: grid;
  gap: 10px;
}

.notice-row {
  position: relative;
  min-height: 38px;
  padding: 9px 12px 9px 26px;
  border: 1px solid rgba(132, 215, 190, 0.16);
  border-radius: 6px;
  background:
    linear-gradient(90deg, rgba(102, 255, 51, 0.045), transparent 46%),
    rgba(12, 31, 30, 0.7);
  color: #eaf7f0;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
  box-shadow: inset 0 0 0 1px rgba(132, 215, 190, 0.035);
}

.notice-row::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #8cff75;
  box-shadow: 0 0 9px rgba(102, 255, 51, 0.6);
}

.setting-row {
  display: grid;
  grid-template-columns: minmax(80px, 1fr) auto;
  align-items: center;
  gap: 14px;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(39, 75, 73, 0.68);
  border-radius: 6px;
  background: rgba(15, 29, 29, 0.82);
}

.setting-row span {
  color: #bfcbc8;
  font-size: 14px;
  font-weight: 800;
}

.setting-row strong {
  min-width: 0;
  max-width: 210px;
  overflow: hidden;
  color: #f0f8f4;
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.setting-row .green {
  display: inline-grid;
  place-items: center;
  min-width: 44px;
  min-height: 22px;
  border-radius: 5px;
  background: var(--green-mid);
  color: #f4fff1;
}

.help-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.help-card {
  padding: 18px;
}

.help-card h3 {
  color: #edf7f2;
  font-size: 17px;
  font-weight: 900;
}

.help-card p {
  margin-top: 10px;
  color: #bfcbc8;
  font-size: 14px;
  line-height: 1.7;
}

.help-card.wide {
  margin-bottom: 30px;
}

.support-page {
  padding-top: 18px;
}

.topbar.compact {
  margin-bottom: 18px;
}

.support-file-panel,
.solution-panel {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(9, 19, 19, 0.88);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.018),
    0 16px 38px rgba(0, 0, 0, 0.22);
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.support-file-panel {
  overflow: hidden;
}

.solution-panel {
  overflow: hidden;
}

.support-file-panel::before,
.solution-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 36%),
    radial-gradient(ellipse at 50% 0%, rgba(102, 255, 51, 0.044), transparent 58%);
  opacity: 0.7;
}

.support-file-panel:hover,
.solution-panel:hover {
  transform: translateY(-1px);
  border-color: rgba(102, 255, 51, 0.42);
  box-shadow:
    inset 0 0 0 1px rgba(102, 255, 51, 0.08),
    0 0 24px rgba(102, 255, 51, 0.1),
    0 18px 42px rgba(0, 0, 0, 0.28);
}

.support-table-head,
.support-row {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 150px 190px 96px;
  align-items: center;
  gap: 16px;
}

.support-table-head {
  min-height: 42px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  background: var(--panel-soft);
  color: #d7e5e0;
  font-size: 13px;
  font-weight: 900;
}

.support-row {
  min-height: 62px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(31, 60, 59, 0.72);
  background: rgba(9, 19, 19, 0.48);
  color: #edf4f2;
}

.support-row:last-child {
  border-bottom: 0;
}

.support-row:hover {
  background: rgba(102, 255, 51, 0.055);
  box-shadow: inset 3px 0 0 rgba(102, 255, 51, 0.74);
}

.support-name {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: #edf4f2;
  font-weight: 800;
  text-decoration: none;
}

.support-name span:last-child {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.support-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid #34504f;
  border-radius: 6px;
  background: #102020;
  color: #8ea09e;
}

.support-icon.text {
  border-color: rgba(63, 140, 255, 0.46);
  background: rgba(63, 140, 255, 0.08);
  color: #3f8cff;
}

.support-icon.archive {
  border-color: rgba(214, 163, 58, 0.48);
  background: rgba(214, 163, 58, 0.1);
  color: #d6a33a;
}

.support-icon.exe {
  border-color: rgba(57, 168, 255, 0.48);
  background: rgba(57, 168, 255, 0.1);
  color: #39a8ff;
}

.support-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.support-icon.exe svg {
  fill: currentColor;
  stroke: none;
}

.support-meta {
  color: #d6dddd;
  font-size: 13px;
  white-space: nowrap;
}

.support-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.support-download,
.support-copy {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--input);
  color: #b9c7c4;
  cursor: pointer;
  text-decoration: none;
}

.support-download:hover,
.support-copy:hover {
  border-color: var(--green);
  color: var(--green);
}

.support-download svg,
.support-copy svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.support-empty {
  min-height: 130px;
}

.solution-panel {
  position: relative;
  margin-top: 18px;
  margin-bottom: 34px;
  padding: 18px;
}

.solution-panel h2 {
  color: #ffffff;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 900;
}

.solution-item {
  position: relative;
  padding: 26px 0 22px;
  border-bottom: 4px solid rgba(57, 66, 68, 0.72);
}

.solution-item:last-child {
  border-bottom: 0;
  padding-bottom: 2px;
}

.solution-item h3 {
  color: #f3f8f6;
  font-size: 20px;
  line-height: 1.45;
  font-weight: 900;
}

.solution-item p,
.solution-item ol {
  color: #f0f4f2;
  font-size: 14px;
  line-height: 1.8;
}

.solution-item p {
  margin-top: 18px;
}

.solution-item ol {
  margin: 10px 0 0;
  padding-left: 28px;
}

.solution-item strong {
  color: #ffffff;
}

.solution-block {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.solution-block strong {
  color: #ffffff;
  font-size: 15px;
  line-height: 1.65;
}

.solution-block p {
  margin-top: 0;
}

.solution-block a {
  color: #9dff75;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.solution-block a:hover {
  color: var(--green);
  text-decoration: underline;
}

.solution-image-trigger {
  display: block;
  width: min(620px, 100%);
  margin-top: 10px;
  padding: 0;
  border: 0;
  border-radius: 6px;
  background: transparent;
  cursor: zoom-in;
}

.solution-image-trigger:focus-visible {
  outline: 2px solid rgba(157, 255, 117, 0.72);
  outline-offset: 4px;
}

.solution-image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border: 1px solid rgba(102, 255, 51, 0.24);
  border-radius: 6px;
  background: #06110f;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.32);
  transition:
    border-color 0.18s ease,
    filter 0.18s ease,
    transform 0.18s ease;
}

.solution-image-trigger:hover .solution-image {
  border-color: rgba(157, 255, 117, 0.56);
  filter: brightness(1.06);
  transform: translateY(-1px);
}


.check-list,
.guide-list {
  display: grid;
  gap: 10px;
}

.check-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  min-height: 40px;
  gap: 12px;
  padding: 0 12px;
  border: 1px solid rgba(39, 75, 73, 0.68);
  border-radius: 6px;
  background: rgba(15, 29, 29, 0.82);
}

.check-item span,
.guide-list strong {
  color: #dce8e3;
  font-weight: 900;
}

.check-item strong {
  display: inline-grid;
  place-items: center;
  min-width: 58px;
  min-height: 24px;
  border-radius: 5px;
  background: rgba(142, 160, 158, 0.18);
  color: #b9c7c4;
  font-size: 13px;
}

.check-item strong.ok {
  background: var(--green-mid);
  color: #f4fff1;
}

.check-item strong.bad {
  background: rgba(184, 70, 50, 0.55);
  color: #ffe9e4;
}

.guide-list > div {
  min-height: 68px;
  padding: 12px;
  border: 1px solid rgba(39, 75, 73, 0.68);
  border-radius: 6px;
  background: rgba(15, 29, 29, 0.82);
}

.guide-list p {
  margin-top: 6px;
  color: #9fb0ad;
}

.help-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.steps {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 22px;
  color: #dce8e3;
  line-height: 1.7;
}

.steps li::marker {
  color: var(--green);
  font-weight: 900;
}

.toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 340px);
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  padding: 12px;
}

.download-readme {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  min-height: 58px;
  align-items: center;
  margin: -8px 0 16px;
  padding: 12px;
  border: 1px solid rgba(102, 255, 51, 0.28);
  border-radius: 8px;
  border-color: rgba(102, 255, 51, 0.28);
  background:
    linear-gradient(180deg, rgba(14, 36, 32, 0.78), rgba(9, 19, 19, 0.88)),
    rgba(9, 19, 19, 0.88);
  box-shadow:
    inset 0 0 0 1px rgba(102, 255, 51, 0.07),
    0 0 20px rgba(102, 255, 51, 0.08),
    0 16px 38px rgba(0, 0, 0, 0.22);
}

.download-readme::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 36%),
    radial-gradient(ellipse at 50% 0%, rgba(102, 255, 51, 0.07), transparent 58%);
  opacity: 0.72;
}

.download-readme + .dashboard-grid {
  margin-top: 0;
}

.download-readme-text {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px 0 30px;
  color: #e8fff0;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.45;
  text-shadow: 0 0 12px rgba(102, 255, 51, 0.24);
}

.download-readme-text::before {
  content: "";
  position: absolute;
  left: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px rgba(102, 255, 51, 0.74);
}

.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  min-width: 0;
}

.crumb {
  max-width: 220px;
  padding: 7px 5px;
  overflow: hidden;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.crumb:hover,
.crumb[aria-current="page"] {
  color: var(--green);
}

.crumb-separator {
  color: #3f5857;
}

.search {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  height: 44px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--input);
  color: #798b8a;
}

.search:focus-within {
  border-color: var(--green);
  color: var(--green);
  box-shadow: 0 0 0 2px rgba(102, 255, 51, 0.09);
}

.search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
}

.search input::placeholder {
  color: #586967;
}

.file-panel {
  overflow: hidden;
  min-height: clamp(280px, 44vh, 680px);
}

.table-head,
.file-row {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 120px 190px 112px;
  align-items: center;
  gap: 14px;
}

.table-head {
  min-height: 44px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  background: var(--panel-soft);
  color: #d7e5e0;
  font-size: 13px;
  font-weight: 900;
}

.file-list {
  min-height: clamp(190px, 36vh, 520px);
}

.file-row {
  width: 100%;
  min-height: 62px;
  padding: 0 18px;
  border: 0;
  border-bottom: 1px solid rgba(31, 60, 59, 0.72);
  background: rgba(9, 19, 19, 0.48);
  color: inherit;
  text-align: left;
}

.file-row:last-child {
  border-bottom: 0;
}

.file-row:hover {
  background: rgba(102, 255, 51, 0.055);
  box-shadow: inset 3px 0 0 rgba(102, 255, 51, 0.74);
}

.file-main {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.file-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid #34504f;
  border-radius: 6px;
  background: #102020;
  color: #8ea09e;
}

.file-icon.folder {
  border-color: var(--line-bright);
  background: rgba(102, 255, 51, 0.08);
  color: var(--green);
  box-shadow: inset 0 0 0 1px rgba(102, 255, 51, 0.08);
}

.file-icon.text {
  border-color: rgba(63, 140, 255, 0.46);
  background: rgba(63, 140, 255, 0.08);
  color: #3f8cff;
}

.file-icon.archive {
  border-color: rgba(214, 163, 58, 0.48);
  background: rgba(214, 163, 58, 0.1);
  color: #d6a33a;
}

.file-icon.exe {
  border-color: rgba(57, 168, 255, 0.48);
  background: rgba(57, 168, 255, 0.1);
  color: #39a8ff;
}

.file-icon.exe svg {
  fill: currentColor;
  stroke: none;
}

.file-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.file-name {
  min-width: 0;
  overflow: hidden;
  color: #e7f3ee;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.file-meta {
  color: #8ea09e;
  font-size: 14px;
  white-space: nowrap;
}

.row-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.empty {
  display: grid;
  place-items: center;
  gap: 8px;
  min-height: 220px;
  padding: 24px;
  color: var(--muted);
  text-align: center;
}

.empty[hidden] {
  display: none;
}

.empty strong {
  color: var(--text);
  font-size: 18px;
}

body.lightbox-open {
  overflow: hidden;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 48px);
  background:
    radial-gradient(circle at 50% 18%, rgba(102, 255, 51, 0.13), transparent 34%),
    rgba(2, 8, 7, 0.9);
  backdrop-filter: blur(10px);
  cursor: zoom-out;
}

.image-lightbox[hidden] {
  display: none;
}

.image-lightbox img {
  position: relative;
  z-index: 1;
  width: auto;
  max-width: min(1120px, 94vw);
  max-height: 86vh;
  border: 1px solid rgba(157, 255, 117, 0.36);
  border-radius: 8px;
  background: #06110f;
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.58),
    0 0 36px rgba(102, 255, 51, 0.16);
  cursor: default;
}

.image-lightbox-close {
  position: fixed;
  top: clamp(14px, 3vw, 28px);
  right: clamp(14px, 3vw, 28px);
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(157, 255, 117, 0.34);
  border-radius: 6px;
  background: rgba(9, 18, 17, 0.88);
  color: #eaffdd;
  font-size: 28px;
  line-height: 1;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.34);
  cursor: pointer;
}

.image-lightbox-close:hover,
.image-lightbox-close:focus-visible {
  border-color: rgba(157, 255, 117, 0.72);
  background: rgba(22, 46, 39, 0.95);
  outline: none;
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 10;
  max-width: min(360px, calc(100vw - 44px));
  padding: 12px 14px;
  border: 1px solid var(--line-bright);
  border-radius: 6px;
  background: rgba(8, 18, 18, 0.96);
  color: var(--green);
  box-shadow: 0 0 22px rgba(102, 255, 51, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

@keyframes particle-drift {
  from {
    background-position:
      8% 22%,
      76% 18%,
      36% 78%,
      92% 62%;
    transform: translate3d(0, 0, 0);
  }

  to {
    background-position:
      18% 12%,
      66% 30%,
      46% 66%,
      82% 72%;
    transform: translate3d(0, -18px, 0);
  }
}

@keyframes underline-pulse {
  from {
    width: 48px;
    opacity: 0.78;
  }

  to {
    width: 68px;
    opacity: 1;
  }
}

@keyframes ambient-pulse {
  from {
    opacity: 0.72;
  }

  to {
    opacity: 0.95;
  }
}

@keyframes cta-breathe {
  from {
    box-shadow: var(--cta-shadow);
    filter: saturate(1) brightness(0.98);
  }

  to {
    box-shadow: var(--cta-shadow-strong);
    filter: saturate(1.08) brightness(1.04);
  }
}

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

@media (max-width: 900px) {
  .app-frame {
    min-height: 100dvh;
  }

  .dashboard-grid,
  .help-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .app-frame {
    width: 100%;
    border-left: 0;
    border-right: 0;
  }

  .main-panel {
    padding: 14px 12px 28px;
  }

  .topbar {
    display: grid;
    gap: 14px;
  }

  .top-actions {
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .toolbar {
    grid-template-columns: 1fr;
  }

  .table-head {
    display: none;
  }

  .support-table-head {
    display: none;
  }

  .support-row {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "supportName supportActions"
      "supportSize supportActions"
      "supportTime supportActions";
    min-height: 72px;
    padding: 12px;
    gap: 4px 10px;
  }

  .support-name {
    grid-area: supportName;
  }

  .support-row .support-meta:nth-of-type(1) {
    grid-area: supportSize;
    padding-left: 30px;
  }

  .support-row .support-meta:nth-of-type(2) {
    grid-area: supportTime;
    padding-left: 30px;
  }

  .support-actions {
    grid-area: supportActions;
  }

  .solution-panel {
    padding: 14px;
  }

  .solution-panel h2 {
    font-size: 24px;
  }

  .solution-item h3 {
    font-size: 18px;
  }

  .file-row {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "name actions"
      "size actions"
      "time actions";
    min-height: 78px;
    padding: 12px;
    gap: 5px 10px;
  }

  .file-main {
    grid-area: name;
  }

  .file-meta.size {
    grid-area: size;
    padding-left: 46px;
  }

  .file-meta.time {
    grid-area: time;
    padding-left: 46px;
  }

  .row-actions {
    grid-area: actions;
  }
}

@media (max-width: 520px) {
  .access-gate {
    padding: 14px;
  }

  .access-card {
    gap: 16px;
    padding: 20px;
  }

  .access-copy h1 {
    font-size: 24px;
  }

  .brand-line {
    gap: 12px;
  }

  h1 {
    font-size: 21px;
  }

  .topbar p {
    font-size: 11px;
  }

  .nav-button {
    flex: 1;
    min-width: 0;
  }

  .card-title {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .card-title span {
    grid-column: 2;
  }

  .setting-row {
    grid-template-columns: 1fr;
    align-items: start;
    padding: 9px 12px;
  }

  .setting-row strong {
    max-width: 100%;
  }
}
