:root {
    --bg: #060708;
    --bg-soft: #0c1014;
    --panel: #12181e;
    --paper: #f4ead7;
    --muted: #9aa39d;
    --gold: #c9a45c;
    --gold-soft: #ead4a0;
    --ember: #c45c32;
    --line: rgba(201, 164, 92, 0.2);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    min-height: 100vh;
    color: var(--paper);
    font: 16px/1.65 Outfit, sans-serif;
    background:
        radial-gradient(1200px 500px at 80% -10%, rgba(196, 92, 50, 0.16), transparent 50%),
        radial-gradient(900px 420px at 0% 20%, rgba(201, 164, 92, 0.08), transparent 45%),
        var(--bg);
}
body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8'/%3E%3C/filter%3E%3Crect width='80' height='80' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
    z-index: 0;
}
body > * { position: relative; z-index: 1; }
img { max-width: 100%; display: block; }
a { color: var(--gold-soft); }
button, input, select { font: inherit; }
em { color: var(--gold); font-style: normal; }

.wrap {
    width: min(1200px, calc(100% - 48px));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    backdrop-filter: blur(18px);
    background: rgba(6, 7, 8, 0.82);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 1px 0 rgba(201, 164, 92, 0.12);
}
.header-row {
    min-height: 84px;
    display: flex;
    align-items: center;
    gap: 28px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: inherit;
    text-decoration: none;
}
.brand strong {
    display: block;
    font: 600 14px/1 Cinzel, serif;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.brand small {
    display: block;
    margin-top: 5px;
    color: var(--gold);
    font: 600 10px Outfit, sans-serif;
    letter-spacing: 0.32em;
    text-transform: uppercase;
}
.site-nav {
    display: flex;
    gap: 28px;
    margin-left: auto;
}
.site-nav a {
    color: rgba(243, 234, 216, 0.78);
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.site-nav a[aria-current="page"],
.site-nav a:hover { color: var(--gold); }
.header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}
.nav-toggle {
    display: none;
    margin-left: auto;
    border: 1px solid var(--line);
    background: transparent;
    color: var(--paper);
    padding: 8px 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.btn, .ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 0;
    cursor: pointer;
}
.btn {
    min-height: 48px;
    padding: 0 24px;
    background: linear-gradient(180deg, #e2bb72, #c09448);
    color: #1a1208;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 12px;
    box-shadow: 0 8px 24px rgba(201, 164, 92, 0.18);
}
.btn:hover { filter: brightness(1.06); }
.btn-ghost {
    background: transparent;
    color: var(--paper);
    border: 1px solid var(--line);
    box-shadow: none;
}
.ghost {
    color: var(--paper);
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 84px);
    display: grid;
    align-items: center;
    padding: 72px 0 80px;
}
.hero::before,
.hero::after {
    content: "";
    position: absolute;
    pointer-events: none;
}
.hero::before {
    inset: 8% 6% 10% 48%;
    background:
        linear-gradient(180deg, transparent 0%, rgba(6,7,8,.55) 70%, #060708 100%),
        linear-gradient(145deg, #3d2a22 0%, #1a242b 48%, #0b1014 100%);
    clip-path: polygon(12% 0, 100% 8%, 88% 100%, 0 92%);
    border: 1px solid rgba(201, 164, 92, 0.18);
    opacity: 0.95;
}
.hero::after {
    right: 11%;
    bottom: 18%;
    width: 180px;
    height: 180px;
    border: 1px solid rgba(201, 164, 92, 0.28);
    transform: rotate(12deg);
}
.hero-copy { position: relative; z-index: 1; max-width: 640px; }
.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    padding: 6px 12px 6px 10px;
    border: 1px solid var(--line);
    color: var(--gold-soft);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}
.status-pill i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #8fd0b0;
    box-shadow: 0 0 10px #8fd0b0;
}
.kicker {
    margin: 0 0 16px;
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 0.34em;
    text-transform: uppercase;
}
h1, h2, h3 { font-family: Cinzel, serif; font-weight: 600; letter-spacing: 0.03em; }
h1 {
    margin: 0 0 22px;
    font-size: clamp(56px, 9vw, 108px);
    line-height: 0.88;
    text-transform: uppercase;
    text-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}
.lead { max-width: 540px; color: var(--muted); font-size: 17px; }
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 36px;
}
.hero-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    max-width: 560px;
    margin-top: 56px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}
