3697 lines
88 KiB
CSS
3697 lines
88 KiB
CSS
/* =========================================================
|
|
MoonWell — Night Elf themed landing
|
|
Two moods controllable via Tweaks: "forest" (cozy/warm) & "temple" (arcane/modern)
|
|
========================================================= */
|
|
|
|
:root {
|
|
/* base night palette */
|
|
--bg-0: #070a18;
|
|
--bg-1: #0a0d1f;
|
|
--bg-2: #10142a;
|
|
--bg-3: #1a1f3a;
|
|
--panel: rgba(20, 25, 48, 0.55);
|
|
--panel-border: rgba(127, 184, 212, 0.14);
|
|
--panel-border-strong: rgba(127, 184, 212, 0.28);
|
|
|
|
/* accents */
|
|
--arcane: #5b3a8a;
|
|
--arcane-2: #8a5cc8;
|
|
--moon: #7fb8d4;
|
|
--moon-2: #c8e6ff;
|
|
--ivory: #e8dcc0;
|
|
--ivory-dim: #b9ad92;
|
|
|
|
/* text */
|
|
--text: #e8dcc0;
|
|
--text-soft: #c6bfae;
|
|
--text-mute: #8a8672;
|
|
--text-dim: #5d5a4d;
|
|
|
|
/* type */
|
|
--f-display: "Cinzel", "Cormorant Garamond", "Times New Roman", serif;
|
|
--f-serif: "Cormorant Garamond", "Times New Roman", serif;
|
|
--f-sans: "Inter", -apple-system, system-ui, sans-serif;
|
|
--f-mono: "JetBrains Mono", ui-monospace, monospace;
|
|
|
|
/* geometry */
|
|
--radius: 2px;
|
|
--radius-lg: 6px;
|
|
--maxw: 1240px;
|
|
--pad: clamp(20px, 4vw, 48px);
|
|
|
|
/* transitions */
|
|
--t-fast: 180ms cubic-bezier(.2,.7,.3,1);
|
|
--t-med: 420ms cubic-bezier(.2,.7,.3,1);
|
|
}
|
|
|
|
/* Temple variant — cooler, more monumental, slightly more arcane/purple */
|
|
body[data-variant="temple"] {
|
|
--bg-0: #0a0718;
|
|
--bg-1: #120a28;
|
|
--bg-2: #1a0f38;
|
|
--bg-3: #241a4a;
|
|
--arcane: #7a4cbb;
|
|
--arcane-2: #b088ee;
|
|
--moon: #a8c8e0;
|
|
--moon-2: #e0ecff;
|
|
--ivory: #ede4c8;
|
|
--panel-border: rgba(176, 136, 238, 0.18);
|
|
--panel-border-strong: rgba(176, 136, 238, 0.32);
|
|
}
|
|
|
|
/* ------------------------- reset / base ------------------------- */
|
|
*,*::before,*::after { box-sizing: border-box; }
|
|
html, body { margin: 0; padding: 0; }
|
|
html { scroll-behavior: smooth; }
|
|
|
|
body {
|
|
background: var(--bg-0);
|
|
color: var(--text);
|
|
font-family: var(--f-sans);
|
|
font-size: 16px;
|
|
line-height: 1.6;
|
|
overflow-x: hidden;
|
|
min-height: 100vh;
|
|
position: relative;
|
|
-webkit-font-smoothing: antialiased;
|
|
text-rendering: optimizeLegibility;
|
|
}
|
|
|
|
a { color: inherit; text-decoration: none; }
|
|
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
|
|
img { max-width: 100%; display: block; }
|
|
|
|
::selection { background: color-mix(in oklab, var(--arcane-2) 40%, transparent); color: var(--ivory); }
|
|
|
|
/* ------------------------- layout helpers ------------------------- */
|
|
.wrap {
|
|
max-width: var(--maxw);
|
|
margin: 0 auto;
|
|
padding-left: var(--pad);
|
|
padding-right: var(--pad);
|
|
position: relative;
|
|
}
|
|
|
|
.eyebrow {
|
|
font-family: var(--f-mono);
|
|
font-size: 11px;
|
|
letter-spacing: 0.22em;
|
|
text-transform: uppercase;
|
|
color: var(--moon);
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
}
|
|
.eyebrow::before {
|
|
content: "";
|
|
width: 24px;
|
|
height: 1px;
|
|
background: currentColor;
|
|
opacity: 0.6;
|
|
}
|
|
|
|
.h-display {
|
|
font-family: var(--f-display);
|
|
font-weight: 500;
|
|
letter-spacing: 0.02em;
|
|
color: var(--ivory);
|
|
line-height: 1.05;
|
|
margin: 0;
|
|
}
|
|
|
|
.h-serif {
|
|
font-family: var(--f-serif);
|
|
font-weight: 400;
|
|
color: var(--ivory);
|
|
line-height: 1.15;
|
|
margin: 0;
|
|
}
|
|
|
|
.lead {
|
|
font-family: var(--f-serif);
|
|
font-weight: 400;
|
|
font-size: clamp(18px, 1.4vw, 22px);
|
|
line-height: 1.55;
|
|
color: var(--text-soft);
|
|
font-style: italic;
|
|
}
|
|
|
|
/* ------------------------- background atmosphere ------------------------- */
|
|
.bg {
|
|
position: fixed;
|
|
inset: 0;
|
|
z-index: -1;
|
|
overflow: hidden;
|
|
pointer-events: none;
|
|
background:
|
|
radial-gradient(ellipse 80% 60% at 50% -10%, color-mix(in oklab, var(--arcane) 30%, transparent), transparent 60%),
|
|
radial-gradient(ellipse 60% 50% at 80% 30%, color-mix(in oklab, var(--moon) 10%, transparent), transparent 60%),
|
|
radial-gradient(ellipse 50% 40% at 10% 80%, color-mix(in oklab, var(--arcane-2) 14%, transparent), transparent 60%),
|
|
linear-gradient(180deg, var(--bg-0) 0%, var(--bg-1) 40%, var(--bg-0) 100%);
|
|
}
|
|
|
|
.bg-stars, .bg-stars-bright {
|
|
position: absolute;
|
|
inset: 0;
|
|
}
|
|
|
|
/* moon */
|
|
.bg-moon {
|
|
position: absolute;
|
|
top: 8vh;
|
|
right: 6vw;
|
|
width: clamp(180px, 22vw, 320px);
|
|
aspect-ratio: 1;
|
|
border-radius: 50%;
|
|
background:
|
|
radial-gradient(circle at 35% 35%, #f4eccf 0%, #d9cfae 35%, #9d8f68 60%, #3a3422 85%, transparent 100%);
|
|
box-shadow:
|
|
0 0 60px rgba(244, 236, 207, 0.15),
|
|
0 0 140px rgba(127, 184, 212, 0.12),
|
|
0 0 260px rgba(90, 140, 180, 0.08);
|
|
opacity: 0.55;
|
|
filter: blur(0.3px);
|
|
}
|
|
.bg-moon::after {
|
|
content: "";
|
|
position: absolute;
|
|
inset: -15%;
|
|
border-radius: 50%;
|
|
background: radial-gradient(circle, rgba(232, 220, 192, 0.12), transparent 55%);
|
|
}
|
|
|
|
body[data-moon="false"] .bg-moon { display: none; }
|
|
|
|
/* fog layers */
|
|
.bg-fog {
|
|
position: absolute;
|
|
inset: 0;
|
|
background:
|
|
radial-gradient(ellipse 100% 40% at 50% 100%, color-mix(in oklab, var(--arcane) 22%, transparent), transparent 70%);
|
|
mix-blend-mode: screen;
|
|
opacity: 0.7;
|
|
}
|
|
|
|
/* ------------------------- nav ------------------------- */
|
|
.nav {
|
|
position: sticky;
|
|
top: 0;
|
|
z-index: 40;
|
|
backdrop-filter: blur(10px);
|
|
background: linear-gradient(180deg, rgba(7,10,24,0.85), rgba(7,10,24,0.55) 70%, transparent);
|
|
border-bottom: 1px solid transparent;
|
|
transition: border-color var(--t-med), background var(--t-med);
|
|
}
|
|
.nav.scrolled {
|
|
border-color: var(--panel-border);
|
|
background: rgba(7,10,24,0.9);
|
|
}
|
|
.nav-inner {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 32px;
|
|
height: 72px;
|
|
}
|
|
.nav-logo {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
font-family: var(--f-display);
|
|
font-size: 18px;
|
|
font-weight: 500;
|
|
letter-spacing: 0.18em;
|
|
text-transform: uppercase;
|
|
color: var(--ivory);
|
|
}
|
|
.nav-logo-mark {
|
|
width: 32px; height: 32px;
|
|
position: relative;
|
|
flex-shrink: 0;
|
|
}
|
|
.nav-logo-mark svg { width: 100%; height: 100%; }
|
|
|
|
.nav-links {
|
|
display: flex;
|
|
gap: 28px;
|
|
margin-left: auto;
|
|
align-items: center;
|
|
}
|
|
.nav-burger {
|
|
display: none;
|
|
width: 44px;
|
|
height: 44px;
|
|
margin-left: auto;
|
|
background: transparent;
|
|
border: 1px solid var(--panel-border-strong);
|
|
border-radius: var(--radius);
|
|
cursor: pointer;
|
|
position: relative;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 5px;
|
|
transition: border-color var(--t-fast);
|
|
}
|
|
.nav-burger:hover { border-color: var(--moon); }
|
|
.nav-burger span {
|
|
display: block;
|
|
width: 18px;
|
|
height: 1.5px;
|
|
background: var(--ivory);
|
|
transition: transform var(--t-fast), opacity var(--t-fast);
|
|
transform-origin: center;
|
|
}
|
|
.nav-burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
|
|
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
|
|
.nav-burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
|
|
|
|
.nav-drawer-backdrop {
|
|
position: fixed;
|
|
inset: 0;
|
|
background: rgba(7,10,24,0.65);
|
|
backdrop-filter: blur(6px);
|
|
opacity: 0;
|
|
pointer-events: none;
|
|
transition: opacity 320ms ease;
|
|
z-index: 38;
|
|
}
|
|
.nav-drawer-backdrop.is-open {
|
|
opacity: 1;
|
|
pointer-events: auto;
|
|
}
|
|
|
|
.nav-drawer {
|
|
position: fixed;
|
|
top: 0;
|
|
right: 0;
|
|
height: 100dvh;
|
|
width: min(360px, 92vw);
|
|
background:
|
|
radial-gradient(ellipse at 100% 0%, rgba(91,58,138,0.22), transparent 55%),
|
|
linear-gradient(180deg, rgba(10,13,31,0.98), rgba(7,10,24,0.98));
|
|
border-left: 1px solid var(--panel-border-strong);
|
|
padding: 96px 32px 32px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
transform: translateX(100%);
|
|
transition: transform 380ms cubic-bezier(.2,.7,.3,1);
|
|
z-index: 39;
|
|
overflow-y: auto;
|
|
}
|
|
.nav-drawer.is-open { transform: translateX(0); }
|
|
|
|
.nav-drawer-head { margin-bottom: 28px; }
|
|
|
|
.nav-drawer-links {
|
|
display: flex;
|
|
flex-direction: column;
|
|
border-top: 1px solid var(--panel-border);
|
|
margin-bottom: 28px;
|
|
}
|
|
.nav-drawer-links a {
|
|
display: grid;
|
|
grid-template-columns: auto 1fr auto;
|
|
align-items: center;
|
|
gap: 16px;
|
|
padding: 20px 4px;
|
|
border-bottom: 1px solid var(--panel-border);
|
|
font-family: var(--f-display);
|
|
font-size: 22px;
|
|
letter-spacing: 0.04em;
|
|
color: var(--ivory);
|
|
opacity: 0;
|
|
transform: translateX(20px);
|
|
transition: opacity 360ms ease, transform 360ms ease, color var(--t-fast);
|
|
}
|
|
.nav-drawer.is-open .nav-drawer-links a {
|
|
opacity: 1;
|
|
transform: none;
|
|
}
|
|
.nav-drawer-links a:hover { color: var(--moon); }
|
|
.nav-drawer-links a .num {
|
|
font-family: var(--f-mono);
|
|
font-size: 11px;
|
|
letter-spacing: 0.22em;
|
|
color: var(--moon);
|
|
font-weight: 400;
|
|
}
|
|
.nav-drawer-links a .arr { color: var(--text-mute); }
|
|
|
|
.nav-drawer-cta {
|
|
width: 100%;
|
|
margin-top: auto;
|
|
}
|
|
.nav-drawer-foot {
|
|
margin-top: 24px;
|
|
padding-top: 24px;
|
|
border-top: 1px solid var(--panel-border);
|
|
text-align: center;
|
|
}
|
|
|
|
@media (max-width: 880px) {
|
|
.nav { position: fixed; left: 0; right: 0; }
|
|
.nav-inner { height: 64px; gap: 16px; }
|
|
.nav-logo { font-size: 16px; letter-spacing: 0.16em; }
|
|
.nav-links-desktop { display: none; }
|
|
.nav-burger { display: flex; }
|
|
.hero { padding-top: 96px; }
|
|
}
|
|
|
|
html, body { overflow-x: hidden; max-width: 100vw; }
|
|
.nav { width: 100%; }
|
|
.nav-links a {
|
|
font-size: 13px;
|
|
letter-spacing: 0.08em;
|
|
text-transform: uppercase;
|
|
color: var(--text-soft);
|
|
font-weight: 500;
|
|
position: relative;
|
|
padding: 6px 0;
|
|
transition: color var(--t-fast);
|
|
}
|
|
.nav-links a:hover { color: var(--ivory); }
|
|
.nav-links a::after {
|
|
content: "";
|
|
position: absolute;
|
|
left: 0; right: 0; bottom: 0;
|
|
height: 1px;
|
|
background: var(--moon);
|
|
transform: scaleX(0);
|
|
transform-origin: left;
|
|
transition: transform var(--t-fast);
|
|
}
|
|
.nav-links a:hover::after { transform: scaleX(1); }
|
|
|
|
.nav-cta {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
padding: 9px 18px;
|
|
border: 1px solid var(--panel-border-strong);
|
|
border-radius: var(--radius);
|
|
font-size: 12px;
|
|
letter-spacing: 0.14em;
|
|
text-transform: uppercase;
|
|
color: var(--ivory);
|
|
background: linear-gradient(180deg, rgba(127,184,212,0.08), rgba(127,184,212,0.02));
|
|
transition: all var(--t-fast);
|
|
}
|
|
.nav-cta:hover {
|
|
border-color: var(--moon);
|
|
background: linear-gradient(180deg, rgba(127,184,212,0.18), rgba(127,184,212,0.06));
|
|
box-shadow: 0 0 20px rgba(127,184,212,0.15);
|
|
}
|
|
|
|
/* ------------------------- buttons ------------------------- */
|
|
.btn {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 10px;
|
|
padding: 16px 32px;
|
|
font-family: var(--f-sans);
|
|
font-size: 13px;
|
|
letter-spacing: 0.18em;
|
|
text-transform: uppercase;
|
|
font-weight: 600;
|
|
border-radius: var(--radius);
|
|
cursor: pointer;
|
|
transition: all var(--t-fast);
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
.btn-primary {
|
|
background: linear-gradient(180deg, var(--ivory) 0%, #d4c8a8 100%);
|
|
color: #1a0f28;
|
|
border: 1px solid var(--ivory);
|
|
box-shadow: 0 0 0 1px rgba(232,220,192,0.2), 0 8px 32px -8px rgba(232,220,192,0.4);
|
|
}
|
|
.btn-primary:hover {
|
|
transform: translateY(-1px);
|
|
box-shadow: 0 0 0 1px rgba(232,220,192,0.3), 0 16px 48px -8px rgba(232,220,192,0.55);
|
|
}
|
|
.btn-ghost {
|
|
background: transparent;
|
|
color: var(--ivory);
|
|
border: 1px solid var(--panel-border-strong);
|
|
}
|
|
.btn-ghost:hover {
|
|
border-color: var(--moon);
|
|
background: rgba(127,184,212,0.06);
|
|
}
|
|
|
|
.btn-ghost.is-disabled {
|
|
opacity: 0.5;
|
|
cursor: not-allowed;
|
|
pointer-events: none;
|
|
}
|
|
.btn-ghost.is-disabled:hover { border-color: var(--panel-border-strong); background: transparent; }
|
|
|
|
/* ornamental arrow */
|
|
.btn-arrow { width: 14px; height: 10px; transition: transform var(--t-fast); }
|
|
.btn:hover .btn-arrow { transform: translateX(4px); }
|
|
|
|
/* ------------------------- panels / cards ------------------------- */
|
|
.panel {
|
|
background: var(--panel);
|
|
border: 1px solid var(--panel-border);
|
|
border-radius: var(--radius-lg);
|
|
backdrop-filter: blur(8px);
|
|
position: relative;
|
|
}
|
|
.panel::before {
|
|
content: "";
|
|
position: absolute;
|
|
inset: 0;
|
|
border-radius: inherit;
|
|
padding: 1px;
|
|
background: linear-gradient(135deg, var(--panel-border-strong), transparent 50%);
|
|
-webkit-mask: linear-gradient(#000,#000) content-box, linear-gradient(#000,#000);
|
|
-webkit-mask-composite: xor;
|
|
mask-composite: exclude;
|
|
pointer-events: none;
|
|
}
|
|
|
|
/* corners deco */
|
|
.corners::after {
|
|
content: "";
|
|
position: absolute;
|
|
top: 8px; left: 8px;
|
|
width: 12px; height: 12px;
|
|
border-top: 1px solid var(--moon);
|
|
border-left: 1px solid var(--moon);
|
|
opacity: 0.7;
|
|
}
|
|
.corners::before {
|
|
content: "";
|
|
position: absolute;
|
|
bottom: 8px; right: 8px;
|
|
width: 12px; height: 12px;
|
|
border-bottom: 1px solid var(--moon);
|
|
border-right: 1px solid var(--moon);
|
|
opacity: 0.7;
|
|
border-radius: 0;
|
|
padding: 0;
|
|
background: none;
|
|
-webkit-mask: none;
|
|
mask: none;
|
|
}
|
|
|
|
/* ------------------------- section ------------------------- */
|
|
section {
|
|
position: relative;
|
|
padding: clamp(80px, 10vw, 140px) 0;
|
|
}
|
|
.section-head {
|
|
max-width: 780px;
|
|
margin: 0 auto clamp(40px, 6vw, 72px);
|
|
text-align: center;
|
|
}
|
|
.section-head .eyebrow { margin-bottom: 18px; }
|
|
.section-head .eyebrow::before, .section-head .eyebrow::after {
|
|
content: "";
|
|
width: 32px; height: 1px;
|
|
background: currentColor;
|
|
opacity: 0.5;
|
|
}
|
|
.section-head .eyebrow::after { display: inline-block; }
|
|
|
|
.divider-ornament {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 14px;
|
|
margin: 24px 0;
|
|
color: var(--moon);
|
|
opacity: 0.7;
|
|
}
|
|
.divider-ornament::before, .divider-ornament::after {
|
|
content: "";
|
|
width: clamp(60px, 12vw, 140px);
|
|
height: 1px;
|
|
background: linear-gradient(90deg, transparent, currentColor, transparent);
|
|
}
|
|
|
|
/* ------------------------- scroll reveal ------------------------- */
|
|
.reveal {
|
|
opacity: 0;
|
|
transform: translateY(18px);
|
|
transition: opacity 700ms cubic-bezier(.2,.7,.3,1), transform 700ms cubic-bezier(.2,.7,.3,1);
|
|
}
|
|
.reveal.is-visible { opacity: 1; transform: none; }
|
|
|
|
/* ------------------------- hero ------------------------- */
|
|
.hero {
|
|
min-height: 100vh;
|
|
padding-top: 64px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
position: relative;
|
|
}
|
|
.hero-inner {
|
|
max-width: 980px;
|
|
margin: 0 auto;
|
|
text-align: center;
|
|
padding-bottom: 80px;
|
|
}
|
|
.hero-pretitle {
|
|
margin-bottom: 28px;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
padding: 8px 18px;
|
|
border: 1px solid var(--panel-border);
|
|
border-radius: 999px;
|
|
background: rgba(10,13,31,0.5);
|
|
font-family: var(--f-mono);
|
|
font-size: 11px;
|
|
letter-spacing: 0.22em;
|
|
text-transform: uppercase;
|
|
color: var(--moon);
|
|
}
|
|
.hero-pretitle .dot {
|
|
width: 6px; height: 6px; border-radius: 50%;
|
|
background: #6edc8e;
|
|
box-shadow: 0 0 10px #6edc8e;
|
|
animation: pulse 2s ease-in-out infinite;
|
|
}
|
|
@keyframes pulse {
|
|
0%,100% { opacity: 1; transform: scale(1); }
|
|
50% { opacity: 0.5; transform: scale(0.85); }
|
|
}
|
|
|
|
.hero-title {
|
|
font-size: clamp(52px, 10vw, 140px);
|
|
line-height: 0.92;
|
|
font-weight: 500;
|
|
margin-bottom: 24px;
|
|
letter-spacing: 0.01em;
|
|
background: linear-gradient(180deg, #f4eccf 0%, #e8dcc0 40%, #9d8f68 100%);
|
|
-webkit-background-clip: text;
|
|
background-clip: text;
|
|
color: transparent;
|
|
text-shadow: 0 0 80px rgba(232,220,192,0.12);
|
|
}
|
|
.hero-title .ornament {
|
|
display: block;
|
|
font-size: 0.32em;
|
|
letter-spacing: 0.6em;
|
|
color: var(--moon);
|
|
font-family: var(--f-display);
|
|
font-weight: 400;
|
|
margin-top: 18px;
|
|
-webkit-text-fill-color: var(--moon);
|
|
text-shadow: none;
|
|
}
|
|
|
|
.hero-tagline {
|
|
font-family: var(--f-serif);
|
|
font-style: italic;
|
|
font-size: clamp(18px, 2vw, 26px);
|
|
color: var(--text-soft);
|
|
max-width: 640px;
|
|
margin: 0 auto 40px;
|
|
line-height: 1.45;
|
|
}
|
|
|
|
.hero-meta {
|
|
display: flex;
|
|
gap: 28px;
|
|
justify-content: center;
|
|
flex-wrap: wrap;
|
|
margin-bottom: 44px;
|
|
font-family: var(--f-mono);
|
|
font-size: 11px;
|
|
letter-spacing: 0.18em;
|
|
text-transform: uppercase;
|
|
color: var(--text-mute);
|
|
}
|
|
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
|
|
.hero-meta span::before {
|
|
content: "";
|
|
width: 4px; height: 4px;
|
|
background: var(--moon);
|
|
transform: rotate(45deg);
|
|
}
|
|
|
|
.hero-cta {
|
|
display: flex;
|
|
gap: 16px;
|
|
justify-content: center;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.hero-launcher-note {
|
|
margin-top: 28px;
|
|
font-family: var(--f-mono);
|
|
font-size: 11px;
|
|
letter-spacing: 0.16em;
|
|
text-transform: uppercase;
|
|
color: var(--text-mute);
|
|
display: inline-flex;
|
|
gap: 10px;
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
.hero-launcher-note .os { color: var(--moon); }
|
|
.hero-launcher-note .sep { color: var(--text-dim); }
|
|
|
|
.launcher-steps {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, 1fr);
|
|
gap: 16px;
|
|
margin: 40px 0 0;
|
|
text-align: left;
|
|
}
|
|
.launcher-step {
|
|
padding: 20px 22px;
|
|
background: linear-gradient(180deg, rgba(16,20,42,0.5), rgba(10,13,31,0.3));
|
|
border: 1px solid var(--panel-border);
|
|
border-radius: var(--radius-lg);
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 10px;
|
|
transition: border-color var(--t-fast);
|
|
}
|
|
.launcher-step:hover { border-color: var(--panel-border-strong); }
|
|
.launcher-step .n {
|
|
font-family: var(--f-mono);
|
|
font-size: 10px;
|
|
letter-spacing: 0.22em;
|
|
color: var(--moon);
|
|
}
|
|
.launcher-step .t {
|
|
font-family: var(--f-serif);
|
|
font-size: 17px;
|
|
line-height: 1.35;
|
|
color: var(--ivory);
|
|
}
|
|
@media (max-width: 700px) {
|
|
.launcher-steps { grid-template-columns: 1fr; }
|
|
}
|
|
|
|
.hero-scroll {
|
|
position: absolute;
|
|
bottom: 32px;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
font-family: var(--f-mono);
|
|
font-size: 10px;
|
|
letter-spacing: 0.3em;
|
|
text-transform: uppercase;
|
|
color: var(--text-mute);
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: 10px;
|
|
opacity: 0.7;
|
|
}
|
|
.hero-scroll::after {
|
|
content: "";
|
|
width: 1px; height: 32px;
|
|
background: linear-gradient(180deg, var(--moon), transparent);
|
|
animation: scrollHint 2.4s ease-in-out infinite;
|
|
}
|
|
@keyframes scrollHint {
|
|
0% { transform: scaleY(0); transform-origin: top; }
|
|
50% { transform: scaleY(1); transform-origin: top; }
|
|
51% { transform-origin: bottom; }
|
|
100% { transform: scaleY(0); transform-origin: bottom; }
|
|
}
|
|
|
|
/* ------------------------- realm status ------------------------- */
|
|
.realm {
|
|
padding: 0;
|
|
margin-top: -60px;
|
|
position: relative;
|
|
z-index: 2;
|
|
}
|
|
.realm-panel {
|
|
padding: 28px 36px;
|
|
display: grid;
|
|
grid-template-columns: auto 1fr auto auto auto auto;
|
|
align-items: center;
|
|
gap: 32px;
|
|
background: linear-gradient(180deg, rgba(16,20,42,0.85), rgba(10,13,31,0.92));
|
|
border: 1px solid var(--panel-border-strong);
|
|
border-radius: var(--radius-lg);
|
|
backdrop-filter: blur(12px);
|
|
}
|
|
.realm-status {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
padding-right: 24px;
|
|
border-right: 1px solid var(--panel-border);
|
|
}
|
|
.realm-status .orb {
|
|
width: 10px; height: 10px;
|
|
border-radius: 50%;
|
|
background: #6edc8e;
|
|
box-shadow: 0 0 12px #6edc8e, 0 0 28px rgba(110,220,142,0.4);
|
|
animation: pulse 2.2s ease-in-out infinite;
|
|
}
|
|
.realm-status .label {
|
|
font-family: var(--f-mono);
|
|
font-size: 11px;
|
|
letter-spacing: 0.22em;
|
|
text-transform: uppercase;
|
|
color: #6edc8e;
|
|
}
|
|
.realm-name {
|
|
font-family: var(--f-display);
|
|
font-size: 15px;
|
|
letter-spacing: 0.2em;
|
|
text-transform: uppercase;
|
|
color: var(--ivory);
|
|
}
|
|
.realm-name small {
|
|
display: block;
|
|
font-family: var(--f-mono);
|
|
font-size: 10px;
|
|
letter-spacing: 0.18em;
|
|
color: var(--text-mute);
|
|
text-transform: uppercase;
|
|
margin-top: 4px;
|
|
font-weight: 400;
|
|
}
|
|
.realm-stat {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 4px;
|
|
padding: 0 16px;
|
|
border-left: 1px solid var(--panel-border);
|
|
min-width: 0;
|
|
}
|
|
.realm-stat .k {
|
|
font-family: var(--f-mono);
|
|
font-size: 10px;
|
|
letter-spacing: 0.2em;
|
|
text-transform: uppercase;
|
|
color: var(--text-mute);
|
|
}
|
|
.realm-stat .v {
|
|
font-family: var(--f-display);
|
|
font-size: 22px;
|
|
color: var(--ivory);
|
|
letter-spacing: 0.03em;
|
|
}
|
|
.realm-stat .v.small { font-size: 14px; letter-spacing: 0.12em; }
|
|
|
|
@media (max-width: 980px) {
|
|
.realm-panel { grid-template-columns: 1fr 1fr; gap: 20px; padding: 20px; }
|
|
.realm-status, .realm-stat { border: 0; padding: 0; }
|
|
}
|
|
|
|
/* ------------------------- about ------------------------- */
|
|
.about-grid {
|
|
display: grid;
|
|
grid-template-columns: 1.1fr 1fr;
|
|
gap: clamp(40px, 6vw, 80px);
|
|
align-items: center;
|
|
}
|
|
.about-copy h2 {
|
|
font-size: clamp(36px, 5vw, 60px);
|
|
margin-bottom: 28px;
|
|
}
|
|
.about-copy p {
|
|
font-family: var(--f-serif);
|
|
font-size: 19px;
|
|
line-height: 1.6;
|
|
color: var(--text-soft);
|
|
margin: 0 0 18px;
|
|
}
|
|
.about-copy p:first-of-type::first-letter {
|
|
font-family: var(--f-display);
|
|
font-size: 4em;
|
|
float: left;
|
|
line-height: 0.8;
|
|
padding: 6px 14px 0 0;
|
|
color: var(--moon);
|
|
}
|
|
.about-quote {
|
|
font-family: var(--f-serif);
|
|
font-style: italic;
|
|
font-size: 20px;
|
|
color: var(--text);
|
|
padding: 24px 28px;
|
|
border-left: 2px solid var(--moon);
|
|
margin: 32px 0 0;
|
|
background: linear-gradient(90deg, rgba(127,184,212,0.04), transparent);
|
|
}
|
|
.about-quote cite {
|
|
display: block;
|
|
margin-top: 12px;
|
|
font-size: 12px;
|
|
font-style: normal;
|
|
font-family: var(--f-mono);
|
|
letter-spacing: 0.2em;
|
|
text-transform: uppercase;
|
|
color: var(--text-mute);
|
|
}
|
|
|
|
.about-visual {
|
|
aspect-ratio: 3/4;
|
|
position: relative;
|
|
background:
|
|
radial-gradient(ellipse at 50% 40%, rgba(127,184,212,0.25), transparent 60%),
|
|
linear-gradient(180deg, rgba(90,60,140,0.2), rgba(10,13,31,0.5));
|
|
border: 1px solid var(--panel-border);
|
|
border-radius: var(--radius-lg);
|
|
overflow: hidden;
|
|
}
|
|
.about-visual .placeholder-note {
|
|
position: absolute;
|
|
bottom: 16px;
|
|
left: 16px;
|
|
right: 16px;
|
|
font-family: var(--f-mono);
|
|
font-size: 10px;
|
|
letter-spacing: 0.18em;
|
|
color: var(--text-mute);
|
|
text-transform: uppercase;
|
|
text-align: center;
|
|
padding: 10px;
|
|
background: rgba(7,10,24,0.7);
|
|
border: 1px dashed var(--panel-border-strong);
|
|
border-radius: var(--radius);
|
|
}
|
|
.about-stats {
|
|
position: absolute;
|
|
top: 24px;
|
|
left: 24px;
|
|
right: 24px;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
font-family: var(--f-mono);
|
|
font-size: 10px;
|
|
letter-spacing: 0.2em;
|
|
text-transform: uppercase;
|
|
color: var(--moon);
|
|
}
|
|
|
|
@media (max-width: 900px) {
|
|
.about-grid { grid-template-columns: 1fr; }
|
|
}
|
|
|
|
/* ------------------------- features ------------------------- */
|
|
.features-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(12, 1fr);
|
|
gap: 20px;
|
|
}
|
|
.feature {
|
|
grid-column: span 4;
|
|
padding: 32px 28px;
|
|
background: linear-gradient(180deg, rgba(16,20,42,0.6), rgba(10,13,31,0.4));
|
|
border: 1px solid var(--panel-border);
|
|
border-radius: var(--radius-lg);
|
|
position: relative;
|
|
overflow: hidden;
|
|
transition: all var(--t-med);
|
|
}
|
|
.feature::before {
|
|
content: "";
|
|
position: absolute;
|
|
inset: 0;
|
|
background: radial-gradient(circle at var(--mx,50%) var(--my,50%), rgba(127,184,212,0.1), transparent 50%);
|
|
opacity: 0;
|
|
transition: opacity var(--t-med);
|
|
pointer-events: none;
|
|
}
|
|
.feature:hover {
|
|
border-color: var(--panel-border-strong);
|
|
transform: translateY(-2px);
|
|
}
|
|
.feature:hover::before { opacity: 1; }
|
|
|
|
.feature.span-6 { grid-column: span 6; }
|
|
.feature.span-8 { grid-column: span 8; }
|
|
.feature.span-12 { grid-column: span 12; }
|
|
|
|
.feature-num {
|
|
font-family: var(--f-mono);
|
|
font-size: 10px;
|
|
letter-spacing: 0.22em;
|
|
color: var(--text-mute);
|
|
margin-bottom: 20px;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
.feature-num .tag {
|
|
color: var(--moon);
|
|
}
|
|
.feature-title {
|
|
font-family: var(--f-display);
|
|
font-size: 22px;
|
|
font-weight: 500;
|
|
color: var(--ivory);
|
|
margin: 0 0 12px;
|
|
letter-spacing: 0.04em;
|
|
}
|
|
.feature-title sup {
|
|
font-family: var(--f-mono);
|
|
font-size: 9px;
|
|
letter-spacing: 0.18em;
|
|
color: var(--arcane-2);
|
|
padding: 3px 8px;
|
|
border: 1px solid var(--arcane-2);
|
|
border-radius: 2px;
|
|
margin-left: 10px;
|
|
vertical-align: middle;
|
|
font-weight: 400;
|
|
text-transform: uppercase;
|
|
}
|
|
.feature-desc {
|
|
font-family: var(--f-serif);
|
|
font-size: 16px;
|
|
line-height: 1.55;
|
|
color: var(--text-soft);
|
|
margin: 0;
|
|
}
|
|
.feature-icon {
|
|
width: 48px; height: 48px;
|
|
margin-bottom: 24px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: var(--moon);
|
|
position: relative;
|
|
}
|
|
.feature-icon svg { width: 100%; height: 100%; }
|
|
|
|
.feature-visual {
|
|
margin-top: 24px;
|
|
aspect-ratio: 16/7;
|
|
border: 1px dashed var(--panel-border-strong);
|
|
border-radius: var(--radius);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-family: var(--f-mono);
|
|
font-size: 10px;
|
|
letter-spacing: 0.18em;
|
|
color: var(--text-mute);
|
|
text-transform: uppercase;
|
|
background:
|
|
repeating-linear-gradient(45deg, transparent 0 10px, rgba(127,184,212,0.03) 10px 11px);
|
|
}
|
|
|
|
@media (max-width: 900px) {
|
|
.feature, .feature.span-6, .feature.span-8, .feature.span-12 { grid-column: span 12; }
|
|
}
|
|
|
|
/* progression strip */
|
|
.progression {
|
|
margin-top: 60px;
|
|
padding: 36px 40px;
|
|
background: linear-gradient(180deg, rgba(26,15,56,0.4), rgba(10,13,31,0.6));
|
|
border: 1px solid var(--panel-border);
|
|
border-radius: var(--radius-lg);
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
.progression-title {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: baseline;
|
|
margin-bottom: 28px;
|
|
flex-wrap: wrap;
|
|
gap: 10px;
|
|
}
|
|
.progression-title h3 {
|
|
font-family: var(--f-display);
|
|
font-size: 22px;
|
|
margin: 0;
|
|
letter-spacing: 0.08em;
|
|
text-transform: uppercase;
|
|
color: var(--ivory);
|
|
font-weight: 500;
|
|
}
|
|
.progression-title .meta {
|
|
font-family: var(--f-mono);
|
|
font-size: 11px;
|
|
letter-spacing: 0.18em;
|
|
color: var(--text-mute);
|
|
text-transform: uppercase;
|
|
}
|
|
.progression-track {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, 1fr);
|
|
gap: 2px;
|
|
background: var(--panel-border);
|
|
border-radius: var(--radius);
|
|
overflow: hidden;
|
|
}
|
|
.progression-step {
|
|
padding: 18px 20px;
|
|
background: linear-gradient(180deg, rgba(10,13,31,0.9), rgba(7,10,24,0.9));
|
|
position: relative;
|
|
transition: all var(--t-fast);
|
|
}
|
|
.progression-step.current {
|
|
background: linear-gradient(180deg, rgba(91,58,138,0.3), rgba(127,184,212,0.1));
|
|
}
|
|
.progression-step.locked {
|
|
opacity: 0.45;
|
|
}
|
|
.progression-step .name {
|
|
font-family: var(--f-display);
|
|
font-size: 15px;
|
|
letter-spacing: 0.08em;
|
|
color: var(--ivory);
|
|
margin-bottom: 4px;
|
|
}
|
|
.progression-step .name small {
|
|
font-family: var(--f-mono);
|
|
font-size: 9px;
|
|
letter-spacing: 0.18em;
|
|
text-transform: uppercase;
|
|
color: var(--text-mute);
|
|
margin-left: 8px;
|
|
font-weight: 400;
|
|
}
|
|
.progression-step .status {
|
|
font-family: var(--f-mono);
|
|
font-size: 10px;
|
|
letter-spacing: 0.16em;
|
|
text-transform: uppercase;
|
|
color: var(--text-mute);
|
|
}
|
|
.progression-step.current .status { color: var(--moon); }
|
|
.progression-step.live .status { color: #6edc8e; }
|
|
|
|
@media (max-width: 700px) {
|
|
.progression-track { grid-template-columns: 1fr; }
|
|
}
|
|
|
|
/* ------------------------- news ------------------------- */
|
|
.news-grid {
|
|
display: grid;
|
|
grid-template-columns: 1.4fr 1fr;
|
|
gap: 32px;
|
|
}
|
|
.news-card {
|
|
padding: 28px;
|
|
background: linear-gradient(180deg, rgba(16,20,42,0.5), rgba(10,13,31,0.3));
|
|
border: 1px solid var(--panel-border);
|
|
border-radius: var(--radius-lg);
|
|
cursor: pointer;
|
|
transition: all var(--t-fast);
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 12px;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
.news-card:hover {
|
|
border-color: var(--panel-border-strong);
|
|
transform: translateY(-2px);
|
|
}
|
|
.news-card:focus-visible {
|
|
outline: 2px solid var(--moon);
|
|
outline-offset: 4px;
|
|
}
|
|
.news-card.featured {
|
|
grid-row: span 2;
|
|
padding: 40px;
|
|
background:
|
|
radial-gradient(ellipse at 80% -10%, rgba(91,58,138,0.28), transparent 55%),
|
|
linear-gradient(180deg, rgba(16,20,42,0.7), rgba(10,13,31,0.5));
|
|
}
|
|
.news-meta {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 14px;
|
|
font-family: var(--f-mono);
|
|
font-size: 10px;
|
|
letter-spacing: 0.18em;
|
|
text-transform: uppercase;
|
|
color: var(--text-mute);
|
|
}
|
|
.news-tag {
|
|
color: var(--moon);
|
|
padding: 3px 8px;
|
|
border: 1px solid currentColor;
|
|
border-radius: 2px;
|
|
}
|
|
.news-tag.hotfix { color: #e8a76b; }
|
|
.news-tag.event { color: #d4a8ff; }
|
|
.news-title {
|
|
font-family: var(--f-display);
|
|
font-weight: 500;
|
|
color: var(--ivory);
|
|
letter-spacing: 0.02em;
|
|
margin: 0;
|
|
line-height: 1.2;
|
|
}
|
|
.news-card.featured .news-title { font-size: 32px; }
|
|
.news-card:not(.featured) .news-title { font-size: 19px; }
|
|
.news-excerpt {
|
|
font-family: var(--f-serif);
|
|
font-size: 16px;
|
|
line-height: 1.55;
|
|
color: var(--text-soft);
|
|
margin: 0;
|
|
}
|
|
.news-card.featured .news-placeholder {
|
|
aspect-ratio: 16/8;
|
|
border: 1px dashed var(--panel-border-strong);
|
|
border-radius: var(--radius);
|
|
margin-top: 4px;
|
|
background:
|
|
repeating-linear-gradient(45deg, transparent 0 12px, rgba(127,184,212,0.03) 12px 13px);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-family: var(--f-mono);
|
|
font-size: 10px;
|
|
letter-spacing: 0.18em;
|
|
color: var(--text-mute);
|
|
text-transform: uppercase;
|
|
}
|
|
.news-read {
|
|
margin-top: auto;
|
|
font-family: var(--f-mono);
|
|
font-size: 11px;
|
|
letter-spacing: 0.2em;
|
|
text-transform: uppercase;
|
|
color: var(--moon);
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
}
|
|
|
|
.news-all-link {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
margin-top: 4px;
|
|
padding: 11px 16px;
|
|
border: 1px solid var(--panel-border-strong);
|
|
border-radius: var(--radius);
|
|
font-family: var(--f-mono);
|
|
font-size: 10px;
|
|
letter-spacing: 0.16em;
|
|
text-transform: uppercase;
|
|
color: var(--moon);
|
|
transition: border-color var(--t-fast), color var(--t-fast), background var(--t-fast);
|
|
}
|
|
|
|
.news-all-link:hover {
|
|
border-color: var(--moon);
|
|
color: var(--ivory);
|
|
background: rgba(127, 184, 212, 0.06);
|
|
}
|
|
|
|
@media (max-width: 900px) {
|
|
.news-grid { grid-template-columns: 1fr; }
|
|
.news-card.featured { grid-row: auto; padding: 28px; }
|
|
.news-card.featured .news-title { font-size: 24px; }
|
|
}
|
|
|
|
/* ------------------------- public news index ------------------------- */
|
|
.portal-news-index {
|
|
padding-top: clamp(64px, 8vw, 110px);
|
|
padding-bottom: clamp(80px, 10vw, 140px);
|
|
}
|
|
|
|
.portal-news-index__hero {
|
|
max-width: 830px;
|
|
margin-bottom: clamp(44px, 6vw, 74px);
|
|
}
|
|
|
|
.portal-news-index__hero h1 {
|
|
margin: 20px 0 22px;
|
|
font-size: clamp(44px, 7vw, 86px);
|
|
text-wrap: balance;
|
|
}
|
|
|
|
.portal-news-index__hero .lead {
|
|
max-width: 720px;
|
|
margin: 0;
|
|
}
|
|
|
|
.portal-news-list {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
gap: 26px;
|
|
}
|
|
|
|
.portal-news-list__card {
|
|
display: flex;
|
|
min-width: 0;
|
|
min-height: 470px;
|
|
flex-direction: column;
|
|
overflow: hidden;
|
|
border: 1px solid var(--panel-border);
|
|
border-radius: var(--radius-lg);
|
|
background:
|
|
radial-gradient(ellipse at 80% -10%, rgba(91, 58, 138, 0.15), transparent 50%),
|
|
linear-gradient(180deg, rgba(16, 20, 42, 0.66), rgba(10, 13, 31, 0.42));
|
|
transition: border-color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
|
|
}
|
|
|
|
.portal-news-list__card:hover {
|
|
border-color: var(--panel-border-strong);
|
|
transform: translateY(-3px);
|
|
box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
|
|
}
|
|
|
|
.portal-news-list__card:focus-visible {
|
|
outline: 2px solid var(--moon);
|
|
outline-offset: 4px;
|
|
}
|
|
|
|
.portal-news-list__cover {
|
|
display: grid;
|
|
width: 100%;
|
|
aspect-ratio: 16 / 9;
|
|
flex: 0 0 auto;
|
|
place-items: center;
|
|
border-bottom: 1px solid var(--panel-border);
|
|
background-position: center;
|
|
background-size: cover;
|
|
}
|
|
|
|
.portal-news-list__cover.empty {
|
|
background:
|
|
radial-gradient(circle at 50% 50%, rgba(127, 184, 212, 0.12), transparent 38%),
|
|
repeating-linear-gradient(45deg, transparent 0 16px, rgba(127, 184, 212, 0.025) 16px 17px);
|
|
}
|
|
|
|
.portal-news-list__cover.empty span {
|
|
font-family: var(--f-display);
|
|
font-size: 34px;
|
|
color: var(--moon);
|
|
filter: drop-shadow(0 0 18px rgba(127, 184, 212, 0.42));
|
|
}
|
|
|
|
.portal-news-list__content {
|
|
display: flex;
|
|
flex: 1;
|
|
flex-direction: column;
|
|
gap: 15px;
|
|
padding: 26px;
|
|
}
|
|
|
|
.portal-news-list__content h2 {
|
|
font-size: clamp(22px, 2.2vw, 30px);
|
|
line-height: 1.22;
|
|
}
|
|
|
|
.portal-news-list__content > p {
|
|
margin: 0;
|
|
font-family: var(--f-serif);
|
|
font-size: 17px;
|
|
line-height: 1.55;
|
|
color: var(--text-soft);
|
|
}
|
|
|
|
.portal-news-index__empty {
|
|
padding: clamp(60px, 10vw, 110px) 30px;
|
|
border: 1px dashed var(--panel-border-strong);
|
|
border-radius: var(--radius-lg);
|
|
text-align: center;
|
|
background: rgba(127, 184, 212, 0.025);
|
|
}
|
|
|
|
.portal-news-index__empty > span {
|
|
display: block;
|
|
margin-bottom: 18px;
|
|
font-size: 32px;
|
|
color: var(--moon);
|
|
}
|
|
|
|
.portal-news-index__empty h2 { font-size: clamp(28px, 4vw, 42px); }
|
|
.portal-news-index__empty p {
|
|
margin: 14px 0 28px;
|
|
font-family: var(--f-serif);
|
|
font-size: 19px;
|
|
color: var(--text-soft);
|
|
}
|
|
|
|
.portal-pagination {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
gap: 8px;
|
|
margin-top: 52px;
|
|
}
|
|
|
|
.portal-pagination a,
|
|
.portal-pagination span {
|
|
display: grid;
|
|
min-width: 42px;
|
|
height: 42px;
|
|
padding: 0 13px;
|
|
place-items: center;
|
|
border: 1px solid var(--panel-border);
|
|
border-radius: var(--radius);
|
|
font-family: var(--f-mono);
|
|
font-size: 10px;
|
|
color: var(--text-mute);
|
|
}
|
|
|
|
.portal-pagination a {
|
|
transition: border-color var(--t-fast), color var(--t-fast), background var(--t-fast);
|
|
}
|
|
|
|
.portal-pagination a:hover,
|
|
.portal-pagination a.active {
|
|
border-color: var(--moon);
|
|
color: var(--ivory);
|
|
background: rgba(127, 184, 212, 0.08);
|
|
}
|
|
|
|
.portal-pagination .disabled { opacity: 0.36; }
|
|
|
|
@media (max-width: 1000px) {
|
|
.portal-news-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
|
|
}
|
|
|
|
@media (max-width: 640px) {
|
|
.portal-news-list { grid-template-columns: 1fr; }
|
|
.portal-news-list__card { min-height: auto; }
|
|
.portal-news-list__content { padding: 22px; }
|
|
.portal-pagination a:first-of-type,
|
|
.portal-pagination a:last-of-type,
|
|
.portal-pagination span:first-child,
|
|
.portal-pagination span:last-child { min-width: 74px; }
|
|
}
|
|
|
|
/* ------------------------- public news article ------------------------- */
|
|
.portal-news-page {
|
|
max-width: 1040px;
|
|
padding-top: clamp(54px, 8vw, 110px);
|
|
padding-bottom: clamp(68px, 9vw, 120px);
|
|
}
|
|
|
|
.portal-news-back {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
margin-bottom: clamp(38px, 6vw, 70px);
|
|
font-family: var(--f-mono);
|
|
font-size: 10px;
|
|
letter-spacing: 0.18em;
|
|
text-transform: uppercase;
|
|
color: var(--text-mute);
|
|
transition: color var(--t-fast);
|
|
}
|
|
|
|
.portal-news-back:hover { color: var(--moon); }
|
|
|
|
.portal-news-hero {
|
|
max-width: 880px;
|
|
}
|
|
|
|
.portal-news-hero h1 {
|
|
margin: 24px 0;
|
|
font-size: clamp(42px, 7vw, 82px);
|
|
text-wrap: balance;
|
|
}
|
|
|
|
.portal-news-hero .lead {
|
|
max-width: 760px;
|
|
margin: 0;
|
|
font-size: clamp(20px, 2vw, 26px);
|
|
}
|
|
|
|
.portal-news-cover {
|
|
width: 100%;
|
|
max-height: 620px;
|
|
margin: clamp(42px, 6vw, 72px) 0;
|
|
border: 1px solid var(--panel-border-strong);
|
|
border-radius: var(--radius-lg);
|
|
object-fit: cover;
|
|
box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
|
|
}
|
|
|
|
.portal-news-body {
|
|
max-width: 780px;
|
|
margin: clamp(44px, 6vw, 76px) auto 0;
|
|
}
|
|
|
|
.portal-news-body p {
|
|
margin: 0 0 1.45em;
|
|
white-space: pre-line;
|
|
font-family: var(--f-serif);
|
|
font-size: clamp(20px, 2.1vw, 25px);
|
|
line-height: 1.72;
|
|
color: var(--text-soft);
|
|
}
|
|
|
|
.portal-news-body p:first-child::first-letter {
|
|
float: left;
|
|
margin: 0.08em 0.12em 0 0;
|
|
font-family: var(--f-display);
|
|
font-size: 3.2em;
|
|
line-height: 0.78;
|
|
color: var(--moon);
|
|
}
|
|
|
|
.portal-news-end {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 14px;
|
|
max-width: 780px;
|
|
margin: 56px auto 0;
|
|
padding-top: 28px;
|
|
border-top: 1px solid var(--panel-border);
|
|
font-family: var(--f-mono);
|
|
font-size: 10px;
|
|
letter-spacing: 0.16em;
|
|
text-transform: uppercase;
|
|
color: var(--moon);
|
|
}
|
|
|
|
.portal-news-end a { transition: color var(--t-fast); }
|
|
.portal-news-end a:hover { color: var(--ivory); }
|
|
|
|
.portal-news-more {
|
|
padding-bottom: clamp(80px, 10vw, 140px);
|
|
}
|
|
|
|
.portal-news-more__head {
|
|
padding-top: 50px;
|
|
border-top: 1px solid var(--panel-border);
|
|
}
|
|
|
|
.portal-news-more__head h2 {
|
|
margin: 16px 0 34px;
|
|
font-size: clamp(32px, 4vw, 50px);
|
|
}
|
|
|
|
.portal-news-more__grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
gap: 22px;
|
|
}
|
|
|
|
.portal-news-more__card {
|
|
display: flex;
|
|
min-height: 280px;
|
|
flex-direction: column;
|
|
gap: 14px;
|
|
padding: 24px;
|
|
border: 1px solid var(--panel-border);
|
|
border-radius: var(--radius-lg);
|
|
background: linear-gradient(180deg, rgba(16, 20, 42, 0.58), rgba(10, 13, 31, 0.36));
|
|
transition: border-color var(--t-fast), transform var(--t-fast);
|
|
}
|
|
|
|
.portal-news-more__card:hover {
|
|
border-color: var(--panel-border-strong);
|
|
transform: translateY(-2px);
|
|
}
|
|
|
|
.portal-news-more__card img {
|
|
width: calc(100% + 48px);
|
|
height: 150px;
|
|
margin: -24px -24px 6px;
|
|
border-bottom: 1px solid var(--panel-border);
|
|
object-fit: cover;
|
|
}
|
|
|
|
.portal-news-more__card h3 {
|
|
font-size: 23px;
|
|
line-height: 1.25;
|
|
}
|
|
|
|
.portal-news-more__card > p {
|
|
margin: 0;
|
|
font-family: var(--f-serif);
|
|
font-size: 17px;
|
|
line-height: 1.5;
|
|
color: var(--text-soft);
|
|
}
|
|
|
|
@media (max-width: 800px) {
|
|
.portal-news-more__grid { grid-template-columns: 1fr; }
|
|
.portal-news-more__card { min-height: auto; }
|
|
.portal-news-body p { font-size: 20px; }
|
|
}
|
|
|
|
/* ------------------------- footer ------------------------- */
|
|
.footer {
|
|
padding: clamp(80px, 10vw, 140px) 0 48px;
|
|
border-top: 1px solid var(--panel-border);
|
|
position: relative;
|
|
margin-top: 80px;
|
|
}
|
|
.footer-cta {
|
|
text-align: center;
|
|
max-width: 720px;
|
|
margin: 0 auto 100px;
|
|
}
|
|
.footer-cta h2 {
|
|
font-size: clamp(40px, 6vw, 72px);
|
|
margin-bottom: 24px;
|
|
}
|
|
.footer-cta p {
|
|
font-family: var(--f-serif);
|
|
font-style: italic;
|
|
font-size: 20px;
|
|
color: var(--text-soft);
|
|
margin: 0 0 36px;
|
|
}
|
|
.footer-grid {
|
|
display: grid;
|
|
grid-template-columns: 2fr 1fr 1fr 1fr;
|
|
gap: 48px;
|
|
padding-top: 56px;
|
|
border-top: 1px solid var(--panel-border);
|
|
}
|
|
.footer-col h4 {
|
|
font-family: var(--f-mono);
|
|
font-size: 10px;
|
|
letter-spacing: 0.22em;
|
|
text-transform: uppercase;
|
|
color: var(--moon);
|
|
margin: 0 0 20px;
|
|
font-weight: 500;
|
|
}
|
|
.footer-col a {
|
|
display: block;
|
|
font-size: 14px;
|
|
color: var(--text-soft);
|
|
padding: 5px 0;
|
|
transition: color var(--t-fast);
|
|
}
|
|
.footer-col a:hover { color: var(--ivory); }
|
|
|
|
.footer-brand {
|
|
max-width: 360px;
|
|
}
|
|
.footer-brand p {
|
|
font-family: var(--f-serif);
|
|
font-style: italic;
|
|
font-size: 15px;
|
|
color: var(--text-mute);
|
|
margin: 16px 0 0;
|
|
line-height: 1.55;
|
|
}
|
|
.footer-bottom {
|
|
margin-top: 64px;
|
|
padding-top: 28px;
|
|
border-top: 1px solid var(--panel-border);
|
|
display: flex;
|
|
justify-content: space-between;
|
|
font-family: var(--f-mono);
|
|
font-size: 10px;
|
|
letter-spacing: 0.18em;
|
|
text-transform: uppercase;
|
|
color: var(--text-dim);
|
|
}
|
|
|
|
@media (max-width: 900px) {
|
|
.footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
|
|
.footer-brand { grid-column: span 2; }
|
|
}
|
|
|
|
/* ------------------------- tweaks panel ------------------------- */
|
|
.tweaks {
|
|
position: fixed;
|
|
bottom: 20px;
|
|
right: 20px;
|
|
z-index: 100;
|
|
background: rgba(7,10,24,0.95);
|
|
border: 1px solid var(--panel-border-strong);
|
|
border-radius: var(--radius-lg);
|
|
padding: 16px 18px;
|
|
min-width: 240px;
|
|
backdrop-filter: blur(16px);
|
|
box-shadow: 0 20px 60px rgba(0,0,0,0.6);
|
|
font-family: var(--f-sans);
|
|
display: none;
|
|
}
|
|
.tweaks.open { display: block; }
|
|
.tweaks-title {
|
|
font-family: var(--f-mono);
|
|
font-size: 10px;
|
|
letter-spacing: 0.22em;
|
|
text-transform: uppercase;
|
|
color: var(--moon);
|
|
margin-bottom: 14px;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
.tweaks-title button { color: var(--text-mute); font-size: 14px; }
|
|
.tweak-row {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 8px 0;
|
|
border-top: 1px solid var(--panel-border);
|
|
font-size: 13px;
|
|
color: var(--text-soft);
|
|
}
|
|
.tweak-row:first-of-type { border-top: 0; }
|
|
.tweak-row label { letter-spacing: 0.04em; }
|
|
.tweak-seg {
|
|
display: inline-flex;
|
|
border: 1px solid var(--panel-border-strong);
|
|
border-radius: 2px;
|
|
overflow: hidden;
|
|
}
|
|
.tweak-seg button {
|
|
padding: 5px 10px;
|
|
font-size: 11px;
|
|
letter-spacing: 0.1em;
|
|
text-transform: uppercase;
|
|
font-family: var(--f-mono);
|
|
color: var(--text-mute);
|
|
transition: all var(--t-fast);
|
|
}
|
|
.tweak-seg button.active {
|
|
background: var(--moon);
|
|
color: var(--bg-0);
|
|
}
|
|
.tweak-switch {
|
|
width: 34px; height: 18px;
|
|
border-radius: 999px;
|
|
background: var(--panel-border-strong);
|
|
position: relative;
|
|
cursor: pointer;
|
|
transition: background var(--t-fast);
|
|
}
|
|
.tweak-switch::after {
|
|
content: "";
|
|
position: absolute;
|
|
top: 2px; left: 2px;
|
|
width: 14px; height: 14px;
|
|
background: var(--text-soft);
|
|
border-radius: 50%;
|
|
transition: transform var(--t-fast);
|
|
}
|
|
.tweak-switch.on { background: var(--moon); }
|
|
.tweak-switch.on::after { transform: translateX(16px); background: var(--bg-0); }
|
|
|
|
/* ------------------------- particles canvas ------------------------- */
|
|
#particles {
|
|
position: fixed;
|
|
inset: 0;
|
|
z-index: 0;
|
|
pointer-events: none;
|
|
}
|
|
body[data-particles="false"] #particles { display: none; }
|
|
|
|
/* ------------------------- join / registration ------------------------- */
|
|
.join-grid {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1.05fr;
|
|
gap: clamp(40px, 6vw, 80px);
|
|
align-items: start;
|
|
}
|
|
.join-intro {
|
|
position: sticky;
|
|
top: 96px;
|
|
}
|
|
.join-note {
|
|
margin-top: 32px;
|
|
padding: 20px 22px;
|
|
background: linear-gradient(180deg, rgba(91,58,138,0.14), rgba(91,58,138,0.04));
|
|
border: 1px solid var(--panel-border);
|
|
border-left: 2px solid var(--arcane-2);
|
|
border-radius: var(--radius-lg);
|
|
}
|
|
.join-note-k {
|
|
display: block;
|
|
font-family: var(--f-mono);
|
|
font-size: 10px;
|
|
letter-spacing: 0.22em;
|
|
text-transform: uppercase;
|
|
color: var(--arcane-2);
|
|
margin-bottom: 8px;
|
|
}
|
|
.join-note-v {
|
|
font-family: var(--f-serif);
|
|
font-size: 16px;
|
|
line-height: 1.5;
|
|
color: var(--text-soft);
|
|
}
|
|
|
|
.join-card {
|
|
position: relative;
|
|
padding: 40px;
|
|
background:
|
|
radial-gradient(ellipse at 50% 0%, rgba(127,184,212,0.08), transparent 60%),
|
|
linear-gradient(180deg, rgba(16,20,42,0.9), rgba(10,13,31,0.9));
|
|
border: 1px solid var(--panel-border-strong);
|
|
border-radius: var(--radius-lg);
|
|
backdrop-filter: blur(10px);
|
|
box-shadow: 0 40px 120px -40px rgba(91,58,138,0.35);
|
|
}
|
|
.join-card-corner {
|
|
position: absolute;
|
|
width: 14px;
|
|
height: 14px;
|
|
border-color: var(--moon);
|
|
opacity: 0.7;
|
|
}
|
|
.join-card-corner.tl { top: 10px; left: 10px; border-top: 1px solid; border-left: 1px solid; }
|
|
.join-card-corner.tr { top: 10px; right: 10px; border-top: 1px solid; border-right: 1px solid; }
|
|
.join-card-corner.bl { bottom: 10px; left: 10px; border-bottom: 1px solid; border-left: 1px solid; }
|
|
.join-card-corner.br { bottom: 10px; right: 10px; border-bottom: 1px solid; border-right: 1px solid; }
|
|
|
|
.join-field { margin-bottom: 20px; }
|
|
.join-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
|
|
.join-row .join-field { margin-bottom: 20px; }
|
|
|
|
.join-label {
|
|
display: block;
|
|
font-family: var(--f-sans);
|
|
font-size: 12px;
|
|
font-weight: 600;
|
|
letter-spacing: 0.14em;
|
|
text-transform: uppercase;
|
|
color: var(--ivory);
|
|
margin-bottom: 8px;
|
|
}
|
|
.join-input {
|
|
position: relative;
|
|
display: flex;
|
|
align-items: center;
|
|
background: rgba(7,10,24,0.7);
|
|
border: 1px solid var(--panel-border);
|
|
border-radius: var(--radius);
|
|
transition: all var(--t-fast);
|
|
}
|
|
.join-input:focus-within {
|
|
border-color: var(--moon);
|
|
box-shadow: 0 0 0 3px rgba(127,184,212,0.1);
|
|
background: rgba(7,10,24,0.9);
|
|
}
|
|
.join-input input {
|
|
width: 100%;
|
|
padding: 14px 16px;
|
|
background: transparent;
|
|
border: 0;
|
|
outline: none;
|
|
color: var(--ivory);
|
|
font-family: var(--f-sans);
|
|
font-size: 15px;
|
|
}
|
|
.join-input input::placeholder { color: var(--text-dim); }
|
|
.join-input-icon {
|
|
width: 18px; height: 18px;
|
|
margin-left: 14px;
|
|
color: var(--text-mute);
|
|
flex-shrink: 0;
|
|
}
|
|
.join-input-icon svg { width: 100%; height: 100%; }
|
|
.join-input-icon + input { padding-left: 10px; }
|
|
|
|
.join-hint {
|
|
font-family: var(--f-sans);
|
|
font-size: 12px;
|
|
line-height: 1.45;
|
|
color: var(--text-mute);
|
|
margin-top: 8px;
|
|
}
|
|
.join-error {
|
|
font-family: var(--f-mono);
|
|
font-size: 11px;
|
|
letter-spacing: 0.05em;
|
|
color: #e8a76b;
|
|
margin-top: 8px;
|
|
}
|
|
.join-field.has-error .join-input {
|
|
border-color: rgba(232,167,107,0.5);
|
|
}
|
|
|
|
.join-check {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
gap: 12px;
|
|
padding: 16px 0 20px;
|
|
font-family: var(--f-sans);
|
|
font-size: 14px;
|
|
line-height: 1.5;
|
|
color: var(--text-soft);
|
|
cursor: pointer;
|
|
user-select: none;
|
|
}
|
|
.join-check input { position: absolute; opacity: 0; pointer-events: none; }
|
|
.join-check .box {
|
|
width: 18px;
|
|
height: 18px;
|
|
flex-shrink: 0;
|
|
border: 1px solid var(--panel-border-strong);
|
|
border-radius: 2px;
|
|
background: rgba(7,10,24,0.7);
|
|
position: relative;
|
|
margin-top: 2px;
|
|
transition: all var(--t-fast);
|
|
}
|
|
.join-check input:checked + .box {
|
|
background: var(--moon);
|
|
border-color: var(--moon);
|
|
}
|
|
.join-check input:checked + .box::after {
|
|
content: "";
|
|
position: absolute;
|
|
top: 2px; left: 5px;
|
|
width: 5px; height: 9px;
|
|
border-right: 2px solid var(--bg-0);
|
|
border-bottom: 2px solid var(--bg-0);
|
|
transform: rotate(45deg);
|
|
}
|
|
.join-check a { color: var(--moon); text-decoration: underline; text-decoration-color: rgba(127,184,212,0.3); }
|
|
.join-check a:hover { text-decoration-color: var(--moon); }
|
|
|
|
.join-submit {
|
|
width: 100%;
|
|
margin-top: 8px;
|
|
padding: 18px 32px;
|
|
}
|
|
.join-submit.is-disabled {
|
|
opacity: 0.4;
|
|
cursor: not-allowed;
|
|
filter: grayscale(0.3);
|
|
box-shadow: none;
|
|
}
|
|
.join-submit.is-disabled:hover { transform: none; }
|
|
|
|
.join-world {
|
|
margin-top: 36px;
|
|
padding: 20px 22px;
|
|
background: rgba(7,10,24,0.5);
|
|
border: 1px solid var(--panel-border);
|
|
border-radius: var(--radius-lg);
|
|
}
|
|
.join-world-head {
|
|
font-family: var(--f-mono);
|
|
font-size: 10px;
|
|
letter-spacing: 0.22em;
|
|
text-transform: uppercase;
|
|
color: var(--moon);
|
|
margin-bottom: 10px;
|
|
}
|
|
.join-world-name {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
font-family: var(--f-display);
|
|
font-size: 18px;
|
|
letter-spacing: 0.12em;
|
|
color: var(--ivory);
|
|
margin-bottom: 18px;
|
|
text-transform: uppercase;
|
|
}
|
|
.join-world-name svg { color: var(--moon); }
|
|
.join-world-grid {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
gap: 14px 24px;
|
|
}
|
|
.join-world-grid > div { display: flex; flex-direction: column; gap: 2px; }
|
|
.join-world-grid .k {
|
|
font-family: var(--f-mono);
|
|
font-size: 10px;
|
|
letter-spacing: 0.2em;
|
|
text-transform: uppercase;
|
|
color: var(--text-mute);
|
|
}
|
|
.join-world-grid .v {
|
|
font-family: var(--f-display);
|
|
font-size: 18px;
|
|
color: var(--ivory);
|
|
letter-spacing: 0.04em;
|
|
}
|
|
|
|
.join-success {
|
|
max-width: 560px;
|
|
margin: 0 auto;
|
|
text-align: center;
|
|
padding: 60px 40px;
|
|
}
|
|
.join-success-mark {
|
|
color: var(--moon);
|
|
margin-bottom: 20px;
|
|
display: inline-block;
|
|
filter: drop-shadow(0 0 20px rgba(127,184,212,0.4));
|
|
}
|
|
|
|
@media (max-width: 900px) {
|
|
.join-grid { grid-template-columns: 1fr; }
|
|
.join-intro { position: static; }
|
|
.join-card { padding: 28px; }
|
|
.join-row { grid-template-columns: 1fr; }
|
|
}
|
|
|
|
/* ------------------------- utility ------------------------- */
|
|
.ornament-svg { display: inline-block; vertical-align: middle; }
|
|
|
|
/* ------------------------- Inertia portal / legal ------------------------- */
|
|
.portal-shell {
|
|
position: relative;
|
|
z-index: 1;
|
|
min-height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.portal-main { flex: 1; }
|
|
|
|
.portal-header {
|
|
position: sticky;
|
|
top: 0;
|
|
z-index: 50;
|
|
border-bottom: 1px solid var(--panel-border);
|
|
background: rgba(7, 10, 24, 0.86);
|
|
backdrop-filter: blur(18px);
|
|
}
|
|
|
|
.portal-header__inner {
|
|
min-height: 76px;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 32px;
|
|
}
|
|
|
|
.portal-brand {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 13px;
|
|
min-width: 0;
|
|
}
|
|
|
|
.portal-brand__mark {
|
|
display: grid;
|
|
place-items: center;
|
|
flex: 0 0 auto;
|
|
color: var(--moon);
|
|
filter: drop-shadow(0 0 16px rgba(127, 184, 212, 0.3));
|
|
}
|
|
|
|
.portal-brand strong,
|
|
.portal-brand small,
|
|
.portal-account strong,
|
|
.portal-account small {
|
|
display: block;
|
|
}
|
|
|
|
.portal-brand strong {
|
|
font-family: var(--f-display);
|
|
font-size: 16px;
|
|
font-weight: 500;
|
|
letter-spacing: 0.16em;
|
|
text-transform: uppercase;
|
|
color: var(--ivory);
|
|
}
|
|
|
|
.portal-brand small {
|
|
max-width: 280px;
|
|
overflow: hidden;
|
|
color: var(--text-mute);
|
|
font-size: 10px;
|
|
line-height: 1.35;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.portal-nav {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 24px;
|
|
margin-left: auto;
|
|
}
|
|
|
|
.portal-nav a {
|
|
position: relative;
|
|
padding: 28px 0 25px;
|
|
font-family: var(--f-mono);
|
|
font-size: 10px;
|
|
letter-spacing: 0.14em;
|
|
text-transform: uppercase;
|
|
color: var(--text-mute);
|
|
transition: color var(--t-fast);
|
|
}
|
|
|
|
.portal-nav a::after {
|
|
position: absolute;
|
|
right: 0;
|
|
bottom: -1px;
|
|
left: 0;
|
|
height: 1px;
|
|
content: "";
|
|
background: var(--moon);
|
|
transform: scaleX(0);
|
|
transition: transform var(--t-fast);
|
|
}
|
|
|
|
.portal-nav a:hover,
|
|
.portal-nav a.active { color: var(--ivory); }
|
|
.portal-nav a:hover::after,
|
|
.portal-nav a.active::after { transform: scaleX(1); }
|
|
|
|
.portal-account {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 14px;
|
|
padding-left: 20px;
|
|
border-left: 1px solid var(--panel-border);
|
|
}
|
|
|
|
.portal-account strong {
|
|
max-width: 130px;
|
|
overflow: hidden;
|
|
font-family: var(--f-display);
|
|
font-size: 12px;
|
|
font-weight: 500;
|
|
letter-spacing: 0.1em;
|
|
color: var(--ivory);
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.portal-account small {
|
|
color: var(--text-mute);
|
|
font-size: 10px;
|
|
}
|
|
|
|
.portal-logout {
|
|
padding: 9px 12px;
|
|
border: 1px solid var(--panel-border-strong);
|
|
border-radius: var(--radius);
|
|
font-family: var(--f-mono);
|
|
font-size: 9px;
|
|
letter-spacing: 0.12em;
|
|
text-transform: uppercase;
|
|
transition: border-color var(--t-fast), color var(--t-fast);
|
|
}
|
|
|
|
.portal-logout:hover { border-color: var(--moon); color: var(--moon); }
|
|
|
|
.portal-menu-toggle {
|
|
display: none;
|
|
width: 42px;
|
|
height: 42px;
|
|
margin-left: auto;
|
|
border: 1px solid var(--panel-border-strong);
|
|
border-radius: var(--radius);
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 5px;
|
|
}
|
|
|
|
.portal-menu-toggle span {
|
|
width: 18px;
|
|
height: 1px;
|
|
background: var(--ivory);
|
|
}
|
|
|
|
.portal-mobile-menu {
|
|
display: none;
|
|
border-top: 1px solid var(--panel-border);
|
|
background: rgba(7, 10, 24, 0.98);
|
|
}
|
|
|
|
.portal-mobile-menu.open { display: block; }
|
|
|
|
.portal-mobile-menu nav {
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding-top: 10px;
|
|
padding-bottom: 18px;
|
|
}
|
|
|
|
.portal-mobile-menu a,
|
|
.portal-mobile-menu button {
|
|
padding: 15px 0;
|
|
border-bottom: 1px solid var(--panel-border);
|
|
text-align: left;
|
|
font-family: var(--f-display);
|
|
font-size: 17px;
|
|
letter-spacing: 0.04em;
|
|
color: var(--ivory);
|
|
}
|
|
|
|
.portal-alerts { padding-top: 24px; }
|
|
|
|
.portal-alert {
|
|
padding: 14px 18px;
|
|
border: 1px solid;
|
|
border-radius: var(--radius-lg);
|
|
font-size: 14px;
|
|
backdrop-filter: blur(10px);
|
|
}
|
|
|
|
.portal-alert + .portal-alert { margin-top: 10px; }
|
|
.portal-alert--success {
|
|
border-color: rgba(110, 220, 142, 0.28);
|
|
color: #9ae8ae;
|
|
background: rgba(110, 220, 142, 0.08);
|
|
}
|
|
.portal-alert--error {
|
|
border-color: rgba(232, 167, 107, 0.3);
|
|
color: #e8a76b;
|
|
background: rgba(232, 167, 107, 0.08);
|
|
}
|
|
|
|
.portal-welcome {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: flex-end;
|
|
gap: 40px;
|
|
padding-top: clamp(64px, 8vw, 110px);
|
|
padding-bottom: 48px;
|
|
}
|
|
|
|
.portal-welcome h1 {
|
|
max-width: 850px;
|
|
margin: 18px 0 14px;
|
|
font-size: clamp(38px, 5.5vw, 70px);
|
|
}
|
|
|
|
.portal-welcome h1 em {
|
|
font-family: var(--f-serif);
|
|
font-weight: 400;
|
|
color: var(--moon);
|
|
text-transform: none;
|
|
}
|
|
|
|
.portal-welcome .lead { max-width: 680px; margin: 0; }
|
|
|
|
.portal-welcome__status {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
min-width: max-content;
|
|
padding: 16px 20px;
|
|
border: 1px solid var(--panel-border);
|
|
border-radius: var(--radius-lg);
|
|
background: rgba(10, 13, 31, 0.58);
|
|
}
|
|
|
|
.portal-status-dot {
|
|
width: 9px;
|
|
height: 9px;
|
|
border-radius: 50%;
|
|
background: #6edc8e;
|
|
box-shadow: 0 0 12px rgba(110, 220, 142, 0.8);
|
|
}
|
|
|
|
.portal-status-dot.danger {
|
|
background: #e8a76b;
|
|
box-shadow: 0 0 12px rgba(232, 167, 107, 0.8);
|
|
}
|
|
|
|
.portal-welcome__status small,
|
|
.portal-welcome__status strong { display: block; }
|
|
.portal-welcome__status small {
|
|
font-family: var(--f-mono);
|
|
font-size: 9px;
|
|
letter-spacing: 0.15em;
|
|
text-transform: uppercase;
|
|
color: var(--text-mute);
|
|
}
|
|
.portal-welcome__status strong {
|
|
margin-top: 2px;
|
|
font-family: var(--f-display);
|
|
font-size: 13px;
|
|
font-weight: 500;
|
|
color: var(--ivory);
|
|
}
|
|
|
|
.portal-dashboard {
|
|
display: grid;
|
|
grid-template-columns: 210px minmax(0, 1fr);
|
|
gap: clamp(32px, 5vw, 70px);
|
|
align-items: start;
|
|
}
|
|
|
|
.portal-sidebar {
|
|
position: sticky;
|
|
top: 104px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 18px 0;
|
|
border-top: 1px solid var(--panel-border);
|
|
border-bottom: 1px solid var(--panel-border);
|
|
}
|
|
|
|
.portal-sidebar__label,
|
|
.portal-card-label {
|
|
margin-bottom: 10px;
|
|
font-family: var(--f-mono);
|
|
font-size: 9px;
|
|
letter-spacing: 0.2em;
|
|
text-transform: uppercase;
|
|
color: var(--text-mute);
|
|
}
|
|
|
|
.portal-sidebar button {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 13px;
|
|
padding: 13px 4px;
|
|
text-align: left;
|
|
font-family: var(--f-display);
|
|
font-size: 14px;
|
|
letter-spacing: 0.04em;
|
|
color: var(--text-mute);
|
|
transition: color var(--t-fast), padding var(--t-fast);
|
|
}
|
|
|
|
.portal-sidebar button span {
|
|
font-family: var(--f-mono);
|
|
font-size: 9px;
|
|
color: var(--text-dim);
|
|
}
|
|
|
|
.portal-sidebar button:hover,
|
|
.portal-sidebar button.active {
|
|
padding-left: 10px;
|
|
color: var(--ivory);
|
|
}
|
|
|
|
.portal-sidebar button.active span { color: var(--moon); }
|
|
|
|
.portal-sidebar__balance {
|
|
margin-top: 20px;
|
|
padding: 18px;
|
|
border: 1px solid var(--panel-border);
|
|
border-radius: var(--radius-lg);
|
|
background: linear-gradient(180deg, rgba(127, 184, 212, 0.06), rgba(91, 58, 138, 0.06));
|
|
}
|
|
|
|
.portal-sidebar__balance > * { display: block; }
|
|
.portal-sidebar__balance small,
|
|
.portal-sidebar__balance span {
|
|
font-family: var(--f-mono);
|
|
font-size: 9px;
|
|
letter-spacing: 0.14em;
|
|
text-transform: uppercase;
|
|
color: var(--text-mute);
|
|
}
|
|
.portal-sidebar__balance strong {
|
|
margin: 4px 0 2px;
|
|
font-family: var(--f-display);
|
|
font-size: 24px;
|
|
font-weight: 500;
|
|
color: var(--ivory);
|
|
}
|
|
|
|
.portal-content { min-width: 0; }
|
|
|
|
.portal-section {
|
|
scroll-margin-top: 90px;
|
|
padding: 38px 0 72px;
|
|
border-top: 1px solid var(--panel-border);
|
|
}
|
|
|
|
.portal-section:first-child { padding-top: 38px; }
|
|
|
|
.portal-section__head {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: flex-end;
|
|
gap: 24px;
|
|
margin-bottom: 28px;
|
|
}
|
|
|
|
.portal-section__head .eyebrow { margin-bottom: 10px; }
|
|
.portal-section__head h2 {
|
|
margin: 0;
|
|
font-size: clamp(32px, 4vw, 46px);
|
|
}
|
|
|
|
.portal-section__count {
|
|
font-family: var(--f-mono);
|
|
font-size: 10px;
|
|
letter-spacing: 0.14em;
|
|
text-transform: uppercase;
|
|
color: var(--text-mute);
|
|
}
|
|
|
|
.portal-grid {
|
|
display: grid;
|
|
gap: 18px;
|
|
}
|
|
|
|
.portal-grid--account { grid-template-columns: 1.25fr 0.75fr; }
|
|
.portal-grid--wallet { grid-template-columns: 0.9fr 1.1fr; }
|
|
|
|
.portal-card {
|
|
position: relative;
|
|
padding: 28px;
|
|
overflow: hidden;
|
|
border: 1px solid var(--panel-border);
|
|
border-radius: var(--radius-lg);
|
|
background:
|
|
radial-gradient(ellipse at 100% 0%, rgba(127, 184, 212, 0.055), transparent 52%),
|
|
linear-gradient(180deg, rgba(16, 20, 42, 0.78), rgba(10, 13, 31, 0.84));
|
|
box-shadow: 0 32px 90px -48px rgba(0, 0, 0, 0.9);
|
|
backdrop-filter: blur(10px);
|
|
}
|
|
|
|
.portal-stats {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
gap: 26px 28px;
|
|
margin: 0;
|
|
}
|
|
|
|
.portal-stats dt,
|
|
.portal-stats dd { margin: 0; }
|
|
.portal-stats dt {
|
|
margin-bottom: 5px;
|
|
font-family: var(--f-mono);
|
|
font-size: 9px;
|
|
letter-spacing: 0.14em;
|
|
text-transform: uppercase;
|
|
color: var(--text-mute);
|
|
}
|
|
.portal-stats dd {
|
|
overflow-wrap: anywhere;
|
|
font-family: var(--f-display);
|
|
font-size: 15px;
|
|
letter-spacing: 0.03em;
|
|
color: var(--ivory);
|
|
}
|
|
|
|
.portal-launcher-card {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
}
|
|
.portal-launcher-card h3 {
|
|
margin: 16px 0 10px;
|
|
font-size: 30px;
|
|
}
|
|
.portal-launcher-card p {
|
|
flex: 1;
|
|
margin: 0 0 24px;
|
|
font-family: var(--f-serif);
|
|
font-size: 17px;
|
|
line-height: 1.55;
|
|
color: var(--text-soft);
|
|
}
|
|
.portal-launcher-card .btn { width: 100%; padding-right: 18px; padding-left: 18px; }
|
|
|
|
.portal-file-note {
|
|
width: 100%;
|
|
margin-top: 13px;
|
|
overflow: hidden;
|
|
font-family: var(--f-mono);
|
|
font-size: 9px;
|
|
letter-spacing: 0.08em;
|
|
text-align: center;
|
|
text-overflow: ellipsis;
|
|
color: var(--text-mute);
|
|
}
|
|
|
|
.portal-small-button { padding: 11px 18px; }
|
|
|
|
.portal-character-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
gap: 16px;
|
|
}
|
|
|
|
.portal-character-card {
|
|
padding: 24px;
|
|
transition: transform var(--t-fast), border-color var(--t-fast);
|
|
}
|
|
|
|
.portal-character-card:hover {
|
|
border-color: var(--panel-border-strong);
|
|
transform: translateY(-2px);
|
|
}
|
|
|
|
.portal-character-card__head {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
margin-bottom: 26px;
|
|
}
|
|
|
|
.portal-character-level {
|
|
display: grid;
|
|
width: 42px;
|
|
height: 42px;
|
|
place-items: center;
|
|
border: 1px solid var(--panel-border-strong);
|
|
transform: rotate(45deg);
|
|
font-family: var(--f-display);
|
|
font-size: 14px;
|
|
color: var(--moon);
|
|
}
|
|
|
|
.portal-character-level > span { transform: rotate(-45deg); }
|
|
|
|
.portal-online {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 7px;
|
|
font-family: var(--f-mono);
|
|
font-size: 9px;
|
|
letter-spacing: 0.13em;
|
|
text-transform: uppercase;
|
|
color: var(--text-dim);
|
|
}
|
|
.portal-online::before {
|
|
width: 5px;
|
|
height: 5px;
|
|
border-radius: 50%;
|
|
content: "";
|
|
background: var(--text-dim);
|
|
}
|
|
.portal-online.online { color: #6edc8e; }
|
|
.portal-online.online::before {
|
|
background: #6edc8e;
|
|
box-shadow: 0 0 8px #6edc8e;
|
|
}
|
|
|
|
.portal-character-card h3 { margin: 0 0 4px; font-size: 28px; }
|
|
.portal-character-card > p { margin: 0 0 22px; color: var(--text-mute); font-size: 13px; }
|
|
.portal-character-card dl {
|
|
display: grid;
|
|
gap: 10px;
|
|
margin: 0;
|
|
padding-top: 16px;
|
|
border-top: 1px solid var(--panel-border);
|
|
}
|
|
.portal-character-card dl div {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
gap: 14px;
|
|
}
|
|
.portal-character-card dt,
|
|
.portal-character-card dd { margin: 0; font-size: 12px; }
|
|
.portal-character-card dt { color: var(--text-mute); }
|
|
.portal-character-card dd { text-align: right; color: var(--ivory); }
|
|
|
|
.portal-empty {
|
|
padding: 54px 30px;
|
|
text-align: center;
|
|
}
|
|
.portal-empty__moon {
|
|
display: block;
|
|
margin-bottom: 12px;
|
|
font-family: var(--f-display);
|
|
font-size: 52px;
|
|
color: var(--moon);
|
|
}
|
|
.portal-empty h3 { margin: 0; font-size: 30px; }
|
|
.portal-empty p {
|
|
margin: 12px 0 24px;
|
|
font-family: var(--f-serif);
|
|
font-size: 18px;
|
|
color: var(--text-soft);
|
|
}
|
|
|
|
.portal-wallet-card {
|
|
background:
|
|
radial-gradient(ellipse at 50% 0%, rgba(176, 136, 238, 0.14), transparent 58%),
|
|
linear-gradient(180deg, rgba(20, 24, 50, 0.88), rgba(10, 13, 31, 0.88));
|
|
}
|
|
|
|
.portal-balance {
|
|
margin-top: 8px;
|
|
font-family: var(--f-display);
|
|
font-size: clamp(44px, 6vw, 70px);
|
|
line-height: 1;
|
|
color: var(--ivory);
|
|
}
|
|
|
|
.portal-wallet-card > p {
|
|
margin: 8px 0 24px;
|
|
font-family: var(--f-serif);
|
|
font-size: 18px;
|
|
color: var(--moon);
|
|
}
|
|
|
|
.portal-deposit {
|
|
display: grid;
|
|
grid-template-columns: 1fr auto;
|
|
gap: 12px;
|
|
align-items: end;
|
|
padding-top: 22px;
|
|
border-top: 1px solid var(--panel-border);
|
|
}
|
|
|
|
.portal-deposit .portal-field { margin: 0; }
|
|
.portal-deposit .btn { padding: 15px 20px; }
|
|
|
|
.portal-rate {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
gap: 16px;
|
|
margin-top: 14px;
|
|
font-family: var(--f-mono);
|
|
font-size: 9px;
|
|
line-height: 1.5;
|
|
color: var(--text-mute);
|
|
}
|
|
|
|
.portal-history-card { padding: 28px 30px; }
|
|
.portal-history { margin-top: 7px; }
|
|
.portal-history__row {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
gap: 18px;
|
|
padding: 14px 0;
|
|
border-bottom: 1px solid var(--panel-border);
|
|
}
|
|
.portal-history__row:last-child { border-bottom: 0; }
|
|
.portal-history__row > span,
|
|
.portal-history__row small { display: block; }
|
|
.portal-history__row strong { font-size: 13px; font-weight: 500; color: var(--text-soft); }
|
|
.portal-history__row small {
|
|
margin-top: 3px;
|
|
font-family: var(--f-mono);
|
|
font-size: 9px;
|
|
color: var(--text-mute);
|
|
}
|
|
.portal-history__row > strong {
|
|
font-family: var(--f-mono);
|
|
white-space: nowrap;
|
|
color: var(--text-soft);
|
|
}
|
|
.portal-history__row > strong.positive { color: #6edc8e; }
|
|
.portal-history-empty {
|
|
display: grid;
|
|
min-height: 220px;
|
|
place-items: center;
|
|
font-family: var(--f-serif);
|
|
font-size: 18px;
|
|
color: var(--text-mute);
|
|
}
|
|
|
|
.portal-security-card {
|
|
display: grid;
|
|
grid-template-columns: 0.85fr 1.15fr;
|
|
gap: clamp(32px, 6vw, 80px);
|
|
padding: clamp(28px, 5vw, 52px);
|
|
}
|
|
.portal-security-card__copy h3 { margin: 0 0 14px; font-size: 30px; }
|
|
.portal-security-card__copy p {
|
|
margin: 0;
|
|
font-family: var(--f-serif);
|
|
font-size: 18px;
|
|
line-height: 1.55;
|
|
color: var(--text-soft);
|
|
}
|
|
.portal-security-card__copy ul {
|
|
display: grid;
|
|
gap: 10px;
|
|
margin: 24px 0 0;
|
|
padding: 0;
|
|
list-style: none;
|
|
font-size: 13px;
|
|
color: var(--text-mute);
|
|
}
|
|
.portal-security-card__copy li::before {
|
|
margin-right: 10px;
|
|
content: "✦";
|
|
color: var(--moon);
|
|
}
|
|
|
|
.portal-password-form { display: grid; gap: 17px; }
|
|
|
|
.portal-field {
|
|
display: block;
|
|
margin: 22px 0;
|
|
}
|
|
|
|
.portal-field > span {
|
|
display: block;
|
|
margin-bottom: 8px;
|
|
font-size: 11px;
|
|
font-weight: 600;
|
|
letter-spacing: 0.13em;
|
|
text-transform: uppercase;
|
|
color: var(--ivory);
|
|
}
|
|
|
|
.portal-field input {
|
|
width: 100%;
|
|
min-height: 50px;
|
|
padding: 13px 15px;
|
|
border: 1px solid var(--panel-border);
|
|
border-radius: var(--radius);
|
|
outline: 0;
|
|
background: rgba(7, 10, 24, 0.7);
|
|
font: inherit;
|
|
color: var(--ivory);
|
|
transition: border-color var(--t-fast), box-shadow var(--t-fast);
|
|
}
|
|
|
|
.portal-field input:focus {
|
|
border-color: var(--moon);
|
|
box-shadow: 0 0 0 3px rgba(127, 184, 212, 0.1);
|
|
}
|
|
|
|
.portal-field.has-error input { border-color: rgba(232, 167, 107, 0.58); }
|
|
.portal-field small,
|
|
.portal-field-error {
|
|
display: block;
|
|
margin-top: 7px;
|
|
font-family: var(--f-mono);
|
|
font-size: 10px;
|
|
line-height: 1.5;
|
|
color: #e8a76b;
|
|
}
|
|
|
|
.portal-submit { width: 100%; }
|
|
.portal-submit:disabled { opacity: 0.55; cursor: wait; }
|
|
|
|
.portal-auth {
|
|
display: grid;
|
|
grid-template-columns: 1.1fr 0.9fr;
|
|
gap: clamp(48px, 8vw, 110px);
|
|
align-items: center;
|
|
min-height: calc(100vh - 180px);
|
|
padding-top: clamp(60px, 8vw, 110px);
|
|
padding-bottom: clamp(70px, 9vw, 130px);
|
|
}
|
|
|
|
.portal-auth__intro h1 {
|
|
max-width: 760px;
|
|
margin: 20px 0 22px;
|
|
font-size: clamp(42px, 6.5vw, 82px);
|
|
}
|
|
.portal-auth__intro > p { max-width: 620px; margin: 0; }
|
|
|
|
.portal-feature-list {
|
|
display: grid;
|
|
gap: 0;
|
|
max-width: 590px;
|
|
margin-top: 40px;
|
|
border-top: 1px solid var(--panel-border);
|
|
}
|
|
.portal-feature-list div {
|
|
display: grid;
|
|
grid-template-columns: 38px 1fr;
|
|
align-items: center;
|
|
gap: 12px;
|
|
padding: 14px 0;
|
|
border-bottom: 1px solid var(--panel-border);
|
|
}
|
|
.portal-feature-list span {
|
|
font-family: var(--f-mono);
|
|
font-size: 9px;
|
|
letter-spacing: 0.15em;
|
|
color: var(--moon);
|
|
}
|
|
.portal-feature-list p { margin: 0; color: var(--text-soft); font-size: 13px; }
|
|
|
|
.portal-form-card {
|
|
padding: clamp(30px, 4vw, 46px);
|
|
background:
|
|
radial-gradient(ellipse at 50% 0%, rgba(127, 184, 212, 0.1), transparent 58%),
|
|
linear-gradient(180deg, rgba(16, 20, 42, 0.92), rgba(10, 13, 31, 0.92));
|
|
}
|
|
.portal-form-card__mark {
|
|
margin-bottom: 24px;
|
|
color: var(--moon);
|
|
filter: drop-shadow(0 0 18px rgba(127, 184, 212, 0.36));
|
|
}
|
|
.portal-form-card h2 { margin: 14px 0 8px; font-size: 34px; }
|
|
.portal-form-card > p { margin: 0 0 24px; color: var(--text-mute); font-size: 13px; }
|
|
.portal-back-link {
|
|
display: block;
|
|
margin-top: 20px;
|
|
text-align: center;
|
|
font-family: var(--f-mono);
|
|
font-size: 9px;
|
|
letter-spacing: 0.12em;
|
|
text-transform: uppercase;
|
|
color: var(--text-mute);
|
|
transition: color var(--t-fast);
|
|
}
|
|
.portal-back-link:hover { color: var(--moon); }
|
|
|
|
.portal-footer {
|
|
margin-top: 30px;
|
|
border-top: 1px solid var(--panel-border);
|
|
background: rgba(7, 10, 24, 0.45);
|
|
}
|
|
.portal-footer__inner {
|
|
min-height: 100px;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 30px;
|
|
font-family: var(--f-mono);
|
|
font-size: 9px;
|
|
letter-spacing: 0.13em;
|
|
text-transform: uppercase;
|
|
color: var(--text-dim);
|
|
}
|
|
.portal-footer__brand {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 9px;
|
|
color: var(--ivory);
|
|
}
|
|
.portal-footer__brand svg { color: var(--moon); }
|
|
.portal-footer nav {
|
|
display: flex;
|
|
gap: 22px;
|
|
margin-left: auto;
|
|
}
|
|
.portal-footer a { transition: color var(--t-fast); }
|
|
.portal-footer a:hover { color: var(--moon); }
|
|
|
|
.legal-page {
|
|
padding-top: clamp(70px, 9vw, 125px);
|
|
padding-bottom: clamp(80px, 10vw, 140px);
|
|
}
|
|
.legal-hero {
|
|
max-width: 940px;
|
|
padding: 0 0 64px;
|
|
}
|
|
.legal-hero h1 {
|
|
margin: 20px 0 24px;
|
|
font-size: clamp(46px, 8vw, 96px);
|
|
}
|
|
.legal-hero .lead { max-width: 760px; }
|
|
.legal-effective {
|
|
display: inline-flex;
|
|
gap: 16px;
|
|
margin-top: 30px;
|
|
padding: 12px 16px;
|
|
border: 1px solid var(--panel-border);
|
|
border-radius: var(--radius);
|
|
background: rgba(10, 13, 31, 0.5);
|
|
font-family: var(--f-mono);
|
|
font-size: 9px;
|
|
letter-spacing: 0.12em;
|
|
text-transform: uppercase;
|
|
}
|
|
.legal-effective span { color: var(--text-mute); }
|
|
.legal-effective strong { font-weight: 500; color: var(--moon); }
|
|
|
|
.legal-layout {
|
|
display: grid;
|
|
grid-template-columns: 230px minmax(0, 800px);
|
|
gap: clamp(36px, 6vw, 82px);
|
|
align-items: start;
|
|
}
|
|
.legal-toc {
|
|
position: sticky;
|
|
top: 110px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 18px 0;
|
|
border-top: 1px solid var(--panel-border);
|
|
border-bottom: 1px solid var(--panel-border);
|
|
}
|
|
.legal-toc > span {
|
|
margin-bottom: 10px;
|
|
font-family: var(--f-mono);
|
|
font-size: 9px;
|
|
letter-spacing: 0.2em;
|
|
text-transform: uppercase;
|
|
color: var(--text-mute);
|
|
}
|
|
.legal-toc a {
|
|
display: grid;
|
|
grid-template-columns: 28px 1fr;
|
|
gap: 8px;
|
|
padding: 8px 0;
|
|
font-family: var(--f-serif);
|
|
font-size: 15px;
|
|
line-height: 1.25;
|
|
color: var(--text-soft);
|
|
transition: color var(--t-fast);
|
|
}
|
|
.legal-toc a:hover { color: var(--moon); }
|
|
.legal-toc small {
|
|
padding-top: 3px;
|
|
font-family: var(--f-mono);
|
|
font-size: 8px;
|
|
color: var(--text-dim);
|
|
}
|
|
.legal-document { padding: clamp(30px, 5vw, 58px); }
|
|
.legal-document section {
|
|
scroll-margin-top: 100px;
|
|
padding: 42px 0;
|
|
border-bottom: 1px solid var(--panel-border);
|
|
}
|
|
.legal-document section:first-child { padding-top: 0; }
|
|
.legal-document section:last-child { padding-bottom: 0; border-bottom: 0; }
|
|
.legal-section-number {
|
|
display: block;
|
|
margin-bottom: 9px;
|
|
font-family: var(--f-mono);
|
|
font-size: 9px;
|
|
letter-spacing: 0.18em;
|
|
color: var(--moon);
|
|
}
|
|
.legal-document h2 { margin: 0 0 20px; font-size: clamp(27px, 4vw, 38px); }
|
|
.legal-document p,
|
|
.legal-document li {
|
|
font-family: var(--f-serif);
|
|
font-size: 18px;
|
|
line-height: 1.7;
|
|
color: var(--text-soft);
|
|
}
|
|
.legal-document p { margin: 0 0 15px; }
|
|
.legal-document ul {
|
|
display: grid;
|
|
gap: 10px;
|
|
margin: 18px 0;
|
|
padding-left: 24px;
|
|
}
|
|
.legal-document li::marker { color: var(--moon); }
|
|
.legal-document .legal-note {
|
|
margin-top: 22px;
|
|
padding: 17px 19px;
|
|
border-left: 2px solid var(--moon);
|
|
background: rgba(127, 184, 212, 0.06);
|
|
font-size: 16px;
|
|
color: var(--ivory);
|
|
}
|
|
|
|
@media (max-width: 1080px) {
|
|
.portal-nav { gap: 16px; }
|
|
.portal-nav a { font-size: 9px; }
|
|
.portal-brand small { display: none; }
|
|
.portal-dashboard { grid-template-columns: 180px minmax(0, 1fr); gap: 34px; }
|
|
.portal-character-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
|
|
}
|
|
|
|
@media (max-width: 880px) {
|
|
.portal-nav--desktop { display: none; }
|
|
.portal-menu-toggle { display: flex; }
|
|
.portal-header__inner { min-height: 66px; }
|
|
.portal-welcome {
|
|
align-items: flex-start;
|
|
flex-direction: column;
|
|
padding-top: 60px;
|
|
}
|
|
.portal-dashboard { display: block; }
|
|
.portal-sidebar {
|
|
position: static;
|
|
flex-direction: row;
|
|
overflow-x: auto;
|
|
gap: 5px;
|
|
padding: 10px 0;
|
|
scrollbar-width: none;
|
|
}
|
|
.portal-sidebar::-webkit-scrollbar { display: none; }
|
|
.portal-sidebar__label,
|
|
.portal-sidebar__balance { display: none; }
|
|
.portal-sidebar button {
|
|
flex: 0 0 auto;
|
|
padding: 10px 13px;
|
|
border: 1px solid transparent;
|
|
}
|
|
.portal-sidebar button:hover,
|
|
.portal-sidebar button.active {
|
|
padding-left: 13px;
|
|
border-color: var(--panel-border);
|
|
background: rgba(127, 184, 212, 0.05);
|
|
}
|
|
.portal-grid--account,
|
|
.portal-grid--wallet,
|
|
.portal-security-card,
|
|
.portal-auth { grid-template-columns: 1fr; }
|
|
.portal-auth { min-height: auto; }
|
|
.portal-auth__intro h1 { max-width: 680px; }
|
|
.legal-layout { grid-template-columns: 1fr; }
|
|
.legal-toc { position: static; }
|
|
}
|
|
|
|
@media (max-width: 640px) {
|
|
.portal-header__inner { gap: 12px; }
|
|
.portal-brand strong { font-size: 14px; }
|
|
.portal-welcome { gap: 24px; padding-bottom: 32px; }
|
|
.portal-welcome h1 { font-size: 37px; }
|
|
.portal-welcome__status { width: 100%; }
|
|
.portal-section { padding: 30px 0 54px; }
|
|
.portal-section__head { align-items: flex-start; flex-direction: column; }
|
|
.portal-stats,
|
|
.portal-character-grid { grid-template-columns: 1fr; }
|
|
.portal-card { padding: 23px; }
|
|
.portal-launcher-card h3 { font-size: 27px; }
|
|
.portal-deposit { grid-template-columns: 1fr; }
|
|
.portal-deposit .btn { width: 100%; }
|
|
.portal-rate { flex-direction: column; gap: 4px; }
|
|
.portal-security-card { padding: 25px; }
|
|
.portal-auth { padding-top: 54px; }
|
|
.portal-auth__intro h1 { font-size: 42px; }
|
|
.portal-footer__inner {
|
|
align-items: flex-start;
|
|
flex-direction: column;
|
|
padding-top: 28px;
|
|
padding-bottom: 28px;
|
|
}
|
|
.portal-footer nav { flex-direction: column; gap: 9px; margin-left: 0; }
|
|
.footer-bottom { align-items: flex-start; flex-direction: column; gap: 12px; }
|
|
.legal-hero { padding-bottom: 42px; }
|
|
.legal-hero h1 { font-size: 43px; overflow-wrap: anywhere; }
|
|
.legal-effective { align-items: flex-start; flex-direction: column; gap: 5px; }
|
|
.legal-document { padding: 25px; }
|
|
.legal-document section { padding: 34px 0; }
|
|
.legal-document p,
|
|
.legal-document li { font-size: 17px; }
|
|
}
|
|
|
|
/* ------------------------- Inertia admin ------------------------- */
|
|
.admin-bar {
|
|
position: sticky;
|
|
top: 76px;
|
|
z-index: 35;
|
|
border-bottom: 1px solid var(--panel-border);
|
|
background: rgba(10, 13, 31, 0.9);
|
|
backdrop-filter: blur(16px);
|
|
}
|
|
|
|
.admin-bar__inner {
|
|
display: flex;
|
|
align-items: center;
|
|
min-height: 54px;
|
|
overflow-x: auto;
|
|
scrollbar-width: none;
|
|
}
|
|
.admin-bar__inner::-webkit-scrollbar { display: none; }
|
|
.admin-bar a {
|
|
position: relative;
|
|
display: flex;
|
|
flex: 0 0 auto;
|
|
align-items: center;
|
|
gap: 8px;
|
|
padding: 17px 20px;
|
|
font-family: var(--f-mono);
|
|
font-size: 9px;
|
|
letter-spacing: 0.14em;
|
|
text-transform: uppercase;
|
|
color: var(--text-mute);
|
|
transition: color var(--t-fast), background var(--t-fast);
|
|
}
|
|
.admin-bar a:first-child { margin-left: -20px; }
|
|
.admin-bar a::after {
|
|
position: absolute;
|
|
right: 20px;
|
|
bottom: -1px;
|
|
left: 20px;
|
|
height: 1px;
|
|
content: "";
|
|
background: var(--moon);
|
|
transform: scaleX(0);
|
|
transition: transform var(--t-fast);
|
|
}
|
|
.admin-bar a:hover,
|
|
.admin-bar a.active {
|
|
color: var(--ivory);
|
|
background: rgba(127, 184, 212, 0.035);
|
|
}
|
|
.admin-bar a.active::after { transform: scaleX(1); }
|
|
.admin-bar small { font-size: 8px; color: var(--moon); }
|
|
|
|
.admin-hero {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: flex-end;
|
|
gap: 40px;
|
|
padding-top: clamp(60px, 8vw, 105px);
|
|
padding-bottom: clamp(42px, 6vw, 70px);
|
|
}
|
|
.admin-hero h1 {
|
|
max-width: 920px;
|
|
margin: 19px 0 15px;
|
|
font-size: clamp(43px, 7vw, 88px);
|
|
}
|
|
.admin-hero .lead { max-width: 760px; margin: 0; }
|
|
.admin-hero__badge {
|
|
min-width: 150px;
|
|
padding: 20px 24px;
|
|
border: 1px solid var(--panel-border);
|
|
border-radius: var(--radius-lg);
|
|
text-align: right;
|
|
background: linear-gradient(180deg, rgba(127, 184, 212, 0.06), rgba(91, 58, 138, 0.04));
|
|
}
|
|
.admin-hero__badge small,
|
|
.admin-hero__badge strong { display: block; }
|
|
.admin-hero__badge small {
|
|
font-family: var(--f-mono);
|
|
font-size: 8px;
|
|
letter-spacing: 0.16em;
|
|
text-transform: uppercase;
|
|
color: var(--text-mute);
|
|
}
|
|
.admin-hero__badge strong {
|
|
margin-top: 4px;
|
|
font-family: var(--f-display);
|
|
font-size: 38px;
|
|
font-weight: 500;
|
|
line-height: 1;
|
|
color: var(--ivory);
|
|
}
|
|
|
|
.admin-page { padding-bottom: 40px; }
|
|
.admin-section {
|
|
padding: 44px 0 76px;
|
|
border-top: 1px solid var(--panel-border);
|
|
}
|
|
.admin-section__head {
|
|
display: flex;
|
|
align-items: flex-end;
|
|
justify-content: space-between;
|
|
gap: 40px;
|
|
margin-bottom: 30px;
|
|
}
|
|
.admin-section__head .eyebrow { margin-bottom: 9px; }
|
|
.admin-section__head h2,
|
|
.admin-panel > h2 {
|
|
margin: 0;
|
|
font-size: clamp(31px, 4vw, 45px);
|
|
}
|
|
.admin-section__head > p {
|
|
max-width: 500px;
|
|
margin: 0;
|
|
text-align: right;
|
|
font-family: var(--f-serif);
|
|
font-size: 17px;
|
|
line-height: 1.5;
|
|
color: var(--text-mute);
|
|
}
|
|
|
|
.admin-stat-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
gap: 14px;
|
|
margin-bottom: 20px;
|
|
}
|
|
.admin-stat { padding: 22px 24px; }
|
|
.admin-stat span,
|
|
.admin-stat small,
|
|
.admin-stat strong { display: block; }
|
|
.admin-stat span {
|
|
font-family: var(--f-mono);
|
|
font-size: 9px;
|
|
letter-spacing: 0.17em;
|
|
text-transform: uppercase;
|
|
color: var(--text-mute);
|
|
}
|
|
.admin-stat strong {
|
|
margin-top: 5px;
|
|
font-family: var(--f-display);
|
|
font-size: 34px;
|
|
font-weight: 500;
|
|
color: var(--ivory);
|
|
}
|
|
.admin-stat small { color: var(--text-dim); }
|
|
|
|
.admin-split {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
gap: 18px;
|
|
align-items: start;
|
|
}
|
|
.admin-split--form { grid-template-columns: 1.05fr 0.95fr; }
|
|
.admin-panel { padding: clamp(26px, 4vw, 42px); }
|
|
.admin-panel > h2 { margin: 10px 0 20px; }
|
|
.admin-panel > h3 { margin: 8px 0 16px; font-size: 29px; }
|
|
.admin-panel > p {
|
|
margin: 0 0 22px;
|
|
font-family: var(--f-serif);
|
|
font-size: 17px;
|
|
line-height: 1.55;
|
|
color: var(--text-soft);
|
|
}
|
|
.admin-kicker {
|
|
display: block;
|
|
font-family: var(--f-mono);
|
|
font-size: 9px;
|
|
letter-spacing: 0.19em;
|
|
text-transform: uppercase;
|
|
color: var(--moon);
|
|
}
|
|
|
|
.admin-inline-form {
|
|
display: grid;
|
|
grid-template-columns: 1fr auto;
|
|
align-items: end;
|
|
gap: 12px;
|
|
margin-top: 24px;
|
|
}
|
|
.admin-inline-form .admin-field { margin: 0; }
|
|
.admin-inline-form .btn { min-height: 50px; padding: 14px 20px; }
|
|
|
|
.admin-form { margin-top: 24px; }
|
|
.admin-form-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
gap: 0 15px;
|
|
}
|
|
.admin-field {
|
|
display: block;
|
|
margin: 0 0 17px;
|
|
min-width: 0;
|
|
}
|
|
.admin-field--wide { grid-column: 1 / -1; }
|
|
.admin-field > span {
|
|
display: block;
|
|
margin-bottom: 7px;
|
|
font-family: var(--f-sans);
|
|
font-size: 10px;
|
|
font-weight: 600;
|
|
letter-spacing: 0.13em;
|
|
text-transform: uppercase;
|
|
color: var(--ivory);
|
|
}
|
|
.admin-field input,
|
|
.admin-field select,
|
|
.admin-field textarea,
|
|
.admin-search input {
|
|
width: 100%;
|
|
min-height: 48px;
|
|
padding: 12px 14px;
|
|
border: 1px solid var(--panel-border);
|
|
border-radius: var(--radius);
|
|
outline: 0;
|
|
background: rgba(7, 10, 24, 0.72);
|
|
font-family: var(--f-sans);
|
|
font-size: 14px;
|
|
color: var(--ivory);
|
|
transition: border-color var(--t-fast), box-shadow var(--t-fast);
|
|
}
|
|
.admin-field textarea {
|
|
min-height: 92px;
|
|
resize: vertical;
|
|
line-height: 1.55;
|
|
}
|
|
.admin-field select[multiple] { min-height: 90px; }
|
|
.admin-field input[type="file"] { padding: 10px; }
|
|
.admin-field input:focus,
|
|
.admin-field select:focus,
|
|
.admin-field textarea:focus,
|
|
.admin-search input:focus {
|
|
border-color: var(--moon);
|
|
box-shadow: 0 0 0 3px rgba(127, 184, 212, 0.09);
|
|
}
|
|
.admin-field small,
|
|
.admin-field em {
|
|
display: block;
|
|
margin-top: 6px;
|
|
font-family: var(--f-sans);
|
|
font-size: 11px;
|
|
font-style: normal;
|
|
line-height: 1.45;
|
|
}
|
|
.admin-field small { color: #e8a76b; }
|
|
.admin-field em { color: var(--text-mute); }
|
|
|
|
.admin-check-row {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 14px 28px;
|
|
}
|
|
.admin-check {
|
|
position: relative;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
margin: 4px 0 18px;
|
|
color: var(--text-soft);
|
|
font-size: 13px;
|
|
cursor: pointer;
|
|
}
|
|
.admin-check input {
|
|
position: absolute;
|
|
opacity: 0;
|
|
pointer-events: none;
|
|
}
|
|
.admin-check__box {
|
|
position: relative;
|
|
width: 18px;
|
|
height: 18px;
|
|
flex: 0 0 auto;
|
|
border: 1px solid var(--panel-border-strong);
|
|
border-radius: 2px;
|
|
background: rgba(7, 10, 24, 0.7);
|
|
}
|
|
.admin-check input:checked + .admin-check__box {
|
|
border-color: var(--moon);
|
|
background: var(--moon);
|
|
}
|
|
.admin-check input:checked + .admin-check__box::after {
|
|
position: absolute;
|
|
top: 2px;
|
|
left: 5px;
|
|
width: 5px;
|
|
height: 9px;
|
|
content: "";
|
|
border-right: 2px solid var(--bg-0);
|
|
border-bottom: 2px solid var(--bg-0);
|
|
transform: rotate(45deg);
|
|
}
|
|
.admin-submit { min-width: 190px; padding: 14px 24px; }
|
|
.admin-submit:disabled { opacity: 0.55; cursor: wait; }
|
|
.admin-form-actions {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
align-items: center;
|
|
gap: 12px;
|
|
}
|
|
.admin-danger-button {
|
|
padding: 13px 21px;
|
|
border-color: rgba(232, 167, 107, 0.22);
|
|
color: #e8a76b;
|
|
}
|
|
.admin-danger-button:hover {
|
|
border-color: rgba(232, 167, 107, 0.55);
|
|
background: rgba(232, 167, 107, 0.06);
|
|
}
|
|
|
|
.admin-compact-list {
|
|
max-height: 370px;
|
|
margin-top: 18px;
|
|
overflow-y: auto;
|
|
}
|
|
.admin-compact-list > div {
|
|
display: grid;
|
|
grid-template-columns: 1.2fr 0.8fr;
|
|
gap: 18px;
|
|
padding: 14px 0;
|
|
border-bottom: 1px solid var(--panel-border);
|
|
}
|
|
.admin-compact-list > div:last-child { border-bottom: 0; }
|
|
.admin-compact-list span,
|
|
.admin-compact-list strong,
|
|
.admin-compact-list small { display: block; }
|
|
.admin-compact-list > div > span:last-child { text-align: right; }
|
|
.admin-compact-list strong { font-size: 12px; font-weight: 500; color: var(--text-soft); }
|
|
.admin-compact-list small { margin-top: 3px; font-size: 10px; color: var(--text-mute); }
|
|
.admin-compact-list .admin-code {
|
|
font-family: var(--f-mono);
|
|
letter-spacing: 0.08em;
|
|
color: var(--ivory);
|
|
}
|
|
.admin-positive { color: #6edc8e !important; }
|
|
.admin-empty-inline {
|
|
padding: 28px 0;
|
|
font-family: var(--f-serif);
|
|
font-size: 17px;
|
|
color: var(--text-mute);
|
|
}
|
|
|
|
.admin-toolbar {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
gap: 20px;
|
|
margin-bottom: 20px;
|
|
}
|
|
.admin-tabs {
|
|
display: inline-flex;
|
|
padding: 3px;
|
|
border: 1px solid var(--panel-border);
|
|
border-radius: var(--radius);
|
|
background: rgba(7, 10, 24, 0.54);
|
|
}
|
|
.admin-tabs a {
|
|
padding: 10px 15px;
|
|
font-family: var(--f-mono);
|
|
font-size: 9px;
|
|
letter-spacing: 0.12em;
|
|
text-transform: uppercase;
|
|
color: var(--text-mute);
|
|
}
|
|
.admin-tabs a.active { background: var(--ivory); color: var(--bg-0); }
|
|
.admin-tabs span { margin-left: 5px; opacity: 0.7; }
|
|
.admin-search {
|
|
display: flex;
|
|
flex: 1;
|
|
justify-content: flex-end;
|
|
gap: 9px;
|
|
}
|
|
.admin-search input { max-width: 350px; }
|
|
.admin-search .btn { min-height: 48px; padding: 12px 18px; }
|
|
|
|
.admin-account-list,
|
|
.admin-ledger,
|
|
.admin-editor-list {
|
|
display: grid;
|
|
gap: 12px;
|
|
}
|
|
.admin-account { padding: 0; }
|
|
.admin-account__main {
|
|
display: grid;
|
|
grid-template-columns: minmax(230px, 1.1fr) minmax(340px, 1.6fr) minmax(250px, 1fr) auto;
|
|
align-items: end;
|
|
gap: 22px;
|
|
padding: 22px 24px;
|
|
}
|
|
.admin-account__identity {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
align-self: center;
|
|
}
|
|
.admin-account__identity > span:last-child,
|
|
.admin-account__identity strong,
|
|
.admin-account__identity small { display: block; min-width: 0; }
|
|
.admin-account__identity strong {
|
|
overflow: hidden;
|
|
font-family: var(--f-display);
|
|
font-size: 15px;
|
|
font-weight: 500;
|
|
letter-spacing: 0.06em;
|
|
text-overflow: ellipsis;
|
|
color: var(--ivory);
|
|
}
|
|
.admin-account__identity small {
|
|
margin-top: 4px;
|
|
overflow: hidden;
|
|
font-size: 10px;
|
|
text-overflow: ellipsis;
|
|
color: var(--text-mute);
|
|
}
|
|
.admin-account__status {
|
|
width: 8px;
|
|
height: 8px;
|
|
flex: 0 0 auto;
|
|
border-radius: 50%;
|
|
background: #6edc8e;
|
|
box-shadow: 0 0 9px rgba(110, 220, 142, 0.7);
|
|
}
|
|
.admin-account__status.danger {
|
|
background: #e8a76b;
|
|
box-shadow: 0 0 9px rgba(232, 167, 107, 0.7);
|
|
}
|
|
.admin-account__stats {
|
|
display: grid;
|
|
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
gap: 12px;
|
|
margin: 0;
|
|
}
|
|
.admin-account__stats dt,
|
|
.admin-account__stats dd { margin: 0; }
|
|
.admin-account__stats dt {
|
|
margin-bottom: 3px;
|
|
font-family: var(--f-mono);
|
|
font-size: 7px;
|
|
letter-spacing: 0.11em;
|
|
text-transform: uppercase;
|
|
color: var(--text-dim);
|
|
}
|
|
.admin-account__stats dd {
|
|
font-size: 10px;
|
|
line-height: 1.35;
|
|
color: var(--text-soft);
|
|
}
|
|
.admin-access-form {
|
|
display: flex;
|
|
align-items: end;
|
|
gap: 8px;
|
|
}
|
|
.admin-access-form .admin-field { min-width: 150px; margin: 0; }
|
|
.admin-access-form .admin-field > span { font-size: 8px; }
|
|
.admin-access-form select { min-height: 42px; padding: 9px 10px; font-size: 11px; }
|
|
.admin-access-form .btn { min-height: 42px; padding: 10px 13px; font-size: 9px; }
|
|
.admin-expand {
|
|
padding: 10px 0;
|
|
font-family: var(--f-mono);
|
|
font-size: 8px;
|
|
letter-spacing: 0.1em;
|
|
text-transform: uppercase;
|
|
color: var(--moon);
|
|
}
|
|
.admin-account__characters {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
gap: 9px;
|
|
padding: 18px 24px 22px;
|
|
border-top: 1px solid var(--panel-border);
|
|
background: rgba(7, 10, 24, 0.38);
|
|
}
|
|
.admin-account__characters > div {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
gap: 12px;
|
|
padding: 12px 14px;
|
|
border: 1px solid var(--panel-border);
|
|
border-radius: var(--radius);
|
|
}
|
|
.admin-account__characters span,
|
|
.admin-account__characters strong,
|
|
.admin-account__characters small { display: block; }
|
|
.admin-account__characters > div > span:last-child { text-align: right; }
|
|
.admin-account__characters strong { font-size: 11px; color: var(--ivory); }
|
|
.admin-account__characters small { margin-top: 2px; font-size: 9px; color: var(--text-mute); }
|
|
.admin-account__characters p { grid-column: 1 / -1; color: var(--text-mute); }
|
|
|
|
.admin-rules > div {
|
|
display: grid;
|
|
grid-template-columns: 32px 1fr;
|
|
gap: 12px;
|
|
padding: 16px 0;
|
|
border-top: 1px solid var(--panel-border);
|
|
}
|
|
.admin-rules > div > span {
|
|
padding-top: 3px;
|
|
font-family: var(--f-mono);
|
|
font-size: 9px;
|
|
color: var(--moon);
|
|
}
|
|
.admin-rules > div > p {
|
|
margin: 0;
|
|
font-family: var(--f-serif);
|
|
font-size: 17px;
|
|
color: var(--text-soft);
|
|
}
|
|
|
|
.admin-ledger__row {
|
|
display: grid;
|
|
grid-template-columns: minmax(180px, 0.85fr) minmax(300px, 1.5fr) minmax(160px, 0.65fr);
|
|
align-items: center;
|
|
gap: 24px;
|
|
padding: 19px 22px;
|
|
}
|
|
.admin-ledger__row > div,
|
|
.admin-ledger__row strong,
|
|
.admin-ledger__row small { display: block; min-width: 0; }
|
|
.admin-ledger__row strong { font-size: 12px; font-weight: 500; color: var(--text-soft); }
|
|
.admin-ledger__row small {
|
|
margin-top: 3px;
|
|
overflow-wrap: anywhere;
|
|
font-size: 9px;
|
|
color: var(--text-mute);
|
|
}
|
|
.admin-ledger__amount { text-align: right; }
|
|
.admin-ledger__amount > strong {
|
|
font-family: var(--f-mono);
|
|
font-size: 14px;
|
|
color: var(--text-soft);
|
|
}
|
|
.admin-ledger__amount > strong.positive { color: #6edc8e; }
|
|
|
|
.admin-notice {
|
|
margin-bottom: 20px;
|
|
padding: 15px 18px;
|
|
border: 1px solid var(--panel-border);
|
|
border-left: 2px solid var(--arcane-2);
|
|
border-radius: var(--radius);
|
|
background: rgba(91, 58, 138, 0.07);
|
|
font-size: 12px;
|
|
line-height: 1.55;
|
|
color: var(--text-mute);
|
|
}
|
|
.admin-notice code { color: var(--moon); }
|
|
|
|
.admin-editor { padding: 0; overflow: clip; }
|
|
.admin-editor > summary {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 25px;
|
|
padding: 21px 24px;
|
|
list-style: none;
|
|
cursor: pointer;
|
|
transition: background var(--t-fast);
|
|
}
|
|
.admin-editor > summary::-webkit-details-marker { display: none; }
|
|
.admin-editor > summary:hover { background: rgba(127, 184, 212, 0.035); }
|
|
.admin-editor > summary::before {
|
|
width: 7px;
|
|
height: 7px;
|
|
flex: 0 0 auto;
|
|
content: "";
|
|
border-right: 1px solid var(--moon);
|
|
border-bottom: 1px solid var(--moon);
|
|
transform: rotate(-45deg);
|
|
transition: transform var(--t-fast);
|
|
}
|
|
.admin-editor[open] > summary::before { transform: rotate(45deg); }
|
|
.admin-editor > summary > span:first-of-type { flex: 1; min-width: 0; }
|
|
.admin-editor > summary strong,
|
|
.admin-editor > summary small { display: block; }
|
|
.admin-editor > summary strong {
|
|
overflow: hidden;
|
|
font-family: var(--f-display);
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
letter-spacing: 0.04em;
|
|
text-overflow: ellipsis;
|
|
color: var(--ivory);
|
|
}
|
|
.admin-editor > summary small { margin-top: 4px; font-size: 10px; color: var(--text-mute); }
|
|
.admin-editor__body {
|
|
padding: 26px 30px 30px;
|
|
border-top: 1px solid var(--panel-border);
|
|
background: rgba(7, 10, 24, 0.32);
|
|
}
|
|
.admin-editor__body > .admin-danger-button { margin-top: 16px; }
|
|
.admin-pill {
|
|
flex: 0 0 auto;
|
|
padding: 7px 10px;
|
|
border: 1px solid rgba(127, 184, 212, 0.25);
|
|
border-radius: 999px;
|
|
font-family: var(--f-mono);
|
|
font-size: 8px;
|
|
letter-spacing: 0.1em;
|
|
text-transform: uppercase;
|
|
color: var(--moon);
|
|
background: rgba(127, 184, 212, 0.06);
|
|
}
|
|
.admin-pill.muted { border-color: var(--panel-border); color: var(--text-mute); background: transparent; }
|
|
.admin-preline { white-space: pre-line; }
|
|
|
|
.admin-subform {
|
|
margin: 8px 0 18px;
|
|
border-top: 1px solid var(--panel-border);
|
|
border-bottom: 1px solid var(--panel-border);
|
|
}
|
|
.admin-subform summary {
|
|
padding: 14px 0;
|
|
font-family: var(--f-mono);
|
|
font-size: 9px;
|
|
letter-spacing: 0.14em;
|
|
text-transform: uppercase;
|
|
color: var(--moon);
|
|
cursor: pointer;
|
|
}
|
|
.admin-rewards {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
gap: 0 18px;
|
|
padding: 10px 0;
|
|
}
|
|
.admin-rewards > div {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
gap: 10px;
|
|
}
|
|
|
|
.admin-create-panel {
|
|
max-width: 880px;
|
|
margin-top: 18px;
|
|
}
|
|
.admin-news-image {
|
|
width: min(100%, 380px);
|
|
max-height: 240px;
|
|
margin-bottom: 8px;
|
|
border: 1px solid var(--panel-border);
|
|
border-radius: var(--radius-lg);
|
|
object-fit: cover;
|
|
}
|
|
.admin-upload input::file-selector-button {
|
|
margin-right: 12px;
|
|
padding: 6px 10px;
|
|
border: 1px solid var(--panel-border-strong);
|
|
border-radius: var(--radius);
|
|
background: rgba(127, 184, 212, 0.06);
|
|
color: var(--ivory);
|
|
cursor: pointer;
|
|
}
|
|
.admin-code-block,
|
|
.admin-feed-preview {
|
|
display: block;
|
|
width: 100%;
|
|
margin: 18px 0 0;
|
|
padding: 17px;
|
|
overflow-x: auto;
|
|
border: 1px solid var(--panel-border);
|
|
border-radius: var(--radius);
|
|
background: rgba(7, 10, 24, 0.65);
|
|
font-family: var(--f-mono);
|
|
font-size: 10px;
|
|
line-height: 1.65;
|
|
white-space: pre-wrap;
|
|
overflow-wrap: anywhere;
|
|
color: var(--text-soft);
|
|
}
|
|
.admin-code-block { color: var(--moon); }
|
|
.admin-feed-preview { max-height: 360px; overflow-y: auto; }
|
|
|
|
.admin-empty {
|
|
padding: 50px 30px;
|
|
text-align: center;
|
|
color: var(--text-mute);
|
|
}
|
|
.admin-empty > span { font-family: var(--f-display); font-size: 42px; color: var(--moon); }
|
|
.admin-empty h3 { margin: 7px 0; font-size: 28px; }
|
|
.admin-empty p { margin: 0; font-family: var(--f-serif); font-size: 18px; }
|
|
|
|
@media (max-width: 1180px) {
|
|
.admin-account__main {
|
|
grid-template-columns: minmax(220px, 1fr) minmax(300px, 1.4fr) minmax(250px, 1fr);
|
|
}
|
|
.admin-expand { grid-column: 1 / -1; justify-self: start; padding: 0; }
|
|
}
|
|
|
|
@media (max-width: 960px) {
|
|
.admin-bar { top: 66px; }
|
|
.admin-split,
|
|
.admin-split--form { grid-template-columns: 1fr; }
|
|
.admin-toolbar,
|
|
.admin-section__head { align-items: flex-start; flex-direction: column; }
|
|
.admin-section__head > p { text-align: left; }
|
|
.admin-search { width: 100%; justify-content: flex-start; }
|
|
.admin-account__main { grid-template-columns: 1fr 1fr; align-items: center; }
|
|
.admin-account__stats { grid-column: 1 / -1; grid-row: 2; }
|
|
.admin-access-form { grid-column: 1 / -1; }
|
|
.admin-expand { grid-column: auto; justify-self: end; }
|
|
.admin-account__characters { grid-template-columns: repeat(2, minmax(0, 1fr)); }
|
|
}
|
|
|
|
@media (max-width: 700px) {
|
|
.admin-bar a:first-child { margin-left: 0; }
|
|
.admin-bar a { padding: 15px 13px; }
|
|
.admin-bar a::after { right: 13px; left: 13px; }
|
|
.admin-hero { align-items: flex-start; flex-direction: column; padding-top: 55px; }
|
|
.admin-hero h1 { font-size: 43px; overflow-wrap: anywhere; }
|
|
.admin-hero__badge { width: 100%; text-align: left; }
|
|
.admin-section { padding: 36px 0 58px; }
|
|
.admin-stat-grid { grid-template-columns: 1fr; }
|
|
.admin-form-grid,
|
|
.admin-rewards { grid-template-columns: 1fr; }
|
|
.admin-inline-form { grid-template-columns: 1fr; }
|
|
.admin-inline-form .btn,
|
|
.admin-submit { width: 100%; }
|
|
.admin-toolbar { align-items: stretch; }
|
|
.admin-tabs { width: 100%; }
|
|
.admin-tabs a { flex: 1; text-align: center; }
|
|
.admin-search { flex-wrap: wrap; }
|
|
.admin-search input { max-width: none; flex: 1 1 100%; }
|
|
.admin-account__main { grid-template-columns: 1fr; }
|
|
.admin-account__stats,
|
|
.admin-access-form,
|
|
.admin-expand { grid-column: auto; grid-row: auto; }
|
|
.admin-account__stats { grid-template-columns: 1fr 1fr; }
|
|
.admin-access-form { flex-direction: column; align-items: stretch; }
|
|
.admin-access-form .admin-field { width: 100%; }
|
|
.admin-expand { justify-self: start; }
|
|
.admin-account__characters { grid-template-columns: 1fr; }
|
|
.admin-ledger__row { grid-template-columns: 1fr; gap: 14px; }
|
|
.admin-ledger__amount { text-align: left; }
|
|
.admin-editor > summary { align-items: flex-start; flex-wrap: wrap; gap: 13px; padding: 18px; }
|
|
.admin-editor > summary::before { margin-top: 5px; }
|
|
.admin-editor__body { padding: 22px 18px; }
|
|
.admin-rewards > div { grid-template-columns: 1fr 1fr; }
|
|
.admin-form-actions { align-items: stretch; flex-direction: column; }
|
|
.admin-form-actions .btn { width: 100%; }
|
|
}
|