:root {
    --bg: #f5f7fb;
    --panel: #ffffff;
    --ink: #101828;
    --muted: #667085;
    --line: #d9e1ec;
    --primary: #0c63e4;
    --primary-dark: #084ab0;
    --accent: #10b981;
    --warning: #f59e0b;
    --danger: #dc2626;
    --deep: #07111f;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
    color: var(--ink);
    background: var(--bg);
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(16px);
}

.nav {
    max-width: 1180px;
    margin: 0 auto;
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    letter-spacing: 0;
}

.brand-mark {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: var(--deep);
    color: #fff;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
    color: #344054;
    font-size: 14px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}

.nav-language-form,
.nav-logout-form {
    margin: 0;
}

.nav-language-form select {
    min-width: 92px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 0 34px 0 16px;
    background: #fff;
    color: #344054;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}

.button,
button {
    border: 0;
    border-radius: 8px;
    background: var(--primary);
    color: #fff;
    padding: 11px 16px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
}

.button:hover,
button:hover {
    background: var(--primary-dark);
}

.button.secondary {
    background: #eef4ff;
    color: var(--primary);
}

.button.ghost {
    background: transparent;
    color: #344054;
    border: 1px solid var(--line);
}

.button.danger {
    background: var(--danger);
}

.hero {
    background:
        linear-gradient(90deg, rgba(7, 17, 31, 0.95), rgba(7, 17, 31, 0.76)),
        url("https://images.unsplash.com/photo-1518770660439-4636190af475?auto=format&fit=crop&w=1800&q=80");
    background-size: cover;
    background-position: center;
    color: #fff;
}

.hero-inner {
    max-width: 1180px;
    margin: 0 auto;
    min-height: 620px;
    padding: 96px 24px 64px;
    display: grid;
    align-items: center;
}

.eyebrow {
    color: #8fd5ff;
    font-weight: 700;
    margin: 0 0 16px;
}

.hero h1 {
    max-width: 760px;
    margin: 0;
    font-size: 56px;
    line-height: 1.08;
    letter-spacing: 0;
}

.hero p {
    max-width: 760px;
    margin: 22px 0 0;
    color: #d0d9e8;
    font-size: 18px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 14px;
    margin-top: 34px;
    flex-wrap: wrap;
}

.home-hero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(239, 246, 255, 0.9), rgba(255, 255, 255, 0.92) 45%, rgba(232, 241, 255, 0.82)),
        radial-gradient(circle at 78% 22%, rgba(12, 99, 228, 0.16), transparent 34%),
        #fff;
    color: var(--ink);
}

.home-hero::before {
    content: "";
    position: absolute;
    inset: auto -120px -160px auto;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(18, 105, 255, 0.12), transparent 66%);
    pointer-events: none;
}

.home-hero-inner {
    min-height: 660px;
    grid-template-columns: minmax(0, 1fr) 460px;
    gap: 58px;
    position: relative;
    z-index: 1;
}

.home-hero-copy h1 {
    max-width: 760px;
    color: #07111f;
    font-size: 62px;
    line-height: 1.06;
    font-weight: 800;
}

.home-hero-copy p {
    max-width: 680px;
    color: #42526b;
    font-size: 18px;
    line-height: 1.8;
}

.home-pill {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    border: 1px solid #cfe0ff;
    border-radius: 999px;
    padding: 8px 13px;
    background: rgba(255, 255, 255, 0.86);
    color: #1d4ed8;
    box-shadow: 0 10px 26px rgba(12, 99, 228, 0.09);
}

.home-pill span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
}

.home-pill b,
.home-pill em {
    font-size: 13px;
}

.home-pill em {
    color: #6b7280;
    font-style: normal;
}

.home-hero-metrics {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    max-width: 720px;
    margin-top: 42px;
}

.home-hero-metrics div {
    border: 1px solid #dbe6f5;
    border-radius: 8px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.72);
}

.home-hero-metrics strong {
    display: block;
    margin-bottom: 6px;
    color: #07111f;
    font-size: 30px;
}

.home-hero-metrics span {
    color: #667085;
    font-size: 13px;
}

.home-hero-visual {
    border: 1px solid rgba(15, 23, 42, 0.16);
    border-radius: 18px;
    overflow: hidden;
    background: #07111f;
    box-shadow: 0 32px 80px rgba(15, 23, 42, 0.22);
}

.visual-top {
    height: 52px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #dbeafe;
}

.visual-top span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #64748b;
}

.visual-top span:first-child {
    background: #ef4444;
}

.visual-top span:nth-child(2) {
    background: #f59e0b;
}

.visual-top span:nth-child(3) {
    background: #22c55e;
}

.visual-top b {
    margin-left: auto;
    font-size: 13px;
}

.visual-screen {
    padding: 24px;
}

.visual-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.visual-status strong {
    color: #fff;
    font-size: 24px;
}

.visual-status em {
    border-radius: 999px;
    padding: 5px 10px;
    background: rgba(34, 197, 94, 0.18);
    color: #86efac;
    font-style: normal;
    font-size: 12px;
}

.visual-chart {
    height: 190px;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    align-items: end;
    gap: 14px;
    padding: 18px;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(29, 78, 216, 0.22), rgba(15, 23, 42, 0.5));
}

.visual-chart span {
    display: block;
    border-radius: 999px 999px 6px 6px;
    background: linear-gradient(180deg, #60a5fa, #2563eb);
    box-shadow: 0 0 22px rgba(96, 165, 250, 0.36);
}

.visual-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 16px;
}

.visual-grid div {
    border: 1px solid rgba(148, 163, 184, 0.24);
    border-radius: 10px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.06);
}

.visual-grid small {
    display: block;
    color: #93a4bd;
}

.visual-grid b {
    display: block;
    margin-top: 6px;
    color: #fff;
    font-size: 20px;
}

.home-capabilities {
    background: #fff;
    border-top: 1px solid #e5edf7;
    border-bottom: 1px solid #e5edf7;
}

.home-capability-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    padding: 0 24px;
}

.home-capability-grid div {
    min-height: 150px;
    padding: 32px 30px;
    border-right: 1px solid #e5edf7;
}

.home-capability-grid div:first-child {
    border-left: 1px solid #e5edf7;
}

.home-capability-grid strong {
    display: block;
    margin-bottom: 10px;
    color: #07111f;
    font-size: 20px;
}

.home-capability-grid p {
    margin: 0;
    color: #667085;
    line-height: 1.7;
}

.home-product-section {
    padding-bottom: 48px;
}

.home-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.home-product-card {
    min-height: 310px;
    display: flex;
    flex-direction: column;
    border: 1px solid #dbe6f5;
    border-radius: 8px;
    padding: 20px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(16, 24, 40, 0.05);
}

.home-product-card h3 {
    margin: 18px 0 10px;
    color: #07111f;
    font-size: 20px;
}

.home-product-card p {
    margin: 0;
    min-height: 52px;
    color: #667085;
    line-height: 1.6;
}

.home-product-spec {
    display: grid;
    gap: 8px;
    margin: 20px 0;
    color: #344054;
    font-size: 13px;
}

.home-product-spec span {
    padding-left: 12px;
    border-left: 2px solid #d7e4f6;
}

.home-product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
}

.home-product-bottom .button {
    min-height: 36px;
    border-radius: 6px;
    padding: 8px 12px;
}

.home-workflow-section,
.home-scene-section {
    padding-top: 58px;
}

.home-workflow-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border: 1px solid #dbe6f5;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.home-workflow-grid div {
    padding: 28px 24px;
    border-right: 1px solid #dbe6f5;
}

.home-workflow-grid div:last-child {
    border-right: 0;
}

.home-workflow-grid b {
    display: block;
    margin-bottom: 24px;
    color: #0c63e4;
    font-size: 32px;
}

.home-workflow-grid strong {
    display: block;
    margin-bottom: 10px;
    color: #07111f;
    font-size: 19px;
}

.home-workflow-grid p {
    margin: 0;
    color: #667085;
    line-height: 1.7;
}

.home-scene-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.home-scene-grid div {
    border: 1px solid #dbe6f5;
    border-radius: 8px;
    padding: 24px;
    background: #fff;
}

.home-scene-grid span {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: #eef4ff;
    color: #0c63e4;
    font-weight: 800;
}