.hero-meta strong {
    display: block;
    font: 600 30px Cinzel, serif;
    color: var(--gold);
}
.hero-meta span {
    color: var(--muted);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.section { padding: 100px 0; }
.section--alt { background: linear-gradient(180deg, #090c10, #060708); }
.section-head { max-width: 680px; margin-bottom: 48px; }
h2 {
    margin: 8px 0 16px;
    font-size: clamp(32px, 5vw, 54px);
    line-height: 0.96;
    text-transform: uppercase;
}
.world-grid, .news-grid, .download-grid {
    display: grid;
    gap: 18px;
}
.world-grid { grid-template-columns: 1.25fr 1fr 1fr; }
.place, .feature, .news-card, .class-card, .step, .panel {
    background: linear-gradient(180deg, rgba(18, 24, 30, 0.92), rgba(9, 12, 16, 0.96));
    border: 1px solid var(--line);
    padding: 28px;
}
.place, .feature, .news-card, .class-card {
    transition: transform 0.25s ease, border-color 0.25s ease;
}
.place:hover, .feature:hover, .news-card:hover, .class-card:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 164, 92, 0.45);
}
.place h3, .feature h3, .news-card h3 { margin: 12px 0 10px; font-size: 24px; }
.muted, .place p, .feature p, .news-card p, .class-card p { color: var(--muted); margin: 0; }
.place--large {
    min-height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    background:
        linear-gradient(180deg, transparent, rgba(6,7,8,.9)),
        linear-gradient(145deg, #4a2f24, #1a2429 55%, #0c1013);
}

.feature-grid, .class-grid { display: grid; gap: 16px; }
.feature-grid { grid-template-columns: repeat(4, 1fr); }
.class-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.class-card {
    min-height: 268px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    position: relative;
    overflow: hidden;
}
.class-card::after {
    content: "";
    position: absolute;
    inset: auto -30% -45% auto;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(201, 164, 92, 0.1);
}
.class-card__top {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: auto;
}
.class-card span, .class-card small {
    color: var(--gold);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}
.class-card h3 { position: relative; z-index: 1; margin: 28px 0 10px; font-size: 24px; }
.class-card p { position: relative; z-index: 1; }
.class-card--fighter { background: linear-gradient(180deg, #4a241c, #10151a); }
.class-card--mech { background: linear-gradient(180deg, #24343c, #10151a); }
.class-card--archer { background: linear-gradient(180deg, #1f3a2c, #10151a); }
.class-card--pike { background: linear-gradient(180deg, #3a2e18, #10151a); }
.class-card--atalanta { background: linear-gradient(180deg, #2d2440, #10151a); }
.class-card--knight { background: linear-gradient(180deg, #2a333c, #10151a); }
.class-card--mage { background: linear-gradient(180deg, #1a2c44, #10151a); }
.class-card--priest { background: linear-gradient(180deg, #3d3220, #10151a); }
.class-card--assassin { background: linear-gradient(180deg, #2a1418, #10151a); }
.class-card--shaman { background: linear-gradient(180deg, #1c3340, #10151a); }

.news-grid { grid-template-columns: 1.35fr 1fr 1fr; }
.news-card time {
    color: var(--ember);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}
.cta-band {
    padding: 76px 0;
    background:
        linear-gradient(90deg, rgba(58, 34, 24, 0.95), rgba(12, 14, 18, 0.92) 55%),
        #12181d;
    border-block: 1px solid var(--line);
}
.cta-band h2 { font-size: clamp(28px, 4.4vw, 42px); margin: 0; }
.cta-band .wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.page-hero { padding: 80px 0 20px; }
.page-hero h1 { font-size: clamp(40px, 6vw, 72px); }
.identity-line {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    color: var(--muted);
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.role-badge {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border: 1px solid rgba(201, 164, 92, 0.55);
    color: var(--gold-soft);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}
.download-grid { grid-template-columns: 1.3fr 0.7fr; }
.steps { display: grid; gap: 14px; }
.step { display: grid; grid-template-columns: 48px 1fr; gap: 16px; align-items: start; }
.step b {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: Cinzel, serif;
}
.reqs { padding-left: 18px; }
.reqs li { margin: 8px 0; color: var(--muted); }

.stack-form { display: grid; gap: 18px; max-width: 520px; }
.stack-form label, .panel label {
    display: grid;
    gap: 8px;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.stack-form input, .panel input, .panel select {
    width: 100%;
    border: 0;
    border-bottom: 1px solid var(--line);
    background: transparent;
    color: var(--paper);
    padding: 12px 0;
    outline: 0;
}
.stack-form input:focus, .panel input:focus { border-color: var(--gold); }
.check {
    display: flex;
    gap: 10px;
    align-items: center;
    text-transform: none;
    letter-spacing: 0;
    font-size: 14px;
}
.form-message { min-height: 1.2em; font-size: 14px; }
.success { color: #8fd0b0; }
.error { color: #e07a6a; }
.message { margin-top: 16px; color: #8fd0b0; }

.table-wrap { border: 1px solid var(--line); background: rgba(12, 16, 20, 0.6); }
.table-head, .table-row {
    display: grid;
    grid-template-columns: 70px 1.8fr 1fr 1.2fr 1fr;
    gap: 16px;
    align-items: center;
    padding: 16px 22px;
    border-bottom: 1px solid var(--line);
}
.table-head {
    color: var(--gold);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}
.table-row b { color: var(--ember); font: 600 22px Cinzel, serif; }
.table-row strong { font: 600 18px Cinzel, serif; }
.table-row small { display: block; color: var(--muted); font: 400 12px Outfit, sans-serif; margin-top: 4px; }
.status.online { color: #8fd0b0; }
.notice, .empty { padding: 28px; color: var(--muted); }

.dashboard, .metrics { display: grid; gap: 16px; }
.dashboard { grid-template-columns: 1.3fr 1fr; }
.metrics { grid-template-columns: repeat(5, minmax(0, 1fr)); margin: 28px 0 40px; }
.metric { position: relative; overflow: hidden; }
.metric::after {
    content: "";
    position: absolute;
    right: 20px;
    bottom: 18px;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(201, 164, 92, 0.22);
    transform: rotate(45deg);
}
.metric strong { display: block; font: 600 42px/1 Cinzel, serif; color: var(--gold); }
.metric span, .quiet-label {
    display: block;
    margin-top: 10px;
    color: var(--muted);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}
.metric--alert { border-color: rgba(196, 92, 50, 0.5); }
.metric--alert strong { color: #e07a6a; }
.metric--success strong { color: #8fd0b0; }
.dashboard-intro, .panel-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
}
.dashboard-intro { margin: 4px 0 8px; }
.dashboard-intro h2, .panel-heading h2 { margin: 6px 0 0; font-size: 24px; }
.dashboard-intro > .muted { max-width: 360px; margin: 0; text-align: right; }
.panel-heading { align-items: start; margin-bottom: 24px; }
.panel-heading .kicker { margin-bottom: 0; }
.table-panel { padding: 28px; }
.table-panel .table-wrap { border-inline: 0; background: transparent; }
.table-panel .table-head { padding-inline: 0; }
.table-panel .table-row { padding-inline: 0; }
.character {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
}
.character strong { display: block; color: var(--paper); font: 600 17px Cinzel, serif; }
.character small { display: block; margin-top: 5px; color: var(--muted); font: 400 12px Outfit, sans-serif; letter-spacing: 0.02em; }
.character > span { flex: 0 0 auto; align-self: center; color: var(--gold-soft); font-size: 13px; white-space: nowrap; }
.coins { font: 600 32px Cinzel, serif; color: var(--gold); }
.coin-mark {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--gold);
    color: var(--gold);
    font: 600 10px Cinzel, serif;
    letter-spacing: 0.08em;
}
.wallet-copy { margin: 10px 0 24px; }
.package-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin: 0 0 20px;
    padding: 0;
    border: 0;
}
.package-grid legend {
    width: 100%;
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.stack-form .package-option, .panel .package-option { display: block; cursor: pointer; }
.package-option input { position: absolute; opacity: 0; pointer-events: none; }
.package-option span {
    display: flex;
    min-height: 86px;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
    padding: 12px;
    border: 1px solid var(--line);
    background: rgba(6, 7, 8, 0.28);
    transition: border-color 0.2s ease, background 0.2s ease;
}
.package-option:hover span, .package-option input:checked + span {
    border-color: var(--gold);
    background: rgba(201, 164, 92, 0.1);
}
.package-option b { color: var(--gold-soft); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; }
.package-option strong { color: var(--paper); font: 600 17px Cinzel, serif; }
.package-option small { color: var(--muted); font-size: 12px; }
.history-panel { margin-top: 16px; }
.history-row {
    display: grid;
    grid-template-columns: 60px 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
}
.history-row > span { color: var(--ember); font: 600 17px Cinzel, serif; }
.history-row strong { color: var(--paper); font: 500 16px Cinzel, serif; }
.history-row small { display: block; margin-top: 4px; color: var(--muted); font: 400 12px Outfit, sans-serif; }
.donation-status { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; }
.donation-status--paid { color: #8fd0b0; }
.donation-status--pending { color: var(--gold); }
.donation-status--rejected { color: #e07a6a; }
.donation-layout { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr); gap: 18px; align-items: start; }
.donation-public-form { max-width: none; padding: 28px; border: 1px solid var(--line); background: linear-gradient(180deg, rgba(18, 24, 30, 0.92), rgba(9, 12, 16, 0.96)); }
.pix-panel { min-height: 100%; }
.pix-panel h2 { margin-top: 6px; font-size: 30px; }
.pix-qr { width: 190px; margin: 24px auto 10px; padding: 10px; background: #fff; }
.pix-placeholder { margin-top: 22px; padding: 16px; border: 1px dashed var(--line); color: var(--muted); font-size: 13px; }
.pix-key, .pix-inline { display: flex; align-items: center; gap: 10px; margin-top: 22px; padding: 12px; border: 1px solid var(--line); }
.pix-key code, .pix-inline code { min-width: 0; flex: 1; overflow-wrap: anywhere; color: var(--gold-soft); font-size: 12px; }
.pix-inline { flex-wrap: wrap; }
.pix-inline .quiet-label { width: 100%; margin: 0; }
.pix-key .action { flex: 0 0 auto; }
.account-management { margin-top: 18px; }
.admin-tabs { display: flex; gap: 6px; overflow-x: auto; margin: 0 -28px 24px; padding: 0 28px 1px; border-bottom: 1px solid var(--line); }
.admin-tab { flex: 0 0 auto; padding: 12px 14px; border: 0; border-bottom: 2px solid transparent; background: transparent; color: var(--muted); cursor: pointer; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; }
.admin-tab:hover, .admin-tab.is-active { border-color: var(--gold); color: var(--gold-soft); }
.admin-tab-panel { display: none; }
.admin-tab-panel.is-active { display: block; }
.admin-form { display: grid; gap: 16px; max-width: 560px; padding: 8px 0 20px; }
.form-section-title { padding-top: 10px; border-top: 1px solid var(--line); color: var(--gold); font: 600 12px Cinzel, serif; letter-spacing: 0.14em; text-transform: uppercase; }
.admin-form label small { display: inline; color: var(--muted); font-size: 10px; letter-spacing: 0; text-transform: none; }
.admin-form label { display: grid; gap: 7px; color: var(--muted); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; }
.admin-form input, .admin-form select { width: 100%; padding: 11px; border: 1px solid var(--line); background: #090d10; color: var(--paper); }
.admin-form .btn { justify-self: start; }
.admin-form + .admin-form { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--line); }
.edit-actions { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-top: 12px; padding-top: 20px; border-top: 1px solid var(--line); }
.edit-actions .form-section-title { grid-column: 1 / -1; }
.edit-actions form { display: grid; gap: 8px; align-content: start; }
.edit-actions label { display: grid; gap: 6px; color: var(--muted); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; }
.edit-actions input, .edit-actions select { width: 100%; padding: 9px; border: 1px solid var(--line); background: #090d10; color: var(--paper); }
.edit-actions .action { justify-self: start; }
.admin-users { display: grid; gap: 1px; background: var(--line); }
.admin-user { display: grid; grid-template-columns: minmax(150px, 0.8fr) minmax(280px, 1.4fr) auto; gap: 14px; align-items: center; padding: 14px; background: #10161b; }
.admin-user.is-banned { background: rgba(196, 92, 50, 0.12); }
.admin-user-info strong { display: block; color: var(--paper); font: 600 16px Cinzel, serif; }
.admin-user-info small { display: block; margin-top: 4px; color: var(--muted); font-size: 11px; overflow-wrap: anywhere; }
.admin-user-edit { display: grid; grid-template-columns: minmax(120px, 1fr) 100px auto; gap: 8px; align-items: center; }
.admin-user-edit input { min-width: 0; padding: 9px 8px; border: 1px solid var(--line); background: #090d10; }
.admin-user-actions { display: flex; gap: 6px; justify-content: end; }
.admin-quick-actions { display: flex; flex-wrap: wrap; gap: 5px; justify-content: end; }
.admin-user-actions form { margin: 0; }
.action--gold { background: var(--gold); color: #1a1208; }
.action--danger { background: #733b32; }
.account-strip {
    display: grid;
    grid-template-columns: 1fr 1.6fr 0.7fr;
    gap: 16px;
    margin-top: 16px;
    padding: 20px 24px;
    border-block: 1px solid var(--line);
}
.account-strip strong { display: block; margin-top: 4px; color: var(--paper); font: 500 16px Cinzel, serif; overflow-wrap: anywhere; }
.action {
    border: 0;
    background: var(--ember);
    color: #fff;
    padding: 6px 8px;
    margin: 2px;
    cursor: pointer;
}

.site-footer {
    border-top: 1px solid var(--line);
    padding: 48px 0 56px;
    color: var(--muted);
    font-size: 13px;
    background: #07090c;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 32px;
    align-items: start;
}
.site-footer nav { display: flex; flex-direction: column; gap: 10px; }
.site-footer nav a {
    color: var(--paper);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 12px;
}
.site-footer h4 {
    margin: 0 0 14px;
    font: 600 12px Cinzel, serif;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
}

@media (max-width: 1020px) {
    .class-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .hero::after { display: none; }
}
@media (max-width: 900px) {
    .nav-toggle { display: block; }
    .site-nav, .header-actions { display: none; }
    body.nav-open .site-nav,
    body.nav-open .header-actions {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        position: absolute;
        left: 24px;
        right: 24px;
        top: 84px;
        background: #0e1216;
        border: 1px solid var(--line);
        padding: 18px;
        gap: 14px;
        z-index: 40;
    }
    .world-grid, .feature-grid, .class-grid, .news-grid, .download-grid, .dashboard, .metrics, .cta-band .wrap, .footer-grid, .hero-meta, .account-strip {
        grid-template-columns: 1fr;
        display: grid;
    }
    .dashboard-intro, .panel-heading { align-items: start; flex-direction: column; gap: 8px; }
    .dashboard-intro > .muted { text-align: left; }
    .table-panel { padding: 20px 14px; }
    .donation-layout { grid-template-columns: 1fr; }
    .admin-user { grid-template-columns: 1fr; }
    .admin-user-actions { justify-content: start; }
    .admin-quick-actions { justify-content: start; }
    .edit-actions { grid-template-columns: 1fr; }
    .package-grid { grid-template-columns: 1fr 1fr; }
    .history-row { grid-template-columns: 42px 1fr; }
    .donation-status { grid-column: 2; }
    .hero { align-items: end; }
    .hero::before { inset: 38% 0 0 12%; }
    .table-head, .table-row { grid-template-columns: 42px 1fr 64px; padding: 14px 12px; }
    .table-head span:nth-child(4),
    .table-head span:nth-child(5),
    .table-row span:nth-child(4),
    .table-row span:nth-child(5) { display: none; }
}
