:root {
    --bg-0: #050815;
    --bg-1: #081225;
    --surface-1: rgba(12, 22, 45, 0.78);
    --surface-2: rgba(20, 32, 62, 0.88);
    --text-main: #eef6ff;
    --text-sub: #a8b8d8;
    --text-soft: #7182a8;
    --line: rgba(139, 170, 255, 0.18);
    --line-strong: rgba(95, 213, 255, 0.38);
    --blue: #42d8ff;
    --violet: #8f6cff;
    --pink: #ff4fc3;
    --green: #54f0a9;
    --red: #ff6a8a;
    --gradient: linear-gradient(135deg, var(--blue), var(--violet) 52%, var(--pink));
    --radius: 22px;
    --radius-sm: 14px;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
    --ease: cubic-bezier(.2, .8, .2, 1);
}

* {
    box-sizing: border-box;
}

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

body {
    min-height: 100vh;
    margin: 0;
    color: var(--text-main);
    font-family: "Avenir Next", "Trebuchet MS", "PingFang SC", sans-serif;
    background:
        radial-gradient(circle at 16% 10%, rgba(66, 216, 255, 0.18), transparent 34%),
        radial-gradient(circle at 85% 18%, rgba(255, 79, 195, 0.12), transparent 30%),
        linear-gradient(145deg, var(--bg-0), var(--bg-1));
}

.app-shell {
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

input,
select,
textarea {
    width: 100%;
    min-height: 46px;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 11px 13px;
    color: var(--text-main);
    background: rgba(3, 8, 20, 0.64);
    outline: none;
    transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}

textarea {
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(66, 216, 255, 0.14);
    background: rgba(6, 13, 31, 0.9);
}

label span {
    display: block;
    margin-bottom: 8px;
    color: var(--text-sub);
    font-size: 13px;
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 640px;
}

th,
td {
    padding: 14px 12px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: middle;
}

td {
    word-break: break-word;
}

th {
    color: var(--text-sub);
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.03);
}

tr:hover td {
    background: rgba(66, 216, 255, 0.04);
}

.ambient-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to bottom, black, transparent 80%);
}

.container {
    position: relative;
    z-index: 1;
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
    padding: 28px 0 56px;
}

.text-right {
    text-align: right;
}

.empty {
    color: var(--text-soft);
    text-align: center;
}