.home-scene-grid h3 {
    margin: 22px 0 10px;
    color: #07111f;
}

.home-scene-grid p {
    margin: 0;
    color: #667085;
    line-height: 1.7;
}

.home-cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    border: 1px solid #dbe6f5;
    border-radius: 8px;
    padding: 30px;
    background: linear-gradient(135deg, #f8fbff, #fff);
}

.section {
    max-width: 1180px;
    margin: 0 auto;
    padding: 72px 24px;
}

.section.compact {
    padding-top: 42px;
    padding-bottom: 42px;
}

.section-title {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.section-title h2 {
    margin: 0;
    font-size: 32px;
    letter-spacing: 0;
}

.section-title p {
    margin: 8px 0 0;
    color: var(--muted);
    line-height: 1.7;
}

.grid {
    display: grid;
    gap: 18px;
}

.grid.cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 22px;
    box-shadow: 0 10px 28px rgba(16, 24, 40, 0.06);
}

.card h3 {
    margin: 0 0 10px;
    font-size: 20px;
}

.card p {
    color: var(--muted);
    line-height: 1.7;
}

.metric-band {
    background: #07111f;
    color: #fff;
}

.metric-row {
    max-width: 1180px;
    margin: 0 auto;
    padding: 28px 24px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}

.metric strong,
.metric-value {
    display: block;
    font-size: 28px;
    margin-bottom: 4px;
}

.metric span,
.metric-label {
    color: #b8c4d8;
    font-size: 13px;
}

.asset-section {
    padding-bottom: 54px;
}

.asset-overview {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 24px;
    align-items: stretch;
    margin-bottom: 24px;
}

.asset-overview h2 {
    margin: 0;
    font-size: 32px;
}

.asset-overview p {
    color: var(--muted);
    line-height: 1.75;
    max-width: 720px;
}

.asset-total-card {
    background: #07111f;
    color: #fff;
    border-radius: 8px;
    padding: 24px;
    display: grid;
    align-content: center;
    gap: 8px;
    box-shadow: 0 16px 34px rgba(7, 17, 31, 0.16);
}

.asset-total-card span,
.asset-total-card small {
    color: #b8c4d8;
}

.asset-total-card strong {
    font-size: 34px;
    letter-spacing: 0;
}

.asset-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.asset-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 18px;
    min-height: 210px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.asset-card-head {
    display: grid;
    gap: 12px;
}

.asset-card h3 {
    margin: 0 0 8px;
    font-size: 18px;
}

.asset-card p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
}

.asset-chip {
    width: fit-content;
    border-radius: 6px;
    padding: 6px 10px;
    background: #eef4ff;
    color: var(--primary);
    font-weight: 800;
    font-size: 13px;
}

.asset-bars {
    display: grid;
    gap: 8px;
    margin-top: 18px;
}

.asset-bar {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    color: #475467;
    font-size: 13px;
}

.asset-bar strong {
    color: var(--ink);
}

.group-business-list {
    display: grid;
    gap: 24px;
}

.group-business-card {
    display: grid;
    grid-template-columns: 420px minmax(0, 1fr);
    gap: 28px;
    align-items: stretch;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 22px;
    box-shadow: 0 10px 28px rgba(16, 24, 40, 0.06);
}

.group-business-media {
    min-height: 280px;
    border-radius: 8px;
    overflow: hidden;
    background: #eef2f7;
}

.group-business-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.group-business-body {
    min-width: 0;
}

.group-business-body h3 {
    margin: 14px 0 10px;
    font-size: 30px;
}

.group-business-summary {
    color: var(--muted);
    line-height: 1.7;
    margin: 0 0 18px;
}

.rich-content {
    color: #344054;
    line-height: 1.85;
}

.rich-content p {
    margin: 0 0 12px;
}

.rich-content img {
    max-width: 100%;
    border-radius: 8px;
    border: 1px solid var(--line);
}

.rich-editor {
    min-height: 150px;
    font-family: Consolas, "Microsoft YaHei", monospace;
}

.admin-preview-image {
    width: 260px;
    max-width: 100%;
    border-radius: 8px;
    border: 1px solid var(--line);
}

.product-card {
    min-height: 330px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    display: inline-flex;
    padding: 5px 9px;
    border-radius: 6px;
    background: #edf4ff;
    color: #0c4a8a;
    font-size: 12px;
    font-weight: 700;
}

.price {
    font-size: 26px;
    font-weight: 800;
}

.muted {
    color: var(--muted);
}

.page-hero {
    background: #07111f;
    color: #fff;
    padding: 58px 24px;
}

.page-hero-inner {
    max-width: 1180px;
    margin: 0 auto;
}

.page-hero h1 {
    margin: 0;
    font-size: 42px;
}

.page-hero p {
    color: #c8d3e5;
    max-width: 760px;
    line-height: 1.8;
}

.table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
}

.table th,
.table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

.table th {
    background: #f8fafc;
    color: #475467;
    font-size: 13px;
}

.form {
    display: grid;
    gap: 16px;
}

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

label {
    display: grid;
    gap: 7px;
    color: #344054;
    font-weight: 700;
    font-size: 14px;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 11px 12px;
    font: inherit;
    background: #fff;
}

textarea {
    min-height: 90px;
    resize: vertical;
}

.notice {
    padding: 14px 16px;
    border-radius: 8px;
    margin-bottom: 16px;
    background: #ecfdf3;
    color: #027a48;
    border: 1px solid #abefc6;
}

.notice.error {
    background: #fef3f2;
    color: #b42318;
    border-color: #fecdca;
}

.shell {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    min-height: 100vh;
}

.sidebar {
    background: #07111f;
    color: #e4eaf5;
    padding: 24px;
}

.sidebar a,
.sidebar button {
    display: flex;
    width: 100%;
    justify-content: flex-start;
    margin: 4px 0;
    padding: 11px 12px;
    border-radius: 8px;
    color: #d3dce9;
    background: transparent;
    font-weight: 600;
}

.sidebar a:hover,
.sidebar button:hover {
    background: rgba(255, 255, 255, 0.08);
}

.main {
    padding: 30px;
}

.admin-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.footer {
    border-top: 1px solid var(--line);
    padding: 28px 24px;
    color: var(--muted);
    background: #fff;
}

.footer-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.console-shell {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    background: #f4f6fb;
}

.console-sidebar {
    background: #fff;
    border-right: 1px solid #e7ebf2;
    padding: 18px 14px;
}

.console-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 10px 28px;
    color: #111827;
    font-weight: 800;
    font-size: 22px;
}

.console-logo-mark {
    width: 32px;
    height: 32px;
    border: 2px solid #111827;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 15px;
}

.console-menu {
    display: grid;
    gap: 5px;
}

.console-menu a {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    align-items: center;
    min-height: 38px;
    padding: 8px 10px;
    border-radius: 6px;
    color: #26364c;
    font-size: 14px;
}

.console-menu a:hover,
.console-menu a.active {
    color: var(--primary);
    background: #eef4ff;
}

.console-icon {
    color: #5b677a;
    text-align: center;
    font-size: 15px;
}

.console-main {
    min-width: 0;
}

.console-topbar {
    height: 52px;
    background: #fff;
    border-bottom: 1px solid #e7ebf2;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 24px;
    gap: 10px;
}

.console-round {
    width: 32px;
    height: 32px;
    border: 1px solid #e7ebf2;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #506078;
    background: #fff;
    font-size: 14px;
}

.console-avatar {
    background: #e5e7eb;
    color: #fff;
}

.console-language {
    border: 1px solid #e7ebf2;
    background: #fff;
    color: #506078;
    border-radius: 999px;
    padding: 6px 10px;
    min-height: 32px;
    font-size: 13px;
}

.console-content {
    padding: 22px;
}

.console-panel {
    background: #fff;
    min-height: calc(100vh - 94px);
    border-radius: 8px;
    padding: 26px;
    box-shadow: 0 8px 24px rgba(16, 24, 40, 0.04);
}

.console-page-title {
    margin: 0 0 34px;
    font-size: 28px;
    font-weight: 500;
}

.console-tabs {
    display: flex;
    gap: 32px;
    border-bottom: 1px solid #dfe4ed;
    margin-bottom: 34px;
}

