:root {
  --green: #FFDD2D;
  --green-hover: #ffe14d;
  --text: #ffffff;
  --text-2: #d4d4d4;
  --text-dim: #8a8a8a;
  --text-muted: #6b6b6b;
  --border-2: #2a2a2a;
  --bg: #0a0a0a;
  --panel: #161616;
  --panel-hover: #1d1d1d;
  --btn: #262626;
  --btn-hover: #333333;
  --line: #242424;
  --red: #ff6b6b;
  --accent-border-2: #3a3a3a;
}
body.lp2.light {
  --text: #111111;
  --text-2: #333333;
  --text-dim: #6b6b6b;
  --text-muted: #8a8a8a;
  --border-2: #e0e0e0;
  --bg: #f7f7f5;
  --panel: #ffffff;
  --panel-hover: #f0f0ee;
  --btn: #ececec;
  --btn-hover: #e2e2e2;
  --line: #e8e8e6;
  --red: #e5484d;
  --accent-border-2: #cccccc;
}

body.lp2 {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", -apple-system, "Segoe UI", Roboto, sans-serif;
  margin: 0;
  min-height: 100vh;
}
body.lp2 * { box-sizing: border-box; }
body.lp2 img { border: 0; }
body.lp2 a { color: inherit; }

body.lp2 .page { padding: 120px 40px 60px; max-width: 1080px; margin: 0 auto; }
body.lp2 #loginSection { min-height: 70vh; display: flex; align-items: center; justify-content: center; }
body.lp2 #dashboardSection { display: none; }
body.lp2 .spinner {
  width: 20px; height: 20px; border: 2px solid rgba(255,255,255,0.2);
  border-top-color: var(--green); border-radius: 50%;
  display: inline-block; animation: spin 0.7s linear infinite;
}
body.lp2.light .spinner { border-color: rgba(0,0,0,0.15); border-top-color: var(--green); }
@keyframes spin { to { transform: rotate(360deg); } }

body.lp2 .tk-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; gap: 28px; padding: 0 40px; height: 68px;
  background: rgba(10,10,10,0.85); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
body.lp2.light .tk-nav { background: rgba(255,255,255,0.9); }
.tk-nav-logo { width: 42px; height: 42px; border-radius: 13px; overflow: hidden; flex: 0 0 auto; border: 1px solid var(--border-2); }
.tk-nav-logo img { width: 100%; height: 100%; object-fit: cover; }
.tk-nav-links { display: flex; gap: 26px; }
.tk-nav-link { font-size: 14px; font-weight: 700; color: var(--text-dim); text-decoration: none; transition: color .2s; }
.tk-nav-link:hover { color: var(--text); }
.tk-nav-right { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.tk-nav-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 10px 20px; border-radius: 999px; background: var(--btn); color: var(--text);
  font-size: 13px; font-weight: 800; text-decoration: none; transition: background .2s;
}
.tk-nav-btn:hover { background: var(--btn-hover); }
.tk-nav-btn-active { background: var(--green); color: #000; }
.tk-nav-btn-active:hover { background: var(--green-hover); }
.tk-nav-icon {
  width: 38px; height: 38px; border-radius: 999px; background: var(--btn); border: none;
  color: var(--text); font-size: 11px; font-weight: 800; cursor: pointer; transition: background .2s;
  display: inline-flex; align-items: center; justify-content: center;
}
.tk-nav-icon:hover { background: var(--btn-hover); }
.tk-nav-icon svg { width: 16px; height: 16px; }
.tk-nav-icon .icon-moon { display: none; }
body.lp2.light .tk-nav-icon .icon-moon { display: block; }
body.lp2.light .tk-nav-icon .icon-sun { display: none; }
.tk-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; margin-left: auto; }
.tk-burger span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all .25s; }
.tk-burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.tk-burger.active span:nth-child(2) { opacity: 0; }
.tk-burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.tk-mnav {
  position: fixed; top: 68px; left: 0; right: 0; z-index: 999;
  background: rgba(10,10,10,0.97); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line); padding: 16px 24px 24px;
  display: none; flex-direction: column; gap: 4px;
}
body.lp2.light .tk-mnav { background: rgba(255,255,255,0.98); }
.tk-mnav.active { display: flex; }
.tk-mnav-link { padding: 12px 8px; font-size: 15px; font-weight: 700; color: var(--text-2); text-decoration: none; border-bottom: 1px solid var(--line); }
.tk-mnav-link:hover { color: var(--green); }

body.lp2 .login-card {
  background: none; border: none; border-radius: 0; padding: 0; max-width: 520px; width: 100%;
  text-align: center;
}
.lp2-auth-logo {
  width: 84px; height: 84px; border-radius: 26px; overflow: hidden;
  border: 1px solid var(--border-2); margin: 0 auto 32px;
  box-shadow: 0 0 60px rgba(255,221,45,0.15);
}
.lp2-auth-logo img { width: 100%; height: 100%; object-fit: cover; }
body.lp2 .login-card h1 {
  font-size: clamp(34px, 5vw, 48px); font-weight: 900; letter-spacing: -2.5px;
  margin: 0 0 10px; color: var(--text);
}
body.lp2 .login-card p { color: var(--text-dim); font-size: 15px; margin: 0 0 36px; }
body.lp2 .form-input {
  width: 100%; background: var(--panel); border: 1px solid var(--border-2); border-radius: 14px;
  padding: 14px 16px; color: var(--text); font-size: 14px; font-family: inherit;
  outline: none; transition: border-color .2s; margin-bottom: 12px;
}
body.lp2 .form-input::placeholder { color: var(--text-muted); }
body.lp2 .form-input:focus { border-color: var(--green); }
body.lp2 .btn {
  width: 100%; background: var(--green); color: #000; border: none; border-radius: 999px;
  padding: 14px 28px; font-size: 14px; font-weight: 800; font-family: inherit; cursor: pointer;
  transition: background .2s; margin-top: 4px;
}
body.lp2 .btn:hover { background: var(--green-hover); }
body.lp2 .btn:disabled { opacity: 0.5; cursor: default; }
body.lp2 .form-group { margin-top: 16px; text-align: left; }
body.lp2 .form-label { display: block; font-size: 12px; font-weight: 800; color: var(--text-dim); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.06em; }
body.lp2 .login-hint { font-size: 13px; color: var(--text-dim); margin: 16px 0 0; }
body.lp2 .login-hint a { color: var(--green); text-decoration: none; font-weight: 700; }
body.lp2 .custom-select { position: relative; width: 100%; font-size: 14px; }
body.lp2 .custom-select__selected {
  background: var(--panel); border: 1px solid var(--border-2); border-radius: 14px;
  padding: 14px 16px; color: var(--text); cursor: pointer; position: relative;
}
body.lp2 .custom-select__selected::after {
  content: ""; position: absolute; right: 18px; top: 50%;
  width: 8px; height: 8px; border-right: 2px solid var(--text-dim); border-bottom: 2px solid var(--text-dim);
  transform: translateY(-70%) rotate(45deg); transition: transform .2s;
}
body.lp2 .custom-select.open .custom-select__selected::after { transform: translateY(-30%) rotate(-135deg); }
body.lp2 .custom-select__dropdown {
  display: none; position: absolute; top: calc(100% + 6px); left: 0; right: 0; z-index: 50;
  background: var(--panel); border: 1px solid var(--border-2); border-radius: 14px;
  overflow: hidden;
}
body.lp2 .custom-select__dropdown.open { display: block; }
body.lp2 .custom-select__option { padding: 12px 16px; cursor: pointer; color: var(--text-2); }
body.lp2 .custom-select__option:hover { background: var(--btn); color: var(--green); }

