/* CS-ZOMBIEPLANET Portal - Fixed style.css */
/* Full replacement for: public_html/assets/css/style.css */

* {
    box-sizing: border-box;
}

:root {
    --bg: #050505;
    --panel: rgba(12, 12, 16, 0.72);
    --panel-strong: rgba(12, 12, 16, 0.86);
    --line: rgba(255, 255, 255, 0.10);
    --line-strong: rgba(255, 255, 255, 0.16);
    --text: #f5f5f5;
    --muted: #a8a8b3;
    --muted2: #6d6f7a;
    --red: #ff3333;
    --red2: #9d111b;
    --cyan: #00d9ff;
    --green: #42f59b;
    --gold: #ffd34d;
    --radius: 24px;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background: var(--bg);
    color: var(--text);
    font-family: Inter, Arial, Helvetica, sans-serif;
}

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

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

.bg-glow {
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 12% 8%, rgba(255, 0, 55, 0.24), transparent 32%),
        radial-gradient(circle at 86% 12%, rgba(0, 217, 255, 0.15), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 35%);
    z-index: -3;
}

.bg-grid {
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 48px 48px;
    opacity: 0.28;
    z-index: -2;
}

.container {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--line);
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(18px);
}

.header-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 51, 51, 0.40);
    border-radius: 18px;
    background: rgba(255, 51, 51, 0.14);
    box-shadow: 0 18px 50px rgba(255, 0, 0, 0.20);
    color: var(--red);
    font-size: 24px;
}

.brand strong,
.brand small {
    display: block;
}

.brand strong {
    font-weight: 950;
    letter-spacing: 0.03em;
}

.brand small {
    margin-top: 2px;
    color: var(--muted2);
    font-size: 12px;
    font-weight: 700;
}

.nav {
    display: flex;
    align-items: center;
    gap: 18px;
}

.nav a {
    color: var(--muted);
    font-size: 14px;
    font-weight: 900;
    transition: color 0.2s ease;
}

.nav a:hover,
.nav a.active {
    color: white;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Buttons */
.btn {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 16px;
    padding: 0 18px;
    font-weight: 950;
    cursor: pointer;
    color: white;
    white-space: nowrap;
}

.btn-red {
    background: linear-gradient(135deg, var(--red), var(--red2));
    color: white;
    box-shadow: 0 18px 45px rgba(255, 0, 0, 0.20);
}

.btn-dark {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

.btn.disabled,
.btn:disabled {
    background: #1d1e24;
    color: #6d6e78;
    cursor: not-allowed;
    box-shadow: none;
}

.full {
    width: 100%;
}

/* Flash messages */
.flashes {
    padding-top: 18px;
}

.flash {
    margin: 10px 0;
    border-radius: 16px;
    padding: 14px 16px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.06);
    font-weight: 800;
}

.flash.error {
    border-color: rgba(255, 51, 51, 0.35);
    color: #ffb8b8;
    background: rgba(255, 51, 51, 0.10);
}

.flash.success {
    border-color: rgba(66, 245, 155, 0.35);
    color: #a7ffd0;
    background: rgba(66, 245, 155, 0.10);
}

/* Shared visual elements */
.glass,
.mini-card {
    border: 1px solid var(--line);
    background: var(--panel);
    border-radius: var(--radius);
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.30);
    backdrop-filter: blur(18px);
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: max-content;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.045);
    font-size: 13px;
    font-weight: 950;
}

.pill.red {
    color: #ffb8b8;
    border-color: rgba(255, 51, 51, 0.30);
    background: rgba(255, 51, 51, 0.10);
}

.pill.cyan {
    color: #a6f3ff;
    border-color: rgba(0, 217, 255, 0.30);
    background: rgba(0, 217, 255, 0.10);
}

.pill.gold {
    color: #ffe9a3;
    border-color: rgba(255, 211, 77, 0.30);
    background: rgba(255, 211, 77, 0.10);
}

/* Hero */
.hero {
    min-height: calc(100vh - 78px);
    display: grid;
    grid-template-columns: 1fr 0.88fr;
    align-items: center;
    gap: 48px;
    padding: 74px 0;
}