.console-tabs a {
    padding: 0 0 12px;
    color: #1f2a44;
    font-weight: 700;
    font-size: 14px;
}

.console-tabs a.active {
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
}

.console-account-name {
    font-size: 28px;
    margin: 0 0 32px;
    font-weight: 800;
}

.console-section-heading {
    border-left: 3px solid var(--primary);
    padding-left: 10px;
    margin: 28px 0 22px;
    color: #1f2a44;
    font-weight: 700;
}

.profile-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px 80px;
    max-width: 1600px;
}

.profile-field {
    min-height: 72px;
}

.profile-field label {
    color: #7b8aa4;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 14px;
}

.profile-value {
    min-height: 36px;
    border-bottom: 1px solid #dfe4ed;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #4b5a70;
}

.profile-edit {
    color: #8291a8;
    font-size: 14px;
}

.console-table {
    box-shadow: none;
    border-color: #e7ebf2;
}

.personal-console-content {
    padding: 20px;
    background: #f2f4f8;
}

.personal-hero {
    min-height: 192px;
    padding: 14px 24px 26px;
    background:
        radial-gradient(circle at 45% 0%, rgba(255, 221, 145, 0.45), transparent 24%),
        linear-gradient(100deg, #dfeeff 0%, #eef5ff 44%, #f8fbff 100%);
}

.personal-notice-bar {
    min-height: 42px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    padding: 8px 24px;
    border-radius: 20px;
    background: linear-gradient(90deg, #2f7cf7, #1550d6);
    color: #fff;
    box-shadow: 0 12px 24px rgba(20, 83, 214, 0.22);
    font-size: 14px;
    font-weight: 700;
}

.personal-notice-bar a {
    min-width: 78px;
    text-align: center;
    padding: 5px 14px;
    border-radius: 16px;
    background: #fff;
    color: #1b67e8;
}

.personal-profile {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr) 420px;
    align-items: center;
    gap: 22px;
    padding: 34px 0 4px;
}

.personal-avatar {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    border: 2px solid #fff;
    background:
        radial-gradient(circle at 50% 33%, #fff 0 14px, transparent 15px),
        radial-gradient(circle at 50% 76%, #fff 0 25px, transparent 26px),
        #cfd5de;
    box-shadow: 0 8px 18px rgba(31, 41, 55, 0.18);
}

.personal-user-main h1 {
    margin: 0 0 10px;
    color: #2f3745;
    font-size: 24px;
    font-weight: 500;
}

.personal-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 26px;
    color: #6b7280;
    font-size: 13px;
}

.personal-meta b {
    font-weight: 400;
}

.personal-meta a {
    color: #1268e8;
}

.cert-badge {
    display: inline-flex;
    align-items: center;
    height: 20px;
    padding: 0 9px;
    background: #bac0ca;
    color: #fff;
    font-size: 12px;
}

.personal-login-info {
    color: #6b7280;
    line-height: 2;
    font-size: 13px;
}

.personal-card-grid {
    display: grid;
    gap: 12px;
    margin-top: 12px;
}

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

.stat-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.personal-card {
    background: #fff;
    border: 1px solid #e8edf5;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(31, 41, 55, 0.07);
}

.balance-card {
    min-height: 150px;
    padding: 26px 18px 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background:
        radial-gradient(circle at 100% 0%, rgba(94, 103, 119, 0.32), transparent 28%),
        linear-gradient(130deg, #edf7f6 0%, #eef5f6 66%, #d1d6de 67%, #aeb8c6 100%);
}

.balance-card p {
    margin: 0;
    color: #293241;
    font-size: 13px;
}

.balance-card p a {
    color: #0b63e5;
}

.balance-card strong {
    color: #273142;
    font-size: 15px;
    font-weight: 500;
}

.mini-dark-btn {
    align-self: flex-end;
    min-width: 58px;
    height: 26px;
    border-radius: 13px;
    display: grid;
    place-items: center;
    background: #3d4250;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}

.blue-card {
    min-height: 150px;
    padding: 20px 18px;
    background: linear-gradient(135deg, #2f73ff, #416ff3);
    color: #fff;
    overflow: hidden;
    position: relative;
}

.blue-card h2,
.notice-card h2,
.product-list-card h2 {
    margin: 0;
    font-size: 17px;
    font-weight: 500;
}

.security-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.security-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 0 -18px -20px;
    background: rgba(255, 255, 255, 0.2);
}

.security-links a {
    min-height: 32px;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 12px;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.ticket-card {
    text-align: center;
}

.empty-service-icon {
    width: 48px;
    height: 48px;
    margin: 28px auto 6px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.86);
    color: #416ff3;
    transform: rotate(-8deg);
    font-size: 27px;
}

.ticket-card p {
    margin: 0;
    color: #fff;
    font-size: 14px;
}

.notice-card {
    min-height: 150px;
    display: grid;
    grid-template-columns: 38% minmax(0, 1fr);
    overflow: hidden;
    background: linear-gradient(110deg, #dfeafa 0%, #f8fafc 46%, #fff 100%);
}

.notice-card-side {
    padding: 48px 24px 20px;
    background: rgba(205, 222, 246, 0.7);
}

.notice-card-side a {
    display: inline-flex;
    margin-top: 12px;
    color: #1268e8;
    font-size: 13px;
}

.notice-card > div:last-child {
    padding: 38px 24px;
}

.notice-card h3 {
    margin: 0 0 12px;
    color: #3f3f46;
    font-size: 18px;
    font-weight: 500;
}

.notice-card p,
.notice-card span {
    color: #9aa4b2;
}

.personal-stat-card {
    min-height: 142px;
    padding: 22px 20px;
    display: grid;
    align-content: space-between;
    background:
        radial-gradient(circle at 95% 20%, rgba(53, 113, 244, 0.22), transparent 16%),
        #fff;
    border: 1px solid #e8edf5;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(31, 41, 55, 0.06);
}

.personal-stat-card span {
    color: #657083;
    font-size: 16px;
}

.personal-stat-card strong {
    color: #121826;
    font-size: 25px;
    font-weight: 500;
}

.personal-stat-card strong b {
    font-weight: 500;
}

.personal-stat-card small {
    margin-left: 5px;
    color: #7a8495;
    font-size: 13px;
}

.personal-stat-card em {
    color: #99a2b2;
    font-style: normal;
    font-size: 13px;
}

.personal-bottom-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
    gap: 12px;
    margin-top: 16px;
}

.product-list-card {
    min-height: 340px;
    padding: 22px;
}

.product-list-card table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 22px;
    font-size: 13px;
}

.product-list-card th,
.product-list-card td {
    padding: 14px 24px;
    border-bottom: 1px solid #edf1f6;
    text-align: left;
    color: #667085;
}

.product-list-card th {
    background: #f7f9fc;
    color: #2f3745;
    font-weight: 600;
}

.product-list-card td a {
    color: #1268e8;
}

.promo-card {
    min-height: 340px;
    padding: 32px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 26px;
}

.promo-illustration {
    width: 230px;
    height: 156px;
    position: relative;
    border-bottom: 2px solid #a5a8b2;
}

.promo-illustration::before {
    content: "";
    position: absolute;
    left: 54px;
    right: 36px;
    bottom: 22px;
    height: 54px;
    border: 3px solid #9c8ac9;
    border-top: 0;
    border-radius: 0 0 18px 18px;
    background: #f2f0ff;
}

.promo-person {
    position: absolute;
    left: 84px;
    bottom: 48px;
    width: 80px;
    height: 80px;
    border-radius: 38px 38px 22px 22px;
    background: linear-gradient(135deg, #1f8be8, #6542c9);
    transform: rotate(16deg);
}

.promo-person::before {
    content: "";
    position: absolute;
    left: 30px;
    top: -16px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #ffd1b0;
}

.promo-person::after {
    content: "";
    position: absolute;
    right: -36px;
    bottom: -34px;
    width: 62px;
    height: 20px;
    border-radius: 12px;
    background: #5237a2;
    transform: rotate(62deg);
}

.promo-disabled {
    width: min(300px, 80%);
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 3px;
    background: #edf4ff;
    color: #8d99aa;
    font-size: 13px;
}

.finance-console-content {
    padding: 0 4px 22px;
    background: #f4f6fb;
}

.finance-panel {
    min-height: calc(100vh - 52px);
    background: #fff;
}

.finance-title {
    height: 62px;
    display: flex;
    align-items: center;
    padding: 0 22px;
    border-bottom: 1px solid #edf1f6;
    color: #1f2937;
    font-size: 17px;
    font-weight: 700;
}

.finance-balance {
    min-height: 180px;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 28px 22px 32px;
    border-bottom: 1px solid #edf1f6;
}

.finance-balance p {
    margin: 0 0 22px;
    color: #6b7280;
    font-size: 13px;
}

.finance-balance strong {
    color: #111827;
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 0;
}

.finance-actions {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding-top: 24px;
}

.finance-actions button {
    width: 62px;
    height: 34px;
    min-height: 34px;
    border-radius: 3px;
    padding: 0;
    background: #155fe8;
    font-size: 14px;
}

.finance-actions button.outline {
    background: #fff;
    color: #155fe8;
    border: 1px solid #155fe8;
}

.finance-actions a {
    height: 34px;
    display: inline-flex;
    align-items: center;
    color: #8b95a5;
    font-size: 13px;
}

.finance-tabs {
    height: 56px;
    display: flex;
    align-items: flex-end;
    gap: 34px;
    padding: 0 22px;
    border-bottom: 1px solid #dce3ee;
}

.finance-tabs a {
    height: 32px;
    color: #1f2937;
    font-size: 14px;
    font-weight: 600;
}

.finance-tabs a.active {
    color: #155fe8;
    border-bottom: 2px solid #155fe8;
}

.finance-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 30px 22px 18px;
}

.finance-legend {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    color: #1f2937;
    font-size: 13px;
}

.finance-legend button {
    height: 30px;
    min-height: 30px;
    border-radius: 2px;
    padding: 0 14px;
    background: #f43f3f;
    font-size: 13px;
}

.finance-legend span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.dot,
.order-dot {
    width: 7px;
    height: 7px;
    display: inline-block;
    border-radius: 50%;
}

.dot.blue,
.order-dot {
    background: #155fe8;
}

.dot.green {
    background: #20c997;
}

.dot.red {
    background: #e02424;
}

.dot.orange {
    background: #f59e0b;
}

.dot.purple {
    background: #9333ea;
}

.finance-search {
    display: grid;
    grid-template-columns: 130px 280px;
    gap: 20px;
}

.finance-search select,
.finance-search input,
.finance-pagination select,
.finance-pagination input {
    height: 34px;
    border: 1px solid #d9e1ec;
    border-radius: 3px;
    padding: 0 12px;
    color: #5f6b7a;
    font-size: 13px;
}

.finance-search-input {
    position: relative;
}

.finance-search-input span {
    position: absolute;
    right: 12px;
    top: 50%;
    color: #b3bdcb;
    transform: translateY(-50%);
}

.finance-table {
    width: calc(100% - 44px);
    margin: 0 22px;
    border-collapse: collapse;
    font-size: 13px;
}

.finance-table th,
.finance-table td {
    height: 52px;
    padding: 0 18px;
    border-bottom: 1px solid #edf1f6;
    color: #5f6b7a;
    text-align: left;
}

.finance-table th {
    background: #f7f9fc;
    color: #1f2937;
    font-weight: 700;
}

.finance-table th:first-child,
.finance-table td:first-child {
    width: 54px;
    text-align: center;
}

.finance-table th:nth-child(2),
.finance-table td:nth-child(2) {
    width: 90px;
}

.finance-table th:nth-child(4),
.finance-table td:nth-child(4),
.finance-table th:nth-child(5),
.finance-table td:nth-child(5),
.finance-table th:nth-child(6),
.finance-table td:nth-child(6),
.finance-table th:nth-child(7),
.finance-table td:nth-child(7),
.finance-table th:nth-child(8),
.finance-table td:nth-child(8) {
    width: 150px;
}

.finance-table input[type="checkbox"] {
    width: 14px;
    height: 14px;
    padding: 0;
    border-radius: 2px;
}

.finance-table td:nth-child(3) {
    color: #333d4f;
}

.finance-table td:nth-child(3) .order-dot {
    margin-right: 14px;
}

.finance-status {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 4px;
    background: #dff7f2;
    color: #16a084;
    border: 1px solid #bfeee4;
}

.finance-empty {
    height: 68px !important;
    text-align: center !important;
}

.finance-pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 22px 44px;
    color: #697386;
    font-size: 12px;
}

.finance-pagination > div {
    display: flex;
    align-items: center;
    gap: 12px;
}

.finance-pagination select {
    width: 88px;
}

.finance-pagination input {
    width: 42px;
    text-align: center;
}

.finance-pagination b {
    width: 30px;
    height: 28px;
    display: grid;
    place-items: center;
    border: 1px solid #155fe8;
    border-radius: 2px;
    color: #155fe8;
    font-weight: 500;
}

.dedicated-console-content {
    padding: 8px 18px 22px;
    background: #f4f6fb;
}

.dedicated-panel {
    min-height: calc(100vh - 82px);
    padding: 42px 20px 34px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(16, 24, 40, 0.04);
}

.dedicated-title {
    margin: 0 0 42px;
    color: #1f2937;
    font-size: 28px;
    font-weight: 500;
}

.dedicated-tabs {
    display: flex;
    gap: 34px;
    height: 34px;
    border-bottom: 1px solid #dfe5ee;
}

.dedicated-tabs a {
    color: #1f2937;
    font-size: 14px;
    font-weight: 700;
}

.dedicated-tabs a.active {
    color: #155fe8;
    border-bottom: 2px solid #155fe8;
}

.dedicated-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 28px 0 18px;
}

.dedicated-toolbar > button {
    height: 38px;
    min-height: 38px;
    border-radius: 3px;
    padding: 0 16px;
    gap: 12px;
    background: #155fe8;
    font-size: 14px;
}

.dedicated-toolbar > button span {
    height: 22px;
    display: inline-flex;
    align-items: center;
    padding-left: 12px;
    border-left: 1px solid rgba(255, 255, 255, 0.45);
}

.dedicated-filters {
    display: grid;
    grid-template-columns: 260px 260px 64px;
    gap: 16px;
}

.dedicated-filters select,
.dedicated-filters input {
    height: 38px;
    border: 1px solid #d9e1ec;
    border-radius: 3px;
    padding: 0 12px;
    color: #5f6b7a;
    font-size: 13px;
}

.dedicated-filters button {
    min-height: 38px;
    height: 38px;
    border-radius: 2px;
    padding: 0;
    background: #155fe8;
}

.dedicated-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.dedicated-table th,
.dedicated-table td {
    height: 52px;
    padding: 0 26px;
    border: 1px solid #e8edf5;
    color: #4b5563;
    text-align: left;
}

.dedicated-table th {
    background: #f7f9fc;
    color: #1f2937;
    font-weight: 700;
}

.dedicated-table th:first-child,
.dedicated-table td:first-child {
    width: 48px;
    text-align: center;
}

.dedicated-table th:nth-child(2),
.dedicated-table td:nth-child(2) {
    width: 80px;
}

.dedicated-table th:nth-child(4),
.dedicated-table td:nth-child(4),
.dedicated-table th:nth-child(5),
.dedicated-table td:nth-child(5),
.dedicated-table th:nth-child(7),
.dedicated-table td:nth-child(7),
.dedicated-table th:nth-child(8),
.dedicated-table td:nth-child(8) {
    width: 150px;
}

.dedicated-table input[type="checkbox"] {
    width: 14px;
    height: 14px;
    padding: 0;
    border-radius: 2px;
}

.dedicated-empty {
    height: 58px !important;
    text-align: center !important;
    color: #1f2937 !important;
}

.cloud-server-content {
    padding: 8px 18px 22px;
    background: #f4f6fb;
}

.cloud-server-panel {
    min-height: calc(100vh - 82px);
    padding: 42px 20px 34px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(16, 24, 40, 0.04);
}

.cloud-server-title {
    margin: 0 0 42px;
    color: #1f2937;
    font-size: 28px;
    font-weight: 500;
}

.cloud-server-tabs {
    display: flex;
    gap: 34px;
    height: 34px;
    border-bottom: 1px solid #dfe5ee;
}

.cloud-server-tabs a {
    color: #1f2937;
    font-size: 14px;
    font-weight: 700;
}

.cloud-server-tabs a.active {
    color: #155fe8;
    border-bottom: 2px solid #155fe8;
}

.cloud-server-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 28px 0 18px;
}