body.lp2 .tk-head {
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  padding-bottom: 32px; margin-bottom: 32px; border-bottom: 1px solid var(--line);
}
.tk-head-left { display: flex; align-items: center; gap: 20px; }
.tk-avatar { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; border: 3px solid var(--green); }
.tk-name { font-size: clamp(26px, 3.5vw, 36px); font-weight: 900; letter-spacing: -2px; margin: 0; }
.tk-id { font-size: 13px; color: var(--text-dim); margin-top: 4px; }
.tk-head-right { display: flex; align-items: center; gap: 16px; }
.tk-bot { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 700; color: var(--text-dim); }
body.lp2 .toggle { position: relative; width: 52px; height: 28px; cursor: pointer; flex: 0 0 auto; }
body.lp2 .toggle input { opacity: 0; width: 0; height: 0; }
body.lp2 .toggle-slider {
  position: absolute; inset: 0; border-radius: 999px; background: var(--btn); transition: background .25s;
}
body.lp2 .toggle-slider::before {
  content: ""; position: absolute; width: 22px; height: 22px; border-radius: 50%;
  left: 3px; top: 3px; background: #fff; transition: transform .25s;
}
body.lp2 .toggle input:checked + .toggle-slider { background: var(--green); }
body.lp2 .toggle input:checked + .toggle-slider::before { transform: translateX(24px); }

body.lp2 .tk-account { background: var(--panel); border-radius: 24px; padding: 32px 36px; margin-bottom: 28px; }
.tk-account-label { font-size: 12px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 12px; }
.tk-account-num { font-size: clamp(44px, 7vw, 64px); font-weight: 900; letter-spacing: -4px; color: var(--green); line-height: 1; margin-bottom: 24px; }
.tk-metrics { display: flex; border-top: 1px solid var(--line); padding-top: 24px; flex-wrap: wrap; }
.tk-metric { flex: 1; min-width: 130px; padding: 0 24px; border-left: 1px solid var(--line); }
.tk-metric:first-child { padding-left: 0; border-left: none; }
.tk-metric-num { font-size: 30px; font-weight: 900; letter-spacing: -1.5px; }
.tk-metric-label { font-size: 11px; color: var(--text-dim); margin-top: 6px; font-weight: 700; }

.tk-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 32px; }
.tk-btn {
  background: var(--btn); color: var(--text); border: none;
  padding: 12px 22px; border-radius: 999px; font-size: 13px; font-weight: 800; font-family: inherit;
  cursor: pointer; transition: background .2s;
}
.tk-btn:hover { background: var(--btn-hover); }
.tk-btn-danger { background: rgba(255,80,80,0.14); color: var(--red); }
.tk-btn-danger:hover { background: rgba(255,80,80,0.24); }
.tk-btn-block { width: 100%; }
.tk-form { display: none; }
.tk-form.open { display: block; background: var(--panel); border-radius: 20px; padding: 28px; margin-bottom: 28px; }
.tk-form h3 { font-size: 18px; font-weight: 900; letter-spacing: -0.5px; margin: 0 0 20px; }

body.lp2 .tabs { display: flex; gap: 28px; border-bottom: 1px solid var(--line); margin-bottom: 36px; overflow-x: auto; }
body.lp2 .tab {
  flex: 0 0 auto; padding: 14px 2px; border: none; background: none; border-radius: 0;
  font-size: 14px; font-weight: 800; font-family: inherit; color: var(--text-dim); cursor: pointer;
  border-bottom: 3px solid transparent; margin-bottom: -1px; transition: color .2s;
}
body.lp2 .tab:hover { color: var(--text); }
body.lp2 .tab.active { color: var(--green); border-bottom-color: var(--green); }