.hero h1,
.section-head h1 {
    margin: 22px 0 0;
    max-width: 780px;
    font-size: clamp(42px, 6vw, 76px);
    line-height: 0.95;
    letter-spacing: -0.055em;
    font-weight: 1000;
}

.hero p,
.section-head p {
    max-width: 720px;
    margin: 22px 0 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.75;
}

.hero-cards {
    margin-top: 34px;
    display: grid;
    max-width: 720px;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.mini-card {
    padding: 18px;
    transition: transform 0.2s ease, background 0.2s ease;
}

.mini-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.06);
}

.mini-card span {
    display: block;
    margin-bottom: 12px;
    font-size: 24px;
}

.mini-card strong,
.mini-card small {
    display: block;
}

.mini-card small {
    margin-top: 4px;
    color: var(--muted2);
    font-weight: 800;
}

/* Portal preview */
.portal-preview {
    position: relative;
    overflow: hidden;
    padding: 22px;
    border-color: rgba(255, 51, 51, 0.20);
    background:
        linear-gradient(135deg, rgba(255, 51, 51, 0.16), transparent 42%),
        rgba(8, 8, 10, 0.82);
}

.panel-head {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid var(--line);
}

.panel-head small {
    color: var(--red);
    font-size: 12px;
    letter-spacing: 0.22em;
    font-weight: 1000;
}

.panel-head h2 {
    margin: 7px 0 0;
    font-size: 28px;
    letter-spacing: -0.03em;
}

.panel-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    border: 1px solid rgba(255, 51, 51, 0.28);
    background: rgba(255, 51, 51, 0.10);
    font-size: 24px;
}

.preview-list {
    position: relative;
    display: grid;
    gap: 14px;
}

.preview-row {
    display: grid;
    grid-template-columns: 52px 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(0, 0, 0, 0.35);
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.preview-row:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.065);
    border-color: rgba(255, 51, 51, 0.30);
}

.preview-row > span {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    font-size: 22px;
}

.preview-row strong,
.preview-row small {
    display: block;
}

.preview-row small {
    margin-top: 3px;
    color: var(--muted2);
    font-weight: 700;
}

.preview-row b {
    color: var(--muted2);
    font-size: 28px;
}

/* Sections */
.section {
    padding: 64px 0;
}

.section-head {
    max-width: 760px;
    margin: 0 auto 30px;
    text-align: center;
}

.section-head.left {
    margin-left: 0;
    text-align: left;
}

.section-head h1 {
    font-size: clamp(34px, 4vw, 52px);
}

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

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

/* Cards */
.post-card,
.server-card,
.report-card,
.chatbox,
.form-card,
.stat-card,
.admin-report {
    padding: 22px;
}

.post-card {
    transition: transform 0.2s ease, background 0.2s ease;
}

.post-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.06);
}

.post-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 16px;
}

.badge {
    display: inline-flex;
    width: max-content;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 1000;
}

.badge.red {
    color: #ffb8b8;
    border: 1px solid rgba(255, 51, 51, 0.30);
    background: rgba(255, 51, 51, 0.10);
}

.badge.cyan {
    color: #a6f3ff;
    border: 1px solid rgba(0, 217, 255, 0.30);
    background: rgba(0, 217, 255, 0.10);
}

.badge.green {
    color: #a7ffd0;
    border: 1px solid rgba(66, 245, 155, 0.30);
    background: rgba(66, 245, 155, 0.10);
}

.badge.gold {
    color: #ffe9a3;
    border: 1px solid rgba(255, 211, 77, 0.30);
    background: rgba(255, 211, 77, 0.10);
}

.post-card h3,
.server-card h3,
.report-card h3,
.download-card h3 {
    margin: 0;
    color: white;
    font-size: 22px;
    letter-spacing: -0.025em;
}

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

.author {
    display: block;
    margin-top: 22px;
    color: var(--muted2);
    font-size: 14px;
}

.split {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 28px;
    align-items: start;
}

/* Notices */
.notice-list {
    display: grid;
    gap: 12px;
}