.cloud-server-actions {
    display: flex;
    gap: 10px;
}

.cloud-server-actions button,
.cloud-server-filters button {
    height: 38px;
    min-height: 38px;
    border-radius: 3px;
    padding: 0 18px;
    background: #155fe8;
    font-size: 14px;
}

.cloud-server-actions button span {
    height: 22px;
    display: inline-flex;
    align-items: center;
    margin-left: 12px;
    padding-left: 12px;
    border-left: 1px solid rgba(255, 255, 255, 0.45);
}

.cloud-server-filters {
    display: grid;
    grid-template-columns: 180px 260px 64px;
    gap: 16px;
}

.cloud-server-filters select,
.cloud-server-filters input,
.cloud-server-pagination select,
.cloud-server-pagination input {
    height: 38px;
    border: 1px solid #d9e1ec;
    border-radius: 3px;
    padding: 0 12px;
    color: #5f6b7a;
    font-size: 13px;
}

.cloud-server-filters button {
    padding: 0;
}

.cloud-server-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.cloud-server-table th,
.cloud-server-table td {
    height: 54px;
    padding: 0 18px;
    border-bottom: 1px solid #edf1f6;
    color: #4b5563;
    text-align: left;
}

.cloud-server-table th {
    background: #f7f9fc;
    color: #1f2937;
    font-weight: 700;
}