.tk-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 14px; margin-bottom: 28px; }
.tk-card { background: var(--panel); border-radius: 20px; padding: 24px; transition: background .2s; }
.tk-card:hover { background: var(--panel-hover); }
.tk-card-label { font-size: 11px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 10px; }
.tk-card-num { font-size: 34px; font-weight: 900; letter-spacing: -2px; color: var(--text); }
.tk-card-sub { font-size: 12px; color: var(--text-dim); margin-top: 8px; }
.tk-card .tk-green { color: var(--green); }
.tk-card .tk-blue { color: #60a5fa; }
.tk-card .tk-purple { color: #a78bfa; }
.tk-card .tk-orange { color: #fb923c; }
.tk-card .tk-red { color: var(--red); }
.tk-card .tk-teal { color: #2dd4bf; }
.tk-card .tk-pink { color: #f472b6; }

.tk-list { margin-bottom: 32px; }
.tk-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.tk-row:last-child { border-bottom: none; }
.tk-row-main { display: flex; flex-direction: column; gap: 4px; }
.tk-row-title { font-weight: 800; font-size: 15px; }
.tk-row-sub { font-size: 12px; color: var(--text-dim); }
.tk-badge { font-size: 12px; font-weight: 800; padding: 7px 14px; border-radius: 999px; background: var(--btn); color: var(--text); white-space: nowrap; }
.tk-badge-green { background: rgba(255,221,45,0.16); color: var(--green); }
.tk-badge-red { background: rgba(255,80,80,0.16); color: var(--red); }
.tk-badge-purple { background: rgba(167,139,250,0.16); color: #a78bfa; }

.tk-empty { padding: 48px 0; text-align: center; color: var(--text-dim); font-size: 14px; }
.tk-section-title { font-size: 20px; font-weight: 900; letter-spacing: -0.5px; margin: 32px 0 6px; }

.tk-premium { background: var(--panel); border-radius: 24px; padding: 32px; margin-bottom: 28px; }
.tk-premium-head { display: flex; align-items: center; gap: 14px; padding-bottom: 24px; border-bottom: 1px solid var(--line); margin-bottom: 28px; }
.tk-premium-title { font-size: 18px; font-weight: 900; letter-spacing: -0.5px; }
.tk-premium-settings { display: grid; gap: 24px; }

body.lp2 .sup-tabs { display: flex; align-items: center; gap: 24px; border-bottom: 1px solid var(--line); margin-bottom: 28px; }
body.lp2 .sup-tab {
  flex: 0 0 auto; padding: 12px 2px; border: none; background: none; border-radius: 0;
  font-size: 14px; font-weight: 800; font-family: inherit; color: var(--text-dim); cursor: pointer;
  border-bottom: 3px solid transparent; margin-bottom: -1px; transition: color .2s;
}
body.lp2 .sup-tab:hover { color: var(--text); }
body.lp2 .sup-tab.active { color: var(--green); border-bottom-color: var(--green); }
body.lp2 .sup-tab-badge { font-size: 11px; font-weight: 800; padding: 3px 9px; border-radius: 999px; background: var(--btn); color: var(--text-dim); margin-left: 6px; }
body.lp2 .sup-tab.active .sup-tab-badge { background: rgba(255,221,45,0.16); color: var(--green); }
body.lp2 .sup-tabs .spacer { flex: 1; }
body.lp2 .sup-new-btn {
  background: var(--green); color: #000; border: none; border-radius: 999px;
  padding: 10px 20px; font-size: 13px; font-weight: 800; font-family: inherit; cursor: pointer;
  margin-left: auto; transition: background .2s;
}
body.lp2 .sup-new-btn:hover { background: var(--green-hover); }

.tk-ticket { background: var(--panel); border-radius: 20px; padding: 20px 24px; margin-bottom: 12px; cursor: pointer; transition: background .2s; }
.tk-ticket:hover { background: var(--panel-hover); }
.tk-ticket-top { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; flex-wrap: wrap; }
.tk-ticket-title { font-size: 16px; font-weight: 800; }
.tk-ticket-meta { font-size: 12px; color: var(--text-dim); }
.tk-status { font-size: 11px; font-weight: 800; padding: 5px 12px; border-radius: 999px; text-transform: uppercase; letter-spacing: 0.05em; }
.tk-status-open { background: rgba(255,221,45,0.16); color: var(--green); }
.tk-status-in_progress { background: rgba(96,165,250,0.16); color: #60a5fa; }
.tk-status-closed { background: rgba(139,139,139,0.18); color: var(--text-dim); }

.tk-kb { display: grid; gap: 12px; }
.tk-kb-item { background: var(--panel); border-radius: 20px; padding: 20px 24px; cursor: pointer; transition: background .2s; }
.tk-kb-item:hover { background: var(--panel-hover); }
.tk-kb-item h4 { font-size: 16px; font-weight: 800; margin: 0 0 4px; }
.tk-kb-item p { font-size: 12px; color: var(--text-dim); margin: 0; }
.tk-kb-answer { display: none; font-size: 13px; line-height: 1.7; color: var(--text-2); padding-top: 16px; margin-top: 16px; border-top: 1px solid var(--line); }
.tk-kb-item.open .tk-kb-answer { display: block; }

.tk-chat { display: flex; flex-direction: column; gap: 10px; margin: 20px 0; max-height: 360px; overflow-y: auto; }
.tk-msg { max-width: 78%; padding: 14px 18px; border-radius: 20px; font-size: 14px; line-height: 1.55; color: var(--text-2); }
.tk-msg .tk-msg-label { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; }
.tk-msg .tk-msg-time { font-size: 10px; color: var(--text-dim); margin-top: 6px; }
.tk-msg.me { align-self: flex-start; background: var(--btn); border-bottom-left-radius: 6px; }
.tk-msg.staff { align-self: flex-end; background: rgba(255,221,45,0.14); border-bottom-right-radius: 6px; }
.tk-msg.staff .tk-msg-label { color: var(--green); }
.tk-reply { display: flex; gap: 10px; margin-top: 18px; }
.tk-reply input {
  flex: 1; background: var(--panel); border: 1px solid var(--border-2); border-radius: 16px;
  padding: 14px 18px; color: var(--text); font-size: 14px; font-family: inherit; outline: none;
}
.tk-reply input:focus { border-color: var(--green); }
.tk-reply button { background: var(--green); color: #000; border: none; border-radius: 999px; padding: 0 22px; font-size: 18px; font-weight: 800; cursor: pointer; }

body.lp2 .tk-modal-overlay {
  position: fixed; inset: 0; z-index: 2000; background: rgba(0,0,0,0.72);
  backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .2s; padding: 20px;
}
body.lp2 .tk-modal-overlay.active { opacity: 1; pointer-events: all; }
.tk-modal { background: var(--panel); border-radius: 24px; width: 92%; max-width: 520px; max-height: 84vh; overflow-y: auto; box-shadow: 0 24px 80px rgba(0,0,0,0.5); }
.tk-modal-head { padding: 24px 28px 18px; border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; }
.tk-modal-head h2 { font-size: 19px; font-weight: 900; letter-spacing: -0.5px; margin: 0; }
.tk-modal-close { background: none; border: none; color: var(--text-dim); font-size: 22px; cursor: pointer; line-height: 1; }
.tk-modal-close:hover { color: var(--text); }
.tk-modal-body { padding: 24px 28px 28px; }
.tk-modal-body label { display: block; font-size: 12px; font-weight: 800; color: var(--text-dim); margin: 0 0 8px; text-transform: uppercase; letter-spacing: 0.06em; }
body.lp2 .cat-btn-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
body.lp2 .cat-btn { background: var(--btn); color: var(--text-dim); border: none; border-radius: 999px; padding: 9px 16px; font-size: 12px; font-weight: 700; font-family: inherit; cursor: pointer; transition: all .2s; }
body.lp2 .cat-btn.active { background: var(--green); color: #000; }
body.lp2 .form-textarea {
  width: 100%; background: var(--panel); border: 1px solid var(--border-2); border-radius: 14px;
  padding: 14px 16px; color: var(--text); font-size: 14px; font-family: inherit;
  outline: none; resize: vertical; margin-bottom: 12px;
}
body.lp2 .form-textarea:focus { border-color: var(--green); }

body.lp2 .thread-page { max-width: 760px; margin: 0 auto; }
body.lp2 .thread-top { padding-bottom: 16px; }
body.lp2 .thread-back { color: var(--green); text-decoration: none; font-size: 13px; font-weight: 700; }
body.lp2 .thread-back:hover { text-decoration: underline; }
body.lp2 .thread-info { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; padding: 16px 0; border-bottom: 1px solid var(--line); }

body.lp2 .tk-footer {
  border-top: 1px solid var(--line); padding: 36px 40px; margin-top: 48px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.tk-footer-logo { display: flex; align-items: center; gap: 12px; font-weight: 900; letter-spacing: -0.5px; font-size: 15px; }
.tk-footer-links { display: flex; gap: 24px; }
.tk-footer-links a { font-size: 13px; font-weight: 600; color: var(--text-dim); text-decoration: none; transition: color .2s; }
.tk-footer-links a:hover { color: var(--text); }

body.lp2 .auth-only { display: inline-flex; }
body.lp2 .logged-in-only { display: none; }
body.lp2 .admin-only { display: none; }
body.lp2 .dev-only { display: none; }
body.lp2.is-logged-in .auth-only { display: none; }
body.lp2.is-logged-in .logged-in-only { display: inline-flex; }
body.lp2.is-admin .admin-only { display: inline-flex; }
body.lp2.is-owner .dev-only { display: inline-flex; }
body.lp2 .tk-mnav .auth-only { display: flex; }
body.lp2 .tk-mnav .logged-in-only { display: none; }
body.lp2.is-logged-in .tk-mnav .auth-only { display: none; }
body.lp2.is-logged-in .tk-mnav .logged-in-only { display: flex; }
body.lp2.is-admin .tk-mnav .admin-only { display: flex; }
body.lp2.is-owner .tk-mnav .dev-only { display: flex; }

@media (max-width: 900px) {
  body.lp2 .page { padding: 100px 20px 40px; }
  body.lp2 .tk-nav { padding: 0 20px; }
  .tk-nav-links { display: none; }
  .tk-nav-right { display: none; }
  .tk-burger { display: flex; }
  .tk-footer { padding: 28px 20px; }
  body.lp2 .tabs { gap: 18px; }
  .tk-account { padding: 24px; }
}
@media (max-width: 480px) {
  .tk-metric { min-width: 100%; padding: 10px 0; border-left: none; border-top: 1px solid var(--line); }
  .tk-metric:first-child { border-top: none; }
  .tk-card { padding: 20px; }
}
body.lp2 .glass-panel {
  background: var(--panel); border: none; border-radius: 24px;
  padding: 32px; box-shadow: none;
}
body.lp2 .panel-header { display: flex; align-items: center; gap: 16px; justify-content: space-between; margin-bottom: 28px; flex-wrap: wrap; }
body.lp2 .dash-header { display: flex; align-items: center; gap: 18px; margin-bottom: 32px; flex-wrap: wrap; }
body.lp2 .dash-avatar { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; border: 3px solid var(--green); }
body.lp2 .dash-info h1 { font-size: 26px; font-weight: 900; letter-spacing: -1.5px; margin: 0; }
body.lp2 .dash-info p { color: var(--text-dim); font-size: 13px; margin: 4px 0 0; }

body.lp2 .section-title { font-size: 20px; font-weight: 900; letter-spacing: -0.5px; margin: 32px 0 20px; }
body.lp2 .label { font-size: 11px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 8px; display: block; }
body.lp2 .divider-line { height: 1px; background: var(--line); border: none; margin: 24px 0; }

body.lp2 .form-select {
  width: 100%; background: var(--panel); border: 1px solid var(--border-2); border-radius: 14px;
  padding: 14px 16px; color: var(--text); font-size: 14px; font-family: inherit; outline: none;
}
body.lp2 .form-select:focus { border-color: var(--green); }

body.lp2 .btn-sm { padding: 8px 16px; font-size: 12px; }
body.lp2 .btn-green { background: var(--green); color: #000; }
body.lp2 .btn-green:hover { background: var(--green-hover); }
body.lp2 .btn-outline { background: var(--btn); color: var(--text); }
body.lp2 .btn-outline:hover { background: var(--btn-hover); }
body.lp2 .btn-purple { background: #7c5cff; color: #fff; }
body.lp2 .btn-purple:hover { background: #8f74ff; }
body.lp2 .btn-red { background: rgba(255,80,80,0.16); color: var(--red); }
body.lp2 .btn-red:hover { background: rgba(255,80,80,0.26); }
body.lp2 .btn-blue { background: #60a5fa; color: #fff; }
body.lp2 .btn-blue:hover { background: #7cb3fb; }
body.lp2 .btn-yellow { background: var(--green); color: #000; }
body.lp2 .btn-glow {
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  background:var(--green); color:#000; border:none; border-radius:999px;
  padding:15px 34px; font-size:15px; font-weight:800; font-family:inherit;
  cursor:pointer; text-decoration:none; width:auto; line-height:1.2;
  box-shadow:0 0 30px rgba(255,221,45,0.35); transition:background .2s, box-shadow .2s, transform .15s;
}
body.lp2 .btn-glow:hover { background:var(--green-hover); box-shadow:0 0 44px rgba(255,221,45,0.5); transform:translateY(-1px); }
body.lp2 .btn-glow svg { width:18px; height:18px; flex:0 0 auto; }
body.lp2 .btn-clear { background: none; border: 1px solid var(--border-2); color: var(--text-2); }
body.lp2 .btn-clear:hover { border-color: var(--text-dim); }
body.lp2 .btn-confirm { background: var(--green); color: #000; }
body.lp2 .btn-confirm:hover { background: var(--green-hover); }
body.lp2 .btn-cancel { background: var(--btn); color: var(--text); }
body.lp2 .btn-execute { background: var(--green); color: #000; }
body.lp2 .btn-execute:hover { background: var(--green-hover); }

body.lp2 .badge { font-size: 11px; font-weight: 800; padding: 5px 12px; border-radius: 999px; background: var(--btn); color: var(--text-2); }
body.lp2 .badge-green { background: rgba(255,221,45,0.16); color: var(--green); }
body.lp2 .badge-red { background: rgba(255,80,80,0.16); color: var(--red); }
body.lp2 .badge-yellow { background: rgba(251,146,60,0.16); color: #fb923c; }
body.lp2 .badge-purple { background: rgba(167,139,250,0.16); color: #a78bfa; }
body.lp2 .badge-blue { background: rgba(96,165,250,0.16); color: #60a5fa; }

body.lp2 .search-bar {
  display: flex; align-items: center; gap: 10px; width: 100%; max-width: 420px;
  background: var(--panel); border: 1px solid var(--border-2); border-radius: 999px;
  padding: 10px 18px; margin-bottom: 24px;
}
body.lp2 .search-bar input { flex: 1; background: none; border: none; outline: none; color: var(--text); font-size: 14px; font-family: inherit; }
body.lp2 .search-bar input::placeholder { color: var(--text-muted); }
body.lp2 .search-bar svg { width: 16px; height: 16px; color: var(--text-dim); flex: 0 0 auto; }

body.lp2 .data-table { width: 100%; border-collapse: collapse; }
body.lp2 .data-table th { font-size: 11px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dim); text-align: left; padding: 12px 16px; border-bottom: 1px solid var(--line); }
body.lp2 .data-table td { padding: 14px 16px; border-bottom: 1px solid var(--line); font-size: 14px; color: var(--text-2); }
body.lp2 .data-table tr:hover td { background: rgba(255,255,255,0.02); }
body.lp2 .data-table .empty-cell { text-align: center; color: var(--text-dim); padding: 40px; }
body.lp2 .csv-link { display: inline-flex; align-items: center; gap: 8px; color: var(--green); font-size: 13px; font-weight: 700; text-decoration: none; }
body.lp2 .csv-link:hover { text-decoration: underline; }
body.lp2 .pagination { display: flex; gap: 8px; justify-content: center; margin-top: 24px; flex-wrap: wrap; }
body.lp2 .pagination button {
  min-width: 38px; height: 38px; border-radius: 999px; border: none; background: var(--btn);
  color: var(--text-2); font-weight: 700; font-size: 13px; font-family: inherit; cursor: pointer;
}
body.lp2 .pagination button.active { background: var(--green); color: #000; }
body.lp2 .pagination button:disabled { opacity: 0.4; cursor: default; }
body.lp2 .pagination button:hover:not(:disabled):not(.active) { background: var(--btn-hover); }

body.lp2 .setting-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--line); flex-wrap: wrap; }
body.lp2 .setting-row:last-child { border-bottom: none; }
body.lp2 .setting-row-inner { flex: 1; min-width: 200px; }
body.lp2 .setting-row strong { font-size: 15px; font-weight: 800; display: block; margin-bottom: 4px; }
body.lp2 .setting-row span { font-size: 12px; color: var(--text-dim); }

body.lp2 .user-info { display: flex; align-items: center; gap: 12px; }
body.lp2 .user-info img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
body.lp2 .uname { font-weight: 800; font-size: 14px; display: block; }
body.lp2 .urole { font-size: 11px; color: var(--text-dim); }
body.lp2 .uid { font-size: 11px; color: var(--text-muted); font-family: monospace; }

body.lp2 .stats-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px; margin-bottom: 28px; }
body.lp2 .stat-card { background: var(--panel); border-radius: 20px; padding: 22px 24px; }
body.lp2 .stat-card .stat-num, body.lp2 .stat-card b { font-size: 30px; font-weight: 900; letter-spacing: -1.5px; display: block; }
body.lp2 .stat-card .stat-label, body.lp2 .stat-card span { font-size: 11px; color: var(--text-dim); font-weight: 700; margin-top: 6px; display: block; }

body.lp2 .stat-tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px; margin-bottom: 28px; }
body.lp2 .stat-tile {
  background: var(--panel); border-radius: 20px; padding: 22px 24px; position: relative;
  display: flex; flex-direction: column; gap: 8px;
}
body.lp2 .stat-tile__value { font-size: 30px; font-weight: 900; letter-spacing: -1.5px; color: var(--text); }
body.lp2 .stat-tile__label { font-size: 11px; color: var(--text-dim); font-weight: 700; }
body.lp2 .stat-tile__icon { position: absolute; top: 20px; right: 22px; font-size: 18px; opacity: 0.25; }
body.lp2 .stat-tile--premium .stat-tile__value { color: var(--green); }
body.lp2 .stat-tile--banned .stat-tile__value { color: var(--red); }
body.lp2 .stat-tile--bot .stat-tile__value { color: #60a5fa; }
body.lp2 .stat-tile--trusted .stat-tile__value { color: #2dd4bf; }
body.lp2 .stat-tile--status .stat-tile__value { color: #a78bfa; }
body.lp2 .stat-tile--exp .stat-tile__value { color: #fb923c; }
body.lp2 .stat-tile--prefix .stat-tile__value::before { content: "-"; }

body.lp2 .status-pill { font-size: 11px; font-weight: 800; padding: 5px 12px; border-radius: 999px; text-transform: uppercase; letter-spacing: 0.05em; }
body.lp2 .status-pill.open, body.lp2 .status-pill.pending { background: rgba(255,221,45,0.16); color: var(--green); }
body.lp2 .status-pill.in_progress { background: rgba(96,165,250,0.16); color: #60a5fa; }
body.lp2 .status-pill.closed, body.lp2 .status-pill.rejected { background: rgba(139,139,139,0.18); color: var(--text-dim); }
body.lp2 .status-pill.approved { background: rgba(255,221,45,0.16); color: var(--green); }
body.lp2 .status-pill.banned { background: rgba(255,80,80,0.16); color: var(--red); }
body.lp2 .status-pill.trusted { background: rgba(45,212,191,0.16); color: #2dd4bf; }

body.lp2 .ticket-list { display: flex; flex-direction: column; gap: 12px; }
body.lp2 .ticket-row { background: var(--panel); border-radius: 20px; padding: 18px 22px; cursor: pointer; transition: background .2s; }
body.lp2 .ticket-row:hover { background: var(--panel-hover); }
body.lp2 .ticket-row .ticket-icon { font-size: 22px; }
body.lp2 .ticket-row .ticket-user-name { font-weight: 800; font-size: 15px; }
body.lp2 .ticket-row .ticket-uuid { font-size: 11px; color: var(--text-muted); font-family: monospace; }
body.lp2 .ticket-row .ticket-cat-date { font-size: 12px; color: var(--text-dim); margin-top: 4px; }
body.lp2 .ticket-body { padding: 14px 0 0; font-size: 14px; color: var(--text-2); line-height: 1.6; }

body.lp2 .sup-tabs { gap: 20px; overflow-x: auto; }
body.lp2 .sup-tab { font-size: 13px; }

body.lp2 .modal { display: none; position: fixed; inset: 0; z-index: 2000; background: rgba(0,0,0,0.72); backdrop-filter: blur(6px); align-items: center; justify-content: center; padding: 20px; }
body.lp2 .modal.open { display: flex; }
body.lp2 .modal .modal-body { background: var(--panel); border-radius: 24px; padding: 28px; max-width: 480px; width: 100%; }
body.lp2 .modal .modal-body h3 { font-size: 19px; font-weight: 900; letter-spacing: -0.5px; margin: 0 0 16px; }
body.lp2 .modal-actions { display: flex; gap: 10px; justify-content: flex-end; margin-top: 24px; flex-wrap: wrap; }

body.lp2 .steps { display: flex; flex-direction: column; gap: 0; margin: 8px 0 28px; }
body.lp2 .steps-title { font-size: 18px; font-weight: 900; letter-spacing: -0.5px; margin-bottom: 20px; }
body.lp2 .step { display: flex; gap: 18px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid var(--line); }
body.lp2 .step:last-child { border-bottom: none; }
body.lp2 .step-num {
  width: 40px; height: 40px; flex: 0 0 auto; border-radius: 999px; background: rgba(255,221,45,0.14);
  color: var(--green); font-weight: 900; font-size: 15px; display: flex; align-items: center; justify-content: center;
}
body.lp2 .step-text { font-size: 14px; line-height: 1.6; color: var(--text-2); padding-top: 6px; }

body.lp2 .connect-card { background: var(--panel); border-radius: 24px; padding: 36px; }
body.lp2 .connect-title { font-size: clamp(28px, 4vw, 40px); font-weight: 900; letter-spacing: -2px; margin: 0 0 8px; }
body.lp2 .connect-desc { font-size: 14px; color: var(--text-dim); margin: 0 0 28px; }

body.lp2 .hero { position: relative; padding: 60px 0 20px; }
body.lp2 .hero-lp2 { display: flex; gap: 48px; align-items: center; justify-content: space-between; flex-wrap: wrap; }
body.lp2 .hero-lp2-left { flex: 1; min-width: 300px; }
body.lp2 .hero-lp2-glow { position: absolute; width: 480px; height: 480px; border-radius: 50%; background: radial-gradient(circle, rgba(255,221,45,0.13) 0%, transparent 70%); top: -100px; right: -80px; pointer-events: none; }
body.lp2 .hero-lp2-dot { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); margin-bottom: 20px; }
body.lp2 .hero-lp2-dot::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 12px var(--green); }
body.lp2 .hero-lp2-note { font-size: 13px; color: var(--text-dim); margin-top: 24px; max-width: 480px; line-height: 1.7; }
body.lp2 .hero-card-wrap { flex: 0 0 auto; }
body.lp2 .hero-card {
  position: relative; width: 300px; background: linear-gradient(160deg, #1d1d1b 0%, #101010 100%);
  border-radius: 24px; padding: 26px; border: 1px solid #262626; overflow: hidden;
}
body.lp2.light .hero-card { background: linear-gradient(160deg, #ffffff 0%, #f0f0ee 100%); }
body.lp2 .hero-card-pulse { position: absolute; top: -60px; right: -60px; width: 200px; height: 200px; border-radius: 50%; background: radial-gradient(circle, rgba(255,221,45,0.2) 0%, transparent 70%); animation: pulse 3s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.15); opacity: 0.7; } }
body.lp2 .hero-card-head { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
body.lp2 .hero-card-logo { width: 52px; height: 52px; border-radius: 16px; overflow: hidden; border: 1px solid #333; }
body.lp2 .hero-card-logo img { width: 100%; height: 100%; object-fit: cover; }
body.lp2 .hero-card-name { font-weight: 900; font-size: 17px; letter-spacing: -0.5px; }
body.lp2 .hero-card-status { font-size: 11px; font-weight: 800; color: var(--green); text-transform: uppercase; letter-spacing: 0.1em; display: flex; align-items: center; gap: 6px; }
body.lp2 .hero-card-status::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
body.lp2 .hero-card-title { font-size: 22px; font-weight: 900; letter-spacing: -1px; line-height: 1.25; margin-bottom: 16px; }
body.lp2 .hero-card-rows { display: grid; gap: 10px; }
body.lp2 .hero-card-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid #232323; font-size: 12px; }
body.lp2 .hero-card-row:last-child { border-bottom: none; }
body.lp2 .hero-card-row span:first-child { color: var(--text-dim); }
body.lp2 .hero-card-row span:last-child { font-weight: 800; color: var(--text); }
body.lp2 .hero-card-row .badge { font-size: 10px; padding: 4px 10px; }
body.lp2 .hero-card-chip { margin-top: 20px; background: rgba(255,221,45,0.1); border: 1px solid rgba(255,221,45,0.25); color: var(--green); border-radius: 14px; padding: 12px 16px; font-size: 12px; font-weight: 800; }
body.lp2 .hero-card-foot { margin-top: 16px; text-align: center; font-size: 11px; color: var(--text-muted); }

body.lp2 .lp2-sec { padding: 56px 0 8px; }
body.lp2 .lp2-head { max-width: 560px; margin-bottom: 36px; }
body.lp2 .lp2-label { font-size: 11px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 12px; display: block; }
body.lp2 .lp2-title { font-size: clamp(26px, 3.5vw, 38px); font-weight: 900; letter-spacing: -2px; margin: 0 0 12px; }
body.lp2 .lp2-desc { font-size: 15px; color: var(--text-dim); line-height: 1.7; margin: 0; }
body.lp2 .lp2-stats { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
body.lp2 .lp2-stat { background: var(--panel); border-radius: 18px; padding: 20px 26px; min-width: 130px; }
body.lp2 .lp2-stat-num { font-size: 32px; font-weight: 900; letter-spacing: -2px; color: var(--green); }
body.lp2 .lp2-stat-label { font-size: 11px; color: var(--text-dim); font-weight: 700; margin-top: 4px; text-transform: uppercase; letter-spacing: 0.08em; }
body.lp2 .lp2-stat-sub { font-size: 11px; color: var(--text-muted); margin-top: 4px; }
body.lp2 .lp2-features { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 14px; }
body.lp2 .lp2-feature { background: var(--panel); border-radius: 20px; padding: 24px; transition: background .2s; }
body.lp2 .lp2-feature:hover { background: var(--panel-hover); }
body.lp2 .lp2-feature-icon { font-size: 22px; margin-bottom: 14px; }
body.lp2 .lp2-feature-title { font-size: 16px; font-weight: 800; margin-bottom: 6px; }
body.lp2 .lp2-feature-desc { font-size: 13px; color: var(--text-dim); line-height: 1.6; }
body.lp2 .lp2-changelog { display: grid; gap: 10px; }
body.lp2 .lp2-cl-item { display: flex; gap: 16px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid var(--line); }
body.lp2 .lp2-cl-item:last-child { border-bottom: none; }
body.lp2 .lp2-cl-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--green); margin-top: 6px; flex: 0 0 auto; }
body.lp2 .lp2-cl-text { font-size: 14px; color: var(--text-2); line-height: 1.6; }
body.lp2 .lp2-news { background: var(--panel); border-radius: 20px; padding: 22px 26px; }
body.lp2 .lp2-news-badge { font-size: 11px; font-weight: 800; padding: 4px 12px; border-radius: 999px; background: rgba(255,221,45,0.16); color: var(--green); margin-bottom: 10px; display: inline-block; }
body.lp2 .lp2-news-title { font-size: 17px; font-weight: 800; margin-bottom: 6px; }
body.lp2 .lp2-news-text { font-size: 13px; color: var(--text-dim); line-height: 1.6; }
body.lp2 .lp2-plans { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 14px; }
body.lp2 .lp2-plans-body { background: var(--panel); border-radius: 24px; padding: 28px; }
body.lp2 .lp2-plans-title { font-size: 20px; font-weight: 900; letter-spacing: -0.5px; margin-bottom: 8px; }
body.lp2 .lp2-plans-year { font-size: 11px; color: var(--text-dim); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; }
body.lp2 .lp2-plans-desc { font-size: 13px; color: var(--text-dim); line-height: 1.7; }
body.lp2 .lp2-cta { text-align: center; padding: 56px 0; }
body.lp2 .lp2-cta-title { font-size: clamp(26px, 4vw, 40px); font-weight: 900; letter-spacing: -2.5px; margin-bottom: 12px; }
body.lp2 .lp2-cta-sub { font-size: 14px; color: var(--text-dim); margin-bottom: 28px; }
body.lp2 .lp2-cta-glow { box-shadow: 0 0 40px rgba(255,221,45,0.3); font-size: 15px; padding: 16px 36px; width: auto; }
body.lp2 .lp2-cta-inner a { text-decoration: none; color: inherit; }
body.lp2 .tag-pill { font-size: 11px; font-weight: 800; padding: 5px 12px; border-radius: 999px; background: var(--btn); color: var(--text-2); }

body.lp2 .cmd-page { }
body.lp2 .cmd-hero { padding: 24px 0 8px; }
body.lp2 .cmd-hero-badge { font-size: 11px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green); margin-bottom: 14px; display: block; }
body.lp2 .cmd-page h1 { font-size: clamp(30px, 4vw, 44px); font-weight: 900; letter-spacing: -2.5px; margin: 0 0 10px; }
body.lp2 .cmd-desc { font-size: 14px; color: var(--text-dim); margin: 0 0 32px; max-width: 520px; line-height: 1.7; }
body.lp2 .cmd-stats-grid { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
body.lp2 .cmd-stat-card { background: var(--panel); border-radius: 18px; padding: 18px 24px; }
body.lp2 .cmd-stat-card b { font-size: 26px; font-weight: 900; letter-spacing: -1px; color: var(--green); display: block; }
body.lp2 .cmd-stat-card span { font-size: 11px; color: var(--text-dim); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
body.lp2 .cmd-search-wrap { position: relative; max-width: 420px; margin-bottom: 32px; }
body.lp2 .cmd-search-wrap input {
  width: 100%; background: var(--panel); border: 1px solid var(--border-2); border-radius: 999px;
  padding: 13px 44px 13px 20px; color: var(--text); font-size: 14px; font-family: inherit; outline: none;
}
body.lp2 .cmd-search-wrap input:focus { border-color: var(--green); }
body.lp2 .cmd-search-wrap svg { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; color: var(--text-dim); }
body.lp2 .cmd-cats { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 36px; }
body.lp2 .cmd-cat-btn { background: var(--btn); color: var(--text-dim); border: none; border-radius: 999px; padding: 9px 18px; font-size: 12px; font-weight: 700; font-family: inherit; cursor: pointer; transition: all .2s; }
body.lp2 .cmd-cat-btn:hover { color: var(--text); background: var(--btn-hover); }
body.lp2 .cmd-cat-btn.active { background: var(--green); color: #000; }
body.lp2 .cmd-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 14px; }
body.lp2 .cmd-group { background: var(--panel); border-radius: 24px; padding: 26px; }
body.lp2 .cmd-group-head { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
body.lp2 .cmd-group-icon { font-size: 20px; }
body.lp2 .cmd-group-title { font-size: 17px; font-weight: 900; letter-spacing: -0.5px; }
body.lp2 .cmd-group-num { font-size: 11px; font-weight: 800; padding: 4px 11px; border-radius: 999px; background: rgba(255,221,45,0.14); color: var(--green); }
body.lp2 .cmd-card { padding: 14px 0; border-top: 1px solid var(--line); }
body.lp2 .cmd-card:first-of-type { border-top: none; }
body.lp2 .cmd-card-body { display: flex; gap: 12px; align-items: center; }
body.lp2 .cmd-card-icon { font-size: 16px; width: 22px; text-align: center; flex: 0 0 auto; }
body.lp2 .cmd-card-name { font-weight: 800; font-size: 14px; }
body.lp2 .cmd-card-tag { font-size: 10px; font-weight: 800; padding: 3px 9px; border-radius: 999px; background: var(--btn); color: var(--text-dim); margin-left: 6px; vertical-align: 2px; }
body.lp2 .cmd-card-desc { font-size: 12px; color: var(--text-dim); margin-top: 4px; line-height: 1.55; }
body.lp2 .cmd-card-args { font-size: 11px; color: var(--text-muted); margin-top: 6px; }
body.lp2 .cmd-card-copy { background: none; border: none; color: var(--text-dim); cursor: pointer; font-size: 13px; padding: 4px 8px; border-radius: 8px; margin-left: auto; flex: 0 0 auto; }
body.lp2 .cmd-card-copy:hover { color: var(--green); background: rgba(255,221,45,0.1); }
body.lp2 .cmd-card-alt { background: rgba(255,221,45,0.06); border: 1px solid rgba(255,221,45,0.15); border-radius: 16px; }
body.lp2 .cmd-empty { text-align: center; padding: 64px 20px; }
body.lp2 .cmd-empty-icon { font-size: 36px; margin-bottom: 14px; }
body.lp2 .cmd-empty-title { font-size: 18px; font-weight: 900; margin-bottom: 6px; }
body.lp2 .cmd-empty-sub { font-size: 13px; color: var(--text-dim); }

body.lp2 .profile-page { max-width: 760px; }
body.lp2 .pr-header { display: flex; align-items: center; gap: 22px; padding: 28px 0 32px; border-bottom: 1px solid var(--line); margin-bottom: 28px; flex-wrap: wrap; }
body.lp2 .pr-cover { position: relative; width: 120px; height: 120px; flex: 0 0 auto; }
body.lp2 .pr-avatar { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; border: 4px solid var(--green); }
body.lp2 .pr-cover-overlay { position: absolute; bottom: 4px; right: 4px; width: 34px; height: 34px; border-radius: 50%; background: var(--btn); display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--text); }
body.lp2 .pr-cover-overlay svg { width: 15px; height: 15px; }
body.lp2 .pr-name-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
body.lp2 .pr-name { font-size: clamp(24px, 3vw, 32px); font-weight: 900; letter-spacing: -1.5px; margin: 0; }
body.lp2 .pr-verified { font-size: 18px; }
body.lp2 .pr-id { font-size: 13px; color: var(--text-dim); margin-top: 4px; }
body.lp2 .pr-status { font-size: 11px; font-weight: 800; padding: 5px 12px; border-radius: 999px; text-transform: uppercase; letter-spacing: 0.06em; }
body.lp2 .pr-status.owner { background: rgba(255,221,45,0.16); color: var(--green); }
body.lp2 .pr-status.admin { background: rgba(96,165,250,0.16); color: #60a5fa; }
body.lp2 .pr-status.moderator { background: rgba(167,139,250,0.16); color: #a78bfa; }
body.lp2 .pr-status.developer { background: rgba(255,80,80,0.16); color: var(--red); }
body.lp2 .pr-status.user { background: var(--btn); color: var(--text-dim); }
body.lp2 .pr-online { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--text-dim); font-weight: 700; }
body.lp2 .pr-online-dot { width: 8px; height: 8px; border-radius: 50%; background: #2dd4bf; box-shadow: 0 0 10px #2dd4bf; }
body.lp2 .pr-stars { display: flex; gap: 2px; font-size: 16px; margin-top: 8px; }
body.lp2 .pr-bio { font-size: 14px; color: var(--text-2); line-height: 1.7; margin: 16px 0 0; }
body.lp2 .pr-section { margin-bottom: 28px; }
body.lp2 .pr-section-label { font-size: 11px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 16px; display: block; }
body.lp2 .pr-field { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line); flex-wrap: wrap; }
body.lp2 .pr-field strong { font-size: 15px; font-weight: 800; }
body.lp2 .pr-field-hint { font-size: 12px; color: var(--text-dim); margin-top: 3px; }
body.lp2 .pr-toggle { position: relative; width: 52px; height: 28px; cursor: pointer; flex: 0 0 auto; }
body.lp2 .pr-toggle input { opacity: 0; width: 0; height: 0; }
body.lp2 .pr-toggle-slider { position: absolute; inset: 0; border-radius: 999px; background: var(--btn); transition: background .25s; }
body.lp2 .pr-toggle-slider::before { content: ""; position: absolute; width: 22px; height: 22px; border-radius: 50%; left: 3px; top: 3px; background: #fff; transition: transform .25s; }
body.lp2 .pr-toggle input:checked + .pr-toggle-slider { background: var(--green); }
body.lp2 .pr-toggle input:checked + .pr-toggle-slider::before { transform: translateX(24px); }
body.lp2 .pr-action-btn { background: var(--btn); color: var(--text); border: none; border-radius: 999px; padding: 10px 20px; font-size: 13px; font-weight: 800; font-family: inherit; cursor: pointer; transition: background .2s; }
body.lp2 .pr-action-btn:hover { background: var(--btn-hover); }
body.lp2 .pr-action-btn.danger { background: rgba(255,80,80,0.14); color: var(--red); }
body.lp2 .pr-action-btn.danger:hover { background: rgba(255,80,80,0.24); }
body.lp2 .pr-edit-form { background: var(--panel); border-radius: 20px; padding: 24px; }
body.lp2 .pr-gifts-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 12px; }
body.lp2 .pr-gift-card { background: var(--panel); border-radius: 20px; padding: 22px; }
body.lp2 .pr-gift-emoji { font-size: 26px; margin-bottom: 10px; }
body.lp2 .pr-gift-name { font-weight: 800; font-size: 15px; margin-bottom: 4px; }
body.lp2 .pr-gift-sender { font-size: 12px; color: var(--text-dim); margin-bottom: 4px; }
body.lp2 .pr-gift-date { font-size: 11px; color: var(--text-muted); }
body.lp2 .pr-gift-price { font-size: 12px; font-weight: 800; color: var(--green); margin-top: 8px; }
body.lp2 .pr-gift-catalog { display: grid; gap: 10px; }
body.lp2 .pr-empty { text-align: center; padding: 48px 0; color: var(--text-dim); font-size: 14px; }

body.lp2 .dev-page { max-width: 980px; }
body.lp2 .dev-header { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 12px 0 28px; border-bottom: 1px solid var(--line); margin-bottom: 28px; flex-wrap: wrap; }
body.lp2 .dev-header h1 { font-size: 26px; font-weight: 900; letter-spacing: -1.5px; margin: 0 0 6px; }
body.lp2 .dev-header p { font-size: 13px; color: var(--text-dim); margin: 0; }
body.lp2 .dev-section { margin-bottom: 32px; }
body.lp2 .dev-section h3 { font-size: 16px; font-weight: 900; letter-spacing: -0.5px; margin: 0 0 16px; }
body.lp2 .dev-user-search { display: flex; gap: 10px; align-items: center; background: var(--panel); border: 1px solid var(--border-2); border-radius: 999px; padding: 8px 10px 8px 18px; max-width: 420px; }
body.lp2 .dev-user-search svg { width: 15px; height: 15px; color: var(--text-dim); flex: 0 0 auto; }
body.lp2 .dev-user-search input { flex: 1; background: none; border: none; outline: none; color: var(--text); font-size: 14px; font-family: inherit; }
body.lp2 .dev-user-search input::placeholder { color: var(--text-muted); }
body.lp2 .dev-user-search button { background: var(--green); color: #000; border: none; border-radius: 999px; padding: 9px 20px; font-size: 12px; font-weight: 800; font-family: inherit; cursor: pointer; }
body.lp2 .dev-selected-user { display: flex; align-items: center; gap: 14px; background: var(--panel); border-radius: 20px; padding: 20px 24px; margin: 14px 0; flex-wrap: wrap; }
body.lp2 .dsu-avatar { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; border: 3px solid var(--green); }
body.lp2 .dsu-info { flex: 1; min-width: 160px; }
body.lp2 .dsu-name { font-weight: 800; font-size: 16px; }
body.lp2 .dsu-id { font-size: 12px; color: var(--text-dim); margin-top: 2px; font-family: monospace; }
body.lp2 .dsu-remove { background: none; border: none; color: var(--text-dim); font-size: 18px; cursor: pointer; }
body.lp2 .dsu-remove:hover { color: var(--red); }
body.lp2 .dev-user-dropdown { position: absolute; top: 100%; left: 0; right: 0; z-index: 50; background: var(--panel); border: 1px solid var(--border-2); border-radius: 16px; margin-top: 6px; max-height: 300px; overflow-y: auto; }
body.lp2 .dev-user-item { display: flex; align-items: center; gap: 10px; padding: 12px 16px; cursor: pointer; }
body.lp2 .dev-user-item:hover { background: var(--btn); }
body.lp2 .dev-user-item img { width: 34px; height: 34px; border-radius: 50%; }
body.lp2 .dev-categories { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
body.lp2 .dev-cat-btn { background: var(--btn); color: var(--text-dim); border: none; border-radius: 999px; padding: 9px 18px; font-size: 12px; font-weight: 700; font-family: inherit; cursor: pointer; }
body.lp2 .dev-cat-btn.active { background: var(--green); color: #000; }
body.lp2 .dev-cmd { display: flex; align-items: center; gap: 14px; background: var(--panel); border-radius: 16px; padding: 16px 20px; margin-bottom: 10px; flex-wrap: wrap; }
body.lp2 .dev-cmd code { background: var(--btn); border-radius: 10px; padding: 8px 14px; font-size: 13px; font-family: monospace; color: var(--green); }
body.lp2 .dev-cmd button { background: var(--btn); color: var(--text); border: none; border-radius: 999px; padding: 9px 18px; font-size: 12px; font-weight: 800; font-family: inherit; cursor: pointer; margin-left: auto; }
body.lp2 .dev-cmd button:hover { background: var(--btn-hover); }
body.lp2 .dev-args { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 10px; }
body.lp2 .dev-args input { background: var(--panel); border: 1px solid var(--border-2); border-radius: 12px; padding: 11px 14px; color: var(--text); font-size: 13px; font-family: inherit; outline: none; }
body.lp2 .dev-args input:focus { border-color: var(--green); }
body.lp2 .dev-commands { display: grid; grid-template-columns: repeat(auto-fill, minmax(420px, 1fr)); gap: 14px; }
body.lp2 .dev-console { background: #0d0d0d; border: 1px solid #242424; border-radius: 20px; padding: 20px; font-family: monospace; font-size: 12px; color: var(--text-2); max-height: 320px; overflow-y: auto; white-space: pre-wrap; }
body.lp2.light .dev-console { background: #fff; }
body.lp2 .dev-console-btns { display: flex; gap: 10px; margin-top: 14px; }
body.lp2 .dev-console-btns button { background: var(--btn); color: var(--text); border: none; border-radius: 999px; padding: 10px 20px; font-size: 12px; font-weight: 800; font-family: inherit; cursor: pointer; }
body.lp2 .dev-send { background: var(--green); color: #000; }
body.lp2 .dev-history-list { display: flex; flex-direction: column; gap: 10px; }
body.lp2 .dev-history-item { display: flex; justify-content: space-between; gap: 12px; background: var(--panel); border-radius: 14px; padding: 14px 18px; font-size: 13px; }
body.lp2 .dev-history-item .dh-cmd { font-family: monospace; color: var(--green); }
body.lp2 .dev-history-item .dh-time { color: var(--text-muted); font-size: 12px; }
body.lp2 .dev-history-empty { text-align: center; color: var(--text-dim); padding: 32px 0; }
body.lp2 .dev-modal-overlay { position: fixed; inset: 0; z-index: 2000; background: rgba(0,0,0,0.72); backdrop-filter: blur(6px); display: none; align-items: center; justify-content: center; padding: 20px; }
body.lp2 .dev-modal-overlay.open { display: flex; }
body.lp2 .dev-modal { background: var(--panel); border-radius: 24px; padding: 28px; max-width: 480px; width: 100%; }
body.lp2 .dev-modal h3 { font-size: 19px; font-weight: 900; letter-spacing: -0.5px; margin: 0 0 12px; }
body.lp2 .dev-modal p { font-size: 13px; color: var(--text-dim); margin: 0 0 20px; line-height: 1.6; }
body.lp2 .dev-modal-btns { display: flex; gap: 10px; justify-content: flex-end; }
body.lp2 .dev-modal-btns button { border: none; border-radius: 999px; padding: 11px 22px; font-size: 13px; font-weight: 800; font-family: inherit; cursor: pointer; }
body.lp2 .dev-cancel { background: var(--btn); color: var(--text); }

body.lp2 .deny-msg { text-align: center; padding: 60px 20px; }
body.lp2 .deny-msg h2 { font-size: 24px; font-weight: 900; letter-spacing: -1px; margin: 0 0 10px; }
body.lp2 .deny-msg p { font-size: 13px; color: var(--text-dim); margin: 0 0 24px; }
body.lp2 .owner-page .page { padding-top: 100px; }
body.lp2 .rp { display: none; }
body.lp2 .result { font-size: 13px; color: var(--text-dim); margin-top: 12px; }

@media (max-width: 640px) {
  body.lp2 .cmd-grid, body.lp2 .dev-commands { grid-template-columns: 1fr; }
  body.lp2 .hero-lp2 { gap: 32px; }
  body.lp2 .hero-card-wrap { width: 100%; }
  body.lp2 .hero-card { width: 100%; }
  body.lp2 .connect-card { padding: 24px; }
  body.lp2 .glass-panel { padding: 22px; }
  body.lp2 .data-table { display: block; overflow-x: auto; }
}

body.lp2 .hint { font-size: 12px; color: var(--text-dim); margin-top: 6px; }
body.lp2 .num { font-size: 13px; font-weight: 800; color: var(--green); }
body.lp2 .slash { color: var(--text-muted); padding: 0 4px; }
body.lp2 .mod-only { display: none; }
body.lp2.is-moderator .mod-only, body.lp2.is-mod .mod-only { display: inline-flex; }
body.lp2 .tk-mnav .mod-only { display: none; }
body.lp2.is-moderator .tk-mnav .mod-only, body.lp2.is-mod .tk-mnav .mod-only { display: flex; }
body.lp2 .tm-label { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-dim); margin-bottom: 4px; display: block; }
body.lp2 .tm-text { font-size: 13px; color: var(--text-2); line-height: 1.6; }
body.lp2 .tm-time { font-size: 11px; color: var(--text-muted); margin-top: 6px; display: block; }
body.lp2 .dev-page { padding-top: 96px; }
body.lp2.owner-page .dev-page { padding-top: 96px; }
body.lp2 .page { padding: 96px 40px 40px; }
@media (max-width: 900px) {
  body.lp2 .page { padding: 88px 20px 40px; }
}
body.lp2 .btn {
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  background:var(--green); color:#000; border:none; border-radius:999px;
  padding:13px 26px; font-size:13px; font-weight:800; font-family:inherit;
  cursor:pointer; transition:background .2s, box-shadow .2s, border-color .2s;
  text-decoration:none; width:auto; line-height:1.2;
}
body.lp2 .btn:hover { background:var(--green-hover); }
body.lp2 .btn:disabled { opacity:0.5; cursor:default; }
body.lp2 .btn svg { width:16px; height:16px; flex:0 0 auto; }
body.lp2 .btn-sm { padding:9px 18px; font-size:12px; }
body.lp2 .btn-block { width:100%; }
body.lp2 .btn-outline { background:var(--btn); color:var(--text); }
body.lp2 .btn-outline:hover { background:var(--btn-hover); }
body.lp2 .btn-green { background:var(--green); color:#000; }
body.lp2 .btn-green:hover { background:var(--green-hover); }
body.lp2 .btn-red { background:rgba(255,80,80,0.16); color:var(--red); }
body.lp2 .btn-red:hover { background:rgba(255,80,80,0.26); }
body.lp2 .btn-yellow { background:var(--green); color:#000; }
body.lp2 .btn-yellow:hover { background:var(--green-hover); }
body.lp2 .btn-purple { background:#7c5cff; color:#fff; }
body.lp2 .btn-purple:hover { background:#8f74ff; }
body.lp2 .btn-blue { background:#60a5fa; color:#fff; }
body.lp2 .btn-blue:hover { background:#7cb3fb; }
body.lp2 .btn-clear { background:transparent; border:1px solid var(--border-2); color:var(--text-2); }
body.lp2 .btn-clear:hover { border-color:var(--text-dim); color:var(--text); }
body.lp2 .btn-glow { background:var(--green); color:#000; box-shadow:0 0 30px rgba(255,221,45,0.35); }
body.lp2 .btn-glow:hover { background:var(--green-hover); box-shadow:0 0 40px rgba(255,221,45,0.5); }
body.lp2 .btn-confirm { background:var(--green); color:#000; }
body.lp2 .btn-confirm:hover { background:var(--green-hover); }
body.lp2 .btn-cancel { background:var(--btn); color:var(--text); }
body.lp2 .btn-cancel:hover { background:var(--btn-hover); }
body.lp2 .btn-execute { background:var(--green); color:#000; }
body.lp2 .btn-execute:hover { background:var(--green-hover); }
body.lp2 .btn-outline {
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:13px 26px; border-radius:999px; width:auto; font-weight:800;
  cursor:pointer; font-family:inherit; line-height:1.2;
}
body.lp2 .btn-outline:hover { background:var(--btn-hover); }
body.lp2 .btn-sm { display:inline-flex; align-items:center; justify-content:center; gap:6px; }
body.lp2 .btn-cancel, body.lp2 .btn-confirm, body.lp2 .btn-green, body.lp2 .btn-red,
body.lp2 .btn-yellow, body.lp2 .btn-purple, body.lp2 .btn-blue, body.lp2 .btn-execute {
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  border-radius:999px; padding:13px 26px; font-size:13px; font-weight:800;
  cursor:pointer; font-family:inherit; line-height:1.2; width:auto;
  transition:background .2s, box-shadow .2s;
}