.notice {
    border: 1px solid rgba(0, 217, 255, 0.15);
    border-radius: 18px;
    padding: 15px 17px;
    background: rgba(0, 217, 255, 0.045);
    color: #d9faff;
    font-weight: 700;
}

/* Chat */
.chatbox.wide {
    max-width: 900px;
    margin: 0 auto;
}

.chat-messages {
    display: grid;
    gap: 12px;
    max-height: 560px;
    overflow: auto;
    padding-right: 4px;
}

.chat-msg {
    position: relative;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.35);
}

.chat-msg strong {
    color: var(--cyan);
}

.chat-msg .role {
    color: var(--gold);
    font-size: 11px;
    margin-left: 8px;
    text-transform: uppercase;
}

.chat-msg p {
    margin: 6px 0 0;
    color: #e8e8e8;
}

.chat-msg small {
    position: absolute;
    right: 15px;
    top: 15px;
    color: var(--muted2);
    font-weight: 900;
}

.chat-form {
    display: flex;
    gap: 12px;
    margin-top: 18px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(0, 0, 0, 0.35);
}

.chat-form input {
    min-width: 0;
    flex: 1;
    border: 0;
    outline: 0;
    background: transparent;
    color: white;
    font-weight: 700;
}

.chat-form button {
    width: 44px;
    border: 0;
    border-radius: 14px;
    background: var(--cyan);
    color: black;
    font-weight: 1000;
    cursor: pointer;
}

/* Ranks */
.rank-list {
    display: grid;
    gap: 14px;
}

.rank-row {
    display: grid;
    grid-template-columns: 80px 1fr 120px 140px;
    align-items: center;
    gap: 16px;
    padding: 18px;
}

.rank-list.compact .rank-row {
    grid-template-columns: 70px 1fr 90px 120px;
}

.rank-number {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 211, 77, 0.30);
    border-radius: 18px;
    background: rgba(255, 211, 77, 0.10);
    color: #ffe9a3;
    font-size: 20px;
    font-weight: 1000;
}

.rank-row strong,
.rank-row small {
    display: block;
}

.rank-row strong {
    font-size: 20px;
    letter-spacing: -0.025em;
}

.rank-row small,
.rank-label {
    margin-top: 4px;
    color: var(--muted2);
    font-weight: 800;
}

.rank-row b {
    color: #ffadad;
    font-size: 22px;
}

/* Servers */
.server-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.server-top small {
    display: block;
    margin-top: 5px;
    color: var(--muted2);
    font-weight: 800;
}

.server-card dl {
    display: grid;
    gap: 10px;
    margin: 0;
}

.server-card dl div {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    border-radius: 16px;
    padding: 13px;
    background: rgba(0, 0, 0, 0.35);
}

.server-card dt {
    color: var(--muted2);
    font-weight: 800;
}

.server-card dd {
    margin: 0;
    color: white;
    font-weight: 950;
}

/* Reports / Downloads */
.report-card {
    min-height: 250px;
}

.report-icon,
.download-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 51, 51, 0.30);
    border-radius: 20px;
    background: rgba(255, 51, 51, 0.10);
    font-size: 26px;
}

.report-card small {
    display: block;
    margin-top: 18px;
    color: var(--muted2);
    font-weight: 1000;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.report-card h3 {
    margin-top: 8px;
    min-height: 58px;
}

.download-card {
    border: 1px solid rgba(255, 51, 51, 0.20);
    border-radius: 28px;
    padding: 26px;
    background:
        linear-gradient(135deg, rgba(255, 51, 51, 0.18), transparent 44%),
        rgba(9, 9, 11, 0.85);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.35);
}

.download-icon {
    margin-bottom: 20px;
}

.download-card h3 {
    font-size: 25px;
}

.download-card p {
    min-height: 86px;
}

/* Forms / Auth / Installer */
.auth-page,
.installer {
    min-height: calc(100vh - 160px);
    display: grid;
    place-items: center;
}

.form-card {
    width: min(100%, 620px);
    display: grid;
    gap: 16px;
}

.form-card h1,
.form-card h2 {
    margin: 0;
    letter-spacing: -0.04em;
}