.cloud-server-table th:first-child,
.cloud-server-table td:first-child {
    width: 48px;
    text-align: center;
}

.cloud-server-table th:nth-child(2),
.cloud-server-table td:nth-child(2) {
    width: 86px;
}

.cloud-server-table th:nth-child(3),
.cloud-server-table td:nth-child(3) {
    width: 260px;
}

.cloud-server-table th:nth-child(4),
.cloud-server-table td:nth-child(4) {
    width: 300px;
}

.cloud-server-table th:nth-child(5),
.cloud-server-table td:nth-child(5),
.cloud-server-table th:nth-child(7),
.cloud-server-table td:nth-child(7),
.cloud-server-table th:nth-child(9),
.cloud-server-table td:nth-child(9),
.cloud-server-table th:nth-child(11),
.cloud-server-table td:nth-child(11) {
    width: 96px;
    text-align: center;
}

.cloud-server-table input[type="checkbox"] {
    width: 14px;
    height: 14px;
    padding: 0;
    border-radius: 2px;
}

.region-flag {
    width: 24px;
    height: 16px;
    display: inline-grid;
    place-items: center;
    margin-right: 8px;
    background: #e8291d;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
}

.cloud-server-table td strong {
    display: block;
    color: #2f3745;
    font-weight: 500;
}

.cloud-server-table td small {
    display: block;
    margin-top: 4px;
    color: #4f7fd9;
    font-size: 12px;
}

.switch-off {
    width: 34px;
    height: 18px;
    display: inline-block;
    position: relative;
    border-radius: 9px;
    background: #d7dbe1;
}

.switch-off::after {
    content: "";
    position: absolute;
    left: 2px;
    top: 2px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
}

.power-icon {
    color: #2bdc98;
    font-size: 22px;
}

.os-icon {
    color: #6542c9;
    font-size: 22px;
}

.cloud-server-table td em {
    margin-left: 3px;
    color: #155fe8;
    font-style: normal;
    font-size: 11px;
}

.server-status {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0 12px;
    border-radius: 4px;
    background: #c8fbfb;
    color: #20bfb8;
    font-size: 12px;
}

.cloud-server-empty {
    height: 58px !important;
    text-align: center !important;
    color: #1f2937 !important;
}

.cloud-server-pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 22px;
    color: #697386;
    font-size: 12px;
}

.cloud-server-pagination > div {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cloud-server-pagination select {
    width: 88px;
}

.cloud-server-pagination input {
    width: 42px;
    text-align: center;
}

.cloud-server-pagination b {
    width: 30px;
    height: 28px;
    display: grid;
    place-items: center;
    border: 1px solid #155fe8;
    border-radius: 2px;
    color: #155fe8;
    font-weight: 500;
}

.transfer-console-content {
    padding: 8px 18px 22px;
    background: #f4f6fb;
}

.transfer-panel {
    min-height: calc(100vh - 82px);
    padding: 42px 20px 34px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(16, 24, 40, 0.04);
}

.transfer-title {
    margin: 0 0 42px;
    color: #1f2937;
    font-size: 28px;
    font-weight: 500;
}

.transfer-tabs {
    display: flex;
    gap: 34px;
    height: 34px;
    border-bottom: 1px solid #dfe5ee;
}

.transfer-tabs a {
    color: #1f2937;
    font-size: 14px;
    font-weight: 700;
}

.transfer-tabs a.active {
    color: #155fe8;
    border-bottom: 2px solid #155fe8;
}

.transfer-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 28px 0 18px;
}

.transfer-toolbar > button {
    height: 38px;
    min-height: 38px;
    border-radius: 3px;
    padding: 0 16px;
    background: #155fe8;
    font-size: 14px;
}

.transfer-toolbar > button span {
    height: 22px;
    display: inline-flex;
    align-items: center;
    margin-left: 12px;
    padding-left: 12px;
    border-left: 1px solid rgba(255, 255, 255, 0.45);
}

.transfer-filters {
    display: grid;
    grid-template-columns: 260px 260px 64px;
    gap: 16px;
}

.transfer-filters select,
.transfer-filters input {
    height: 38px;
    border: 1px solid #d9e1ec;
    border-radius: 3px;
    padding: 0 12px;
    color: #5f6b7a;
    font-size: 13px;
}

.transfer-filters button {
    min-height: 38px;
    height: 38px;
    border-radius: 2px;
    padding: 0;
    background: #155fe8;
}

.transfer-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.transfer-table th,
.transfer-table td {
    height: 52px;
    padding: 0 26px;
    border-bottom: 1px solid #edf1f6;
    color: #4b5563;
    text-align: left;
}

.transfer-table th {
    background: #f7f9fc;
    color: #1f2937;
    font-weight: 700;
}

.transfer-table th:first-child,
.transfer-table td:first-child {
    width: 48px;
    text-align: center;
}

.transfer-table th:nth-child(2),
.transfer-table td:nth-child(2) {
    width: 80px;
}

.transfer-table th:nth-child(4),
.transfer-table td:nth-child(4),
.transfer-table th:nth-child(6),
.transfer-table td:nth-child(6),
.transfer-table th:nth-child(7),
.transfer-table td:nth-child(7) {
    width: 150px;
}

.transfer-table input[type="checkbox"] {
    width: 14px;
    height: 14px;
    padding: 0;
    border-radius: 2px;
}

.transfer-empty {
    height: 58px !important;
    text-align: center !important;
    color: #1f2937 !important;
}

.domain-console-content {
    padding: 8px 18px 22px;
    background: #f4f6fb;
}

.domain-panel {
    min-height: calc(100vh - 82px);
    padding: 28px 20px 34px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(16, 24, 40, 0.04);
}

.domain-title {
    margin: 0 0 32px;
    color: #1f2937;
    font-size: 28px;
    font-weight: 500;
}

.domain-tabs {
    display: flex;
    gap: 34px;
    height: 34px;
    border-bottom: 1px solid #dfe5ee;
}

.domain-tabs a {
    color: #1f2937;
    font-size: 14px;
    font-weight: 700;
}

.domain-tabs a.active {
    color: #155fe8;
    border-bottom: 2px solid #155fe8;
}

.domain-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 28px 0 18px;
}

.domain-action-group {
    display: flex;
    gap: 10px;
}

.domain-action-group button,
.domain-primary-link,
.domain-filter-group button,
.domain-modal-actions button {
    height: 38px;
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    background: #155fe8;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.domain-action-group button {
    padding: 0 18px;
}

.domain-primary-link {
    padding: 0 20px;
}

.domain-filter-group {
    display: grid;
    grid-template-columns: 260px 288px 64px;
    gap: 10px;
}

.domain-contact-filter {
    grid-template-columns: 280px 64px;
}

.domain-filter-group input,
.domain-date-range,
.domain-pagination select,
.domain-pagination input,
.domain-modal-card input,
.domain-modal-card select {
    border: 1px solid #d9e1ec;
    border-radius: 3px;
    color: #4b5563;
    font-size: 13px;
}

.domain-filter-group input {
    height: 38px;
    padding: 0 12px;
}

.domain-date-range {
    height: 38px;
    display: grid;
    grid-template-columns: 28px 1fr 18px 1fr;
    align-items: center;
    padding: 0 10px;
    color: #8a94a6;
}

.domain-date-range input {
    height: 34px;
    border: 0;
    padding: 0;
}

.domain-date-range input:focus {
    outline: 0;
}

.domain-date-range em {
    color: #1f2937;
    font-style: normal;
    text-align: center;
}

.domain-filter-group button {
    border: 0;
    padding: 0;
}

.domain-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.domain-table th,
.domain-table td {
    height: 54px;
    padding: 0 22px;
    border-bottom: 1px solid #edf1f6;
    color: #4b5563;
    text-align: left;
    white-space: nowrap;
}

.domain-table th {
    background: #f7f9fc;
    color: #1f2937;
    font-weight: 700;
}

.domain-table a {
    color: #155fe8;
}

.domain-table input[type="checkbox"] {
    width: 14px;
    height: 14px;
    padding: 0;
}

.domain-table-list th:first-child,
.domain-table-list td:first-child {
    width: 48px;
    text-align: center;
}

.domain-table-list th:nth-child(2),
.domain-table-list td:nth-child(2) {
    width: 70px;
}

.domain-table-list th:nth-child(4),
.domain-table-list td:nth-child(4),
.domain-table-list th:nth-child(8),
.domain-table-list td:nth-child(8),
.domain-table-list th:nth-child(9),
.domain-table-list td:nth-child(9) {
    width: 120px;
}

.domain-more {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 2px;
}

.domain-empty {
    height: 58px !important;
    color: #1f2937 !important;
    text-align: center !important;
}

.domain-delete-btn {
    min-height: 0;
    height: auto;
    padding: 0;
    background: transparent;
    color: #155fe8;
    font-size: 13px;
    font-weight: 500;
}

.domain-delete-btn:hover {
    background: transparent;
    color: #084ab0;
}

.domain-contact-table th:nth-child(11),
.domain-contact-table td:nth-child(11) {
    width: 86px;
    text-align: center;
}

.domain-pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px;
    color: #697386;
    font-size: 12px;
}

.domain-pagination > div {
    display: flex;
    align-items: center;
    gap: 12px;
}

.domain-pagination select {
    width: 86px;
    height: 28px;
    padding: 0 8px;
}

.domain-pagination b {
    width: 30px;
    height: 28px;
    display: grid;
    place-items: center;
    border: 1px solid #155fe8;
    border-radius: 2px;
    color: #155fe8;
    font-weight: 500;
}

.domain-pagination input {
    width: 38px;
    height: 28px;
    padding: 0 6px;
    text-align: center;
}

.domain-modal {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: none;
    align-items: center;
    justify-content: center;
}

.domain-modal:target {
    display: flex;
}

.domain-modal-mask {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.48);
}

.domain-modal-card {
    position: relative;
    z-index: 1;
    width: min(700px, calc(100vw - 40px));
    max-height: calc(100vh - 40px);
    overflow: auto;
    padding: 36px 40px 26px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 20px 80px rgba(15, 23, 42, 0.28);
}

.domain-modal-card h2 {
    margin: 0 0 14px;
    color: #1f2937;
    font-size: 28px;
    font-weight: 500;
}

.domain-modal-card label {
    display: grid;
    gap: 10px;
    margin-bottom: 16px;
    color: #4b5563;
    font-size: 14px;
}

.domain-modal-card input,
.domain-modal-card select {
    width: 100%;
    height: 40px;
    padding: 0 14px;
    background: #fff;
}

.domain-modal-card input[readonly] {
    background: #f2f5fa;
    color: #6b7280;
}

.domain-modal-grid {
    display: grid;
    gap: 18px;
}

.domain-modal-grid.two {
    grid-template-columns: 1fr 1fr;
}

.domain-modal-grid.phone {
    grid-template-columns: 194px 1fr;
}

.domain-modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 26px;
}

.domain-modal-actions button,
.domain-modal-actions a {
    width: 112px;
}

.domain-modal-actions a {
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    background: #e5e7eb;
    color: #4b5563;
    font-size: 14px;
    font-weight: 500;
}

.ticket-console-content {
    padding: 10px 18px 22px;
    background: #f4f6fb;
}

.ticket-console-panel {
    min-height: calc(100vh - 84px);
    padding: 22px 22px 34px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(16, 24, 40, 0.04);
}

.ticket-page-title {
    margin: 0 0 26px;
    color: #1f2937;
    font-size: 27px;
    font-weight: 500;
}

.ticket-summary-blank {
    height: 78px;
    border: 1px solid #dfe5ee;
    margin-bottom: 24px;
}

.ticket-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 16px;
}

.ticket-primary-btn,
.ticket-toolbar button,
.ticket-send-btn {
    min-width: 88px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    background: #155fe8;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

.ticket-filter-group {
    display: grid;
    grid-template-columns: 260px 260px 260px 56px;
    gap: 10px;
    align-items: center;
}

.ticket-filter-group input,
.ticket-filter-group select,
.ticket-pagination select,
.ticket-pagination input,
.ticket-create-form input,
.ticket-create-form select,
.ticket-create-form textarea {
    border: 1px solid #d5dde8;
    border-radius: 2px;
    color: #333d4f;
    font-size: 13px;
}

.ticket-filter-group input,
.ticket-filter-group select {
    height: 36px;
    padding: 0 12px;
}

.ticket-filter-group button {
    border: 0;
    padding: 0;
}

.ticket-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.ticket-table th,
.ticket-table td {
    height: 48px;
    padding: 0 22px;
    border-bottom: 1px solid #edf1f6;
    text-align: left;
}

.ticket-table th {
    background: #f7f9fc;
    color: #1f2937;
    font-weight: 600;
}

.ticket-table a {
    color: #155fe8;
}

.ticket-table small {
    display: block;
    margin-top: 4px;
    color: #8a94a6;
    font-size: 12px;
}

.ticket-table th:nth-child(2),
.ticket-table th:nth-child(3),
.ticket-table th:nth-child(4),
.ticket-table th:nth-child(5) {
    width: 170px;
    text-align: center;
}

.ticket-empty {
    height: 48px;
    color: #1f2937;
    text-align: center !important;
}

.ticket-pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px;
    color: #697386;
    font-size: 12px;
}

.ticket-pagination > div {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ticket-pagination select {
    width: 86px;
    height: 28px;
    padding: 0 8px;
}

.ticket-pagination b {
    width: 30px;
    height: 28px;
    display: grid;
    place-items: center;
    border: 1px solid #155fe8;
    border-radius: 2px;
    color: #155fe8;
    font-weight: 500;
}

.ticket-pagination input {
    width: 38px;
    height: 28px;
    padding: 0 6px;
    text-align: center;
}

.ticket-create-title {
    display: flex;
    align-items: center;
    gap: 22px;
    padding-bottom: 22px;
    border-bottom: 1px solid #e1e6ef;
}

.ticket-create-title a {
    color: #155fe8;
    font-size: 24px;
}

.ticket-create-title h1 {
    margin: 0;
    color: #1f2937;
    font-size: 27px;
    font-weight: 500;
}

.ticket-create-form {
    padding-top: 38px;
}

.ticket-create-row {
    display: grid;
    grid-template-columns: 64px 420px;
    align-items: center;
    gap: 0 14px;
    margin-bottom: 18px;
}

.ticket-create-row.compact-row {
    grid-template-columns: 64px 420px 80px 420px;
}

.ticket-create-row.full-row {
    grid-template-columns: 64px minmax(0, 1fr);
    align-items: start;
}

.ticket-create-row label,
.ticket-create-row > span {
    color: #3f4958;
    font-size: 13px;
    font-weight: 400;
}

.ticket-create-row.required label::before {
    content: "* ";
    color: #e02d2d;
}

.ticket-create-form input,
.ticket-create-form select {
    height: 38px;
    padding: 0 12px;
}

.ticket-create-form textarea {
    min-height: 94px;
    padding: 10px 12px;
    resize: vertical;
}

.ticket-create-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 64px;
    margin-top: 18px;
}