.form-card label {
    display: grid;
    gap: 8px;
    color: #fff;
    font-weight: 900;
}

.form-card small {
    color: var(--muted2);
    font-weight: 700;
}

.form-card input,
.form-card textarea,
.form-card select,
.inline-form input,
.inline-form select,
.table select,
.table input {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 13px 14px;
    background: rgba(0, 0, 0, 0.42);
    color: white;
    outline: none;
}

.form-card textarea {
    resize: vertical;
}

.form-card .check,
.check {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-card .check input,
.check input {
    width: auto;
}

.compact-form {
    width: 100%;
    margin-bottom: 28px;
}

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

.muted a {
    color: var(--cyan);
    font-weight: 900;
}

/* Admin panel - original class support */
.admin-layout {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
    padding: 64px 0;
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.admin-nav {
    padding: 22px;
    position: sticky;
    top: 100px;
    border: 1px solid var(--line);
    background: var(--panel-strong);
    border-radius: var(--radius);
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.35);
}

.admin-nav h3 {
    margin: 0 0 18px;
    color: #fff;
    font-size: 22px;
    line-height: 1.1;
    font-weight: 950;
}

.admin-nav a {
    display: block;
    margin-bottom: 8px;
    padding: 13px 15px;
    border-radius: 14px;
    color: var(--muted);
    font-weight: 900;
    border: 1px solid transparent;
    background: rgba(255, 255, 255, 0.025);
}

.admin-nav a:hover {
    color: #fff;
    border-color: rgba(255, 51, 51, 0.25);
    background: rgba(255, 51, 51, 0.10);
}

.admin-content {
    min-width: 0;
}

/* Admin hotfix class support */
.ne-admin-layout {
    width: min(1240px, calc(100% - 32px)) !important;
    margin: 0 auto !important;
    padding: 64px 0 !important;
    display: grid !important;
    grid-template-columns: 280px minmax(0, 1fr) !important;
    gap: 28px !important;
    align-items: start !important;
}

.ne-admin-sidebar {
    border: 1px solid rgba(255, 255, 255, 0.10) !important;
    background: rgba(12, 12, 16, 0.82) !important;
    border-radius: 24px !important;
    padding: 20px !important;
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.35) !important;
    position: sticky !important;
    top: 100px !important;
}

.ne-admin-sidebar h3 {
    margin: 0 0 18px 0 !important;
    color: #fff !important;
    font-size: 22px !important;
    line-height: 1.1 !important;
    font-weight: 950 !important;
}

.ne-admin-sidebar a {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    margin: 0 0 9px 0 !important;
    padding: 13px 15px !important;
    border-radius: 15px !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    background: rgba(255, 255, 255, 0.035) !important;
    color: #a8a8b3 !important;
    text-decoration: none !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    line-height: 1.2 !important;
}

.ne-admin-sidebar a:hover {
    color: #fff !important;
    border-color: rgba(255, 51, 51, 0.35) !important;
    background: rgba(255, 51, 51, 0.12) !important;
}

.ne-admin-content {
    min-width: 0 !important;
}

.ne-admin-content .section-head.left {
    text-align: left !important;
    margin: 0 0 28px 0 !important;
}

.ne-admin-content .section-head h1 {
    margin: 16px 0 0 0 !important;
    font-size: clamp(34px, 4vw, 52px) !important;
    line-height: 1 !important;
}

.ne-admin-content .grid {
    display: grid !important;
    gap: 18px !important;
}

.ne-admin-content .grid.three {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.ne-admin-content .stat-card {
    display: block !important;
    min-height: 150px !important;
    padding: 28px !important;
    border: 1px solid rgba(255, 255, 255, 0.10) !important;
    background: rgba(12, 12, 16, 0.72) !important;
    border-radius: 24px !important;
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.30) !important;
}

.stat-card {
    display: block;
    min-height: 150px;
    padding: 28px;
}

.stat-card strong,
.ne-admin-content .stat-card strong {
    display: block !important;
    margin: 0 0 10px 0 !important;
    color: #ff3333 !important;
    font-size: 48px !important;
    line-height: 1 !important;
    font-weight: 1000 !important;
}