.ticket-upload-btn {
    height: 34px;
    min-height: 34px;
    border: 1px solid #cfd8e5;
    border-radius: 2px;
    background: #fff;
    color: #374151;
    padding: 0 16px;
}

.ticket-upload-btn:hover {
    background: #f8fafc;
    color: #155fe8;
}

.ticket-send-btn {
    border: 0;
    min-height: 34px;
    height: 34px;
    padding: 0 24px;
}

.cloud-login-page {
    min-height: 100vh;
    background: #e8f5ff;
    color: #181c25;
}

.cloud-login-page::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(232, 245, 255, 0.97) 0%, rgba(232, 245, 255, 0.88) 45%, rgba(204, 232, 250, 0.62) 100%),
        url("https://images.unsplash.com/photo-1558494949-ef010cbdcc31?auto=format&fit=crop&w=1600&q=80");
    background-size: cover;
    background-position: center right;
    z-index: -1;
}

.admin-login-page::before {
    background:
        linear-gradient(90deg, rgba(232, 245, 255, 0.98) 0%, rgba(232, 245, 255, 0.9) 50%, rgba(210, 234, 249, 0.66) 100%),
        url("https://images.unsplash.com/photo-1517430816045-df4b7de11d1d?auto=format&fit=crop&w=1600&q=80");
    background-size: cover;
    background-position: center right;
}

.cloud-login-shell {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-left: min(13vw, 150px);
}

.user-login-page .cloud-login-shell {
    justify-content: center;
    padding-left: 0;
}

.cloud-login-panel {
    width: 500px;
    min-height: 316px;
    border-left: 1px solid rgba(113, 139, 160, 0.3);
    padding: 6px 64px 0;
}

.user-login-page .cloud-login-panel {
    min-height: auto;
}

.cloud-register-panel {
    min-height: 430px;
}

.cloud-login-tabs {
    display: flex;
    align-items: center;
    gap: 28px;
    min-height: 34px;
    margin-bottom: 34px;
    font-size: 16px;
    font-weight: 700;
}

.cloud-login-tabs span,
.cloud-login-tabs a {
    white-space: nowrap;
}

.cloud-login-tabs .active {
    color: #0b63e5;
    border-bottom: 3px solid #0b63e5;
    padding-bottom: 9px;
}

.cloud-login-tabs a {
    margin-left: auto;
    color: #0b63e5;
    font-size: 14px;
}

.cloud-login-form {
    display: grid;
    gap: 16px;
}

.cloud-input-line {
    height: 40px;
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr) 22px;
    align-items: center;
    border: 1px solid #c7d1db;
    background: #fff;
}

.cloud-input-line:focus-within {
    border-color: #0b63e5;
}

.cloud-input-line > span:first-child {
    padding-left: 16px;
    color: #1f2937;
    font-size: 14px;
}

.cloud-input-line input {
    height: 38px;
    padding: 0 10px;
    border: 0;
    border-radius: 0;
    outline: none;
}

.cloud-input-line input::placeholder {
    color: #9aa4b2;
}

.cloud-input-icon {
    color: #b5beca;
    font-size: 14px;
}

.cloud-login-form button {
    width: 100%;
    height: 40px;
    margin-top: 16px;
    border-radius: 0;
    background: #1268e8;
    font-weight: 700;
}

.cloud-login-links {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-top: 20px;
    color: #1f2937;
    font-size: 14px;
}

.cloud-form-card,
.cloud-status-box {
    background: #fff;
    border: 1px solid #d9e1ec;
    border-radius: 2px;
}

.cloud-form-card {
    padding: 0 24px 24px;
}

.cloud-status-box {
    padding: 18px 22px;
    margin-bottom: 22px;
}

.cloud-status-box h3 {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 500;
}

.cloud-status-box p {
    margin: 0;
}

.cloud-console-form {
    max-width: 980px;
    padding-bottom: 8px;
}

.cloud-form-section {
    border-top: 1px solid #dfe4ed;
    margin-top: 24px;
    padding: 24px 0 16px;
    color: #1f2937;
    font-size: 14px;
    font-weight: 500;
}

.cloud-console-form .cloud-form-section:first-child {
    border-top: 0;
    margin-top: 0;
}

.cloud-form-item {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 34px;
    align-items: start;
    min-height: 48px;
    margin-bottom: 18px;
}

.cloud-form-item > label {
    display: block;
    padding-top: 9px;
    color: #525b6b;
    font-weight: 400;
    font-size: 14px;
}

.cloud-form-item.required > label::before {
    content: "* ";
    color: #d93026;
}

.cloud-form-control {
    max-width: 674px;
}

.cloud-form-control.narrow {
    max-width: 320px;
}

.cloud-form-control input,
.cloud-form-control select,
.cloud-form-control textarea {
    border-radius: 0;
    border-color: #bfc9d4;
    min-height: 36px;
    padding: 8px 12px;
    font-size: 14px;
}

.cloud-form-control textarea {
    min-height: 96px;
}

.cloud-form-control input:focus,
.cloud-form-control select:focus,
.cloud-form-control textarea:focus {
    border-color: #0b63e5;
    outline: none;
}

.cloud-form-desc {
    margin: 7px 0 0;
    color: #667085;
    line-height: 1.65;
    font-size: 13px;
}

.cloud-check-row {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    padding-top: 7px;
}

.cloud-check-row label {
    display: flex;
    grid-template-columns: none;
    align-items: center;
    gap: 8px;
    color: #1f2937;
    font-weight: 400;
}

.cloud-check-row input {
    width: auto;
    min-height: auto;
}

.cloud-form-actions {
    border-top: 1px solid #dfe4ed;
    margin-top: 24px;
    padding-top: 24px;
    display: flex;
    gap: 10px;
}

.cloud-form-actions button {
    min-width: 108px;
    height: 34px;
    min-height: 34px;
    border-radius: 0;
    padding: 0 18px;
    background: #0b63e5;
    font-size: 13px;
}

.instance-create-page {
    background: #fff;
}

.instance-image-header {
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 88px;
    padding: 18px 22px;
    border-bottom: 1px solid #dfe6f2;
    background: #fff;
}

.image-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: #ff961f;
    color: #fff;
    font-size: 0;
}

.image-icon::before {
    content: "";
    width: 20px;
    height: 20px;
    border: 4px solid #fff;
    border-radius: 50%;
    box-shadow: 0 -13px 0 -8px #fff, 0 13px 0 -8px #fff, 13px 0 0 -8px #fff, -13px 0 0 -8px #fff;
}

.instance-image-header h1 {
    margin: 0 0 8px;
    color: #001a47;
    font-size: 18px;
    font-weight: 500;
}

.instance-image-header p {
    margin: 0;
    color: #536486;
    font-size: 13px;
}

.instance-create-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 26px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 24px 22px 100px;
}

.instance-config-panel {
    min-width: 0;
    min-height: 760px;
}

.instance-section-title {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.instance-section-title h2 {
    flex: 0 0 auto;
    margin: 0;
    color: #001a47;
    font-size: 20px;
    font-weight: 700;
    white-space: nowrap;
}

.instance-section-title select {
    flex: 1 1 auto;
    min-width: 0;
    height: 36px;
    border: 1px solid #d9e2f3;
    border-radius: 4px;
    padding: 0 34px 0 12px;
    color: #001a47;
    font-weight: 700;
}

.instance-config-group {
    margin-bottom: 24px;
}

.instance-config-group > label:first-child {
    display: block;
    margin-bottom: 12px;
    color: #34415f;
    font-size: 14px;
}

.instance-config-group.required > label:first-child::after {
    content: " *";
    color: #f04438;
}

.instance-config-group label span {
    color: #245bff;
}

.instance-config-group label strong {
    margin-left: 6px;
    color: #001a47;
    font-size: 13px;
}

.instance-config-group p {
    margin: -4px 0 10px;
    color: #65738d;
    font-size: 13px;
}

.instance-segment,
.instance-choice-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.instance-segment label,
.instance-choice-row label {
    cursor: pointer;
}

.instance-segment input,
.instance-choice-row input,
.gpu-option-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.instance-segment b,
.instance-choice-row span {
    min-width: 92px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #cad4e5;
    background: #f8fafd;
    color: #9aa4b7;
    font-size: 14px;
    font-weight: 500;
}

.instance-segment input:checked + b,
.instance-choice-row input:checked + span {
    border-color: #245bff;
    background: #eef4ff;
    color: #245bff;
}

.gpu-option-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.gpu-option-card {
    position: relative;
    min-height: 60px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid #d9e2f3;
    border-radius: 4px;
    padding: 12px 42px 12px 18px;
    background: #fff;
    cursor: pointer;
}

.gpu-option-card:has(input:checked) {
    border-color: #245bff;
    box-shadow: inset 0 0 0 1px #245bff;
}

.gpu-option-card span {
    height: 28px;
    display: inline-flex;
    align-items: center;
    border-radius: 4px;
    padding: 0 9px;
    background: #f1f4f9;
    color: #245bff;
    font-weight: 800;
}

.gpu-option-card strong {
    color: #001a47;
    font-size: 16px;
}

.gpu-option-card em {
    position: absolute;
    top: -12px;
    right: -6px;
    border-radius: 999px;
    padding: 2px 8px;
    background: #ff4d4f;
    color: #fff;
    font-size: 12px;
    font-style: normal;
}

.gpu-option-card i {
    position: absolute;
    right: 16px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #e5e7eb;
    box-shadow: 0 -9px 0 #e5e7eb, 0 9px 0 #e5e7eb;
}

.gpu-option-card i.stock-good {
    background: #16a34a;
    box-shadow: 0 -9px 0 #16a34a, 0 9px 0 #16a34a;
}

.gpu-option-card i.stock-warn {
    background: #f5b21f;
    box-shadow: 0 -9px 0 #f5b21f, 0 9px 0 #f5b21f;
}

.gpu-option-card i.stock-bad {
    background: #ef4444;
    box-shadow: 0 -9px 0 #e5e7eb, 0 9px 0 #ef4444;
}

.cpu-row span {
    min-width: 110px;
}

.instance-inline-input {
    display: inline-flex;
    align-items: center;
    height: 36px;
    border: 1px solid #cad4e5;
    background: #fff;
}

.instance-inline-input input {
    width: 92px;
    height: 34px;
    border: 0;
    padding: 0 12px;
    color: #001a47;
}

.instance-inline-input span {
    min-width: 42px;
    padding: 0 10px;
    border-left: 1px solid #d9e2f3;
    color: #65738d !important;
    text-align: center;
}

.disk-input input {
    width: 80px;
}

.instance-check {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    margin-bottom: 0 !important;
    color: #001a47 !important;
}

.instance-check small {
    color: #65738d;
}

.instance-check.disabled {
    color: #c0c6d2 !important;
}

.instance-side-panel {
    display: grid;
    gap: 16px;
    align-content: start;
    position: sticky;
    top: 90px;
}

.instance-side-card {
    border: 1px solid #d9e2f3;
    border-radius: 6px;
    padding: 18px;
    background: #fff;
}

.instance-side-card h3 {
    margin: 0 0 18px;
    color: #001a47;
    font-size: 17px;
}

.instance-side-card label {
    display: grid;
    gap: 8px;
    margin-bottom: 16px;
    color: #34415f;
    font-size: 13px;
}

.instance-side-card input,
.instance-side-card select,
.instance-side-card textarea {
    width: 100%;
    border: 1px solid #cad4e5;
    border-radius: 2px;
    padding: 0 12px;
    color: #001a47;
    font-size: 14px;
}

.instance-side-card input,
.instance-side-card select {
    height: 36px;
}

.instance-side-card textarea {
    min-height: 86px;
    padding-top: 10px;
    resize: vertical;
}

.instance-side-check {
    display: flex !important;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 8px;
}

.instance-side-check input {
    width: auto;
    height: auto;
}

.instance-submit-bar {
    position: sticky;
    bottom: 0;
    z-index: 18;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: calc(100% - 44px);
    max-width: 1280px;
    margin: 0 auto 18px;
    border: 1px solid #dfe6f2;
    border-radius: 4px;
    padding: 16px 22px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 -10px 28px rgba(16, 24, 40, 0.08);
}

.instance-submit-bar div {
    display: grid;
    gap: 4px;
}

.instance-submit-bar span {
    color: #65738d;
    font-size: 13px;
}

.instance-submit-bar strong {
    color: #001a47;
    font-size: 15px;
}

.instance-submit-bar button {
    height: 38px;
    min-height: 38px;
    border-radius: 2px;
    padding: 0 22px;
    background: #155fe8;
}

@media (max-width: 900px) {
    .nav {
        align-items: flex-start;
        flex-direction: column;
        padding: 16px 24px;
    }

    .nav-links,
    .nav-actions {
        flex-wrap: wrap;
    }

    .hero h1 {
        font-size: 40px;
    }

    .home-hero-inner,
    .home-hero-metrics,
    .home-capability-grid,
    .home-product-grid,
    .home-workflow-grid,
    .home-scene-grid {
        grid-template-columns: 1fr;
    }

    .home-hero-inner {
        gap: 32px;
        padding-top: 64px;
    }

    .home-hero-visual {
        max-width: 100%;
    }

    .home-capability-grid div,
    .home-capability-grid div:first-child,
    .home-workflow-grid div {
        border-left: 0;
        border-right: 0;
        border-bottom: 1px solid #e5edf7;
    }

    .home-workflow-grid div:last-child {
        border-bottom: 0;
    }

    .instance-create-shell,
    .gpu-option-grid {
        grid-template-columns: 1fr;
    }

    .instance-side-panel {
        position: static;
    }

    .instance-submit-bar {
        align-items: stretch;
        flex-direction: column;
        width: calc(100% - 32px);
    }

    .asset-overview,
    .group-business-card,
    .grid.cols-2,
    .grid.cols-3,
    .grid.cols-4,
    .asset-grid,
    .metric-row,
    .form-row,
    .shell,
    .console-shell,
    .profile-grid {
        grid-template-columns: 1fr;
    }

    .console-sidebar {
        border-right: 0;
        border-bottom: 1px solid #e7ebf2;
    }

    .personal-profile,
    .top-grid,
    .stat-grid,
    .personal-bottom-grid {
        grid-template-columns: 1fr;
    }

    .personal-login-info {
        display: none;
    }

    .ticket-toolbar,
    .ticket-pagination,
    .ticket-create-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .ticket-filter-group,
    .ticket-create-row,
    .ticket-create-row.compact-row,
    .ticket-create-row.full-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .ticket-create-actions {
        padding-left: 0;
    }

    .finance-balance,
    .finance-toolbar,
    .finance-pagination {
        align-items: stretch;
        flex-direction: column;
    }

    .finance-search {
        grid-template-columns: 1fr;
    }

    .finance-table {
        width: 100%;
        margin: 0;
    }

    .dedicated-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .dedicated-filters {
        grid-template-columns: 1fr;
    }

    .cloud-server-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .cloud-server-filters {
        grid-template-columns: 1fr;
    }

    .cloud-server-pagination {
        align-items: stretch;
        flex-direction: column;
    }

    .transfer-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .transfer-filters {
        grid-template-columns: 1fr;
    }

    .domain-toolbar,
    .domain-pagination {
        align-items: stretch;
        flex-direction: column;
    }

    .domain-action-group,
    .domain-tabs {
        flex-wrap: wrap;
    }

    .domain-filter-group,
    .domain-contact-filter,
    .domain-modal-grid.two,
    .domain-modal-grid.phone {
        grid-template-columns: 1fr;
    }

    .domain-table {
        min-width: 980px;
    }

    .domain-panel {
        overflow-x: auto;
    }

    .cloud-login-shell {
        align-items: flex-start;
        padding: 80px 20px 32px;
    }

    .cloud-login-panel {
        width: 100%;
        border-left: 0;
        padding: 0;
    }

    .cloud-login-tabs {
        gap: 18px;
        flex-wrap: wrap;
    }

    .cloud-login-tabs a {
        margin-left: 0;
    }

    .cloud-form-item {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .cloud-form-item > label {
        padding-top: 0;
    }
}