.stat-card span,
.ne-admin-content .stat-card span {
    display: block !important;
    color: #a8a8b3 !important;
    font-size: 15px !important;
    font-weight: 900 !important;
}

/* Tables */
.table,
.ne-admin-content .table {
    display: grid !important;
    gap: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    border: 1px solid rgba(255, 255, 255, 0.10) !important;
    background: rgba(12, 12, 16, 0.72) !important;
    border-radius: 24px !important;
}

.table-row,
.ne-admin-content .table-row {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto auto !important;
    gap: 14px !important;
    align-items: center !important;
    padding: 16px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10) !important;
}

.table-row.wide,
.ne-admin-content .table-row.wide {
    grid-template-columns: minmax(0, 1fr) 170px 110px 100px 100px !important;
}

.table-row:last-child,
.ne-admin-content .table-row:last-child {
    border-bottom: 0 !important;
}

.table-row strong,
.table-row small,
.ne-admin-content .table-row strong,
.ne-admin-content .table-row small {
    display: block !important;
}

.table-row small,
.ne-admin-content .table-row small {
    margin-top: 4px !important;
    color: #777985 !important;
    font-weight: 800 !important;
}

.inline-form {
    display: grid;
    grid-template-columns: 150px 1fr auto;
    gap: 12px;
    margin-top: 16px;
}

/* Admin forms */
.ne-admin-content .form-card {
    width: 100% !important;
    max-width: 760px !important;
    margin-bottom: 28px !important;
    padding: 24px !important;
    border: 1px solid rgba(255, 255, 255, 0.10) !important;
    background: rgba(12, 12, 16, 0.72) !important;
    border-radius: 24px !important;
}

.ne-admin-content .form-card label {
    display: grid !important;
    gap: 8px !important;
    margin-bottom: 14px !important;
}

.ne-admin-content input,
.ne-admin-content textarea,
.ne-admin-content select {
    width: 100% !important;
    border: 1px solid rgba(255, 255, 255, 0.10) !important;
    border-radius: 14px !important;
    padding: 13px 14px !important;
    background: rgba(0, 0, 0, 0.42) !important;
    color: #fff !important;
    outline: none !important;
}

/* Footer */
.site-footer {
    border-top: 1px solid var(--line);
    background: rgba(0, 0, 0, 0.55);
}

.footer-inner {
    min-height: 96px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-inner strong,
.footer-inner small {
    display: block;
}

.footer-inner small,
.footer-inner span {
    margin-top: 5px;
    color: var(--muted2);
    font-weight: 800;
}

/* Responsive */
@media (max-width: 1100px) {
    .nav {
        display: none;
    }

    .hero,
    .split,
    .admin-layout,
    .ne-admin-layout {
        grid-template-columns: 1fr !important;
    }

    .admin-nav,
    .ne-admin-sidebar {
        position: static !important;
    }

    .grid.three,
    .ne-admin-content .grid.three {
        grid-template-columns: 1fr 1fr !important;
    }

    .rank-row,
    .rank-list.compact .rank-row {
        grid-template-columns: 70px 1fr;
    }

    .rank-label {
        display: none;
    }

    .table-row,
    .table-row.wide,
    .ne-admin-content .table-row,
    .ne-admin-content .table-row.wide,
    .inline-form {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 680px) {
    .container,
    .ne-admin-layout {
        width: min(100% - 22px, 1240px) !important;
    }

    .header-inner {
        align-items: flex-start;
        flex-direction: column;
        padding: 12px 0;
    }

    .header-actions {
        width: 100%;
    }

    .header-actions .btn {
        flex: 1;
    }

    .hero {
        padding: 44px 0;
    }

    .hero-cards,
    .grid.three,
    .ne-admin-content .grid.three {
        grid-template-columns: 1fr !important;
    }

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

    .hero p {
        font-size: 16px;
    }

    .preview-row {
        grid-template-columns: 46px 1fr;
    }

    .preview-row b {
        display: none;
    }

    .footer-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}
