:root {
    --bg: #070b13;
    --sidebar: #0f1624;
    --card: #111b2b;
    --card2: #0d1421;
    --gold: #d4af37;
    --gold-soft: #f7d97f;
    --text: #ececec;
    --muted: #9ca3af;
    --border: rgba(212,175,55,.16);
    --line: rgba(255,255,255,.08);
    --success: #20c997;
    --danger: #ff6b6b;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-width: thin;
    scrollbar-color: rgba(212,175,55,.72) rgba(255,255,255,.06);
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(255,255,255,.045);
    border-radius: 999px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(212,175,55,.95), rgba(143,103,22,.88));
    border: 2px solid rgba(7,11,19,.92);
    border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #f7d97f, #d4af37);
}

html {
    scroll-behavior: smooth;
}

body {
    background:
        radial-gradient(circle at 15% 0%, rgba(212,175,55,.12), transparent 28%),
        radial-gradient(circle at 95% 18%, rgba(32,201,151,.07), transparent 24%),
        var(--bg);
    color: var(--text);
    font-family: Inter, Arial, sans-serif;
    overflow-x: hidden;
}

.google-translate-host {
    position: fixed;
    right: 12px;
    bottom: 12px;
    z-index: -1;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

body > .skiptranslate,
.goog-te-banner-frame,
.goog-te-gadget {
    display: none !important;
}

body {
    top: 0 !important;
}

h1, h2, h3, h4, h5 {
    font-family: Cinzel, Georgia, serif;
    letter-spacing: 0;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

.section-padding {
    padding: 110px 0;
}

.custom-navbar {
    background: rgba(7,10,15,.72);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255,255,255,.05);
    padding: 16px 0;
}

.navbar-brand img {
    height: 60px;
}

.nav-link {
    color: #ddd !important;
    margin: 0 12px;
    position: relative;
    font-weight: 500;
}

.nav-link:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: .3s;
}

.nav-link:hover:after {
    width: 100%;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), #8f6716);
    border: none;
    color: #111;
    font-weight: 700;
    border-radius: 14px;
    padding: 12px 26px;
    transition: transform .2s, box-shadow .2s, filter .2s;
    box-shadow: 0 0 25px rgba(212,175,55,.25);
}

.btn-gold:hover {
    transform: translateY(-2px);
    color: #000;
    filter: brightness(1.05);
    box-shadow: 0 10px 28px rgba(212,175,55,.32);
}

.btn-outline-custom {
    border: 1px solid rgba(255,255,255,.12);
    color: #fff;
    border-radius: 14px;
    padding: 12px 22px;
    background: transparent;
}

.btn-outline-custom:hover {
    background: #fff;
    color: #000;
}

.icon-only {
    width: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-left: 0;
    padding-right: 0;
}

.nav-language {
    width: 86px;
    padding: 10px 12px;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 90px;
}

.hero-title {
    font-size: clamp(48px, 6vw, 78px);
    line-height: 1.05;
    font-weight: 700;
}

.hero-title span {
    color: var(--gold);
}

.hero-desc {
    color: var(--muted);
    font-size: 18px;
    margin-top: 28px;
    max-width: 680px;
    line-height: 1.7;
}

.hero-buttons {
    margin-top: 40px;
}

.hero-preview {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0,0,0,.45);
}

.hero-preview img {
    width: 100%;
    display: block;
}

.theme-card,
.feature-box,
.dash-card,
.panel-card,
.auth-card {
    background: linear-gradient(145deg, var(--card2), var(--card));
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0,0,0,.22);
}

.theme-card {
    overflow: hidden;
    transition: .4s;
}

.theme-card:hover,
.feature-box:hover,
.panel-card:hover {
    border-color: rgba(212,175,55,.45);
    box-shadow: 0 20px 70px rgba(0,0,0,.28), 0 0 42px rgba(212,175,55,.12);
}

.theme-img {
    height: 100%;
    overflow: hidden;
}

.theme-img img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

.theme-content {
    padding: 30px;
}

.theme-title {
    font-size: 30px;
}

.theme-desc {
    color: var(--muted);
    margin-top: 15px;
    line-height: 1.7;
}

.feature-box {
    padding: 35px;
    transition: .3s;
    height: 100%;
}

.feature-icon,
.dash-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: rgba(212,175,55,.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 32px;
    margin-bottom: 25px;
}

.gui-item {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.05);
    border-radius: 18px;
    padding: 18px;
    transition: .3s;
    color: #d8dde7;
}

.gui-item:hover {
    border-color: rgba(212,175,55,.35);
}

.gui-item i,
.clean-list i {
    color: var(--gold);
    margin-right: 10px;
}

.clean-list {
    list-style: none;
    display: grid;
    gap: 10px;
}

.price-text {
    font-size: 42px;
    font-weight: 700;
    color: var(--gold);
}

.stat-box {
    text-align: center;
}

.stat-box h2 {
    color: var(--gold);
    font-size: 52px;
}

.stat-box p,
.dash-card p,
.panel-card p,
.auth-card p {
    color: var(--muted);
}

.reference-card {
    display: block;
    flex: 0 0 320px;
    height: 100%;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: linear-gradient(145deg, var(--card2), var(--card));
    color: #fff;
}

.reference-strip {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding: 4px 0 16px;
    scroll-snap-type: x proximity;
}

.reference-strip .reference-card {
    scroll-snap-align: start;
}

.reference-card:hover {
    border-color: rgba(212,175,55,.55);
    color: #fff;
}

.reference-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.reference-card div {
    padding: 18px;
}

.reference-card h4 {
    margin-bottom: 8px;
}

.reference-card p {
    color: var(--muted);
    margin: 0;
}

footer {
    padding: 90px 0 40px;
    background: #06080d;
    border-top: 1px solid rgba(255,255,255,.05);
}

.footer-links a {
    color: #999;
    display: block;
    margin-bottom: 12px;
}

.footer-links a:hover {
    color: var(--gold);
}

.user-panel {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 280px;
    background: linear-gradient(180deg, #111827, var(--sidebar));
    border-right: 1px solid rgba(255,255,255,.05);
    padding: 24px;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
}

.sidebar-logo img {
    height: 55px;
}

.sidebar-user {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 28px;
    padding: 16px;
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.025));
    border: 1px solid rgba(255,255,255,.06);
}

.sidebar-balance {
    margin-top: 8px;
    color: var(--gold);
    font-weight: 700;
}

.avatar {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--gold), #8f6716);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    color: #000;
}

.sidebar-menu {
    margin-top: 28px;
}

.sidebar-label {
    margin: 20px 0 8px;
    padding: 0 18px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.sidebar-menu a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 16px;
    border-radius: 10px;
    color: #ddd;
    margin-bottom: 10px;
    border: 1px solid transparent;
    transition: .2s;
}

.sidebar-badge {
    margin-left: auto;
    min-width: 24px;
    height: 24px;
    padding: 0 7px;
    border-radius: 999px;
    background: #d4af37;
    color: #070b13;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
}

.menu-button {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 13px 16px;
    border: 0;
    border-radius: 16px;
    color: #ddd;
    background: transparent;
    margin-bottom: 10px;
    transition: .3s;
    text-align: left;
}

.menu-button:hover {
    background: rgba(212,175,55,.12);
    color: var(--gold);
}

.language-box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    color: #ddd;
}

.language-box .panel-input {
    padding: 8px 10px;
    width: 90px;
}

.sidebar-menu a:hover,
.sidebar-menu a.active {
    background: rgba(212,175,55,.12);
    border-color: rgba(212,175,55,.18);
    color: var(--gold);
}

.sidebar-menu i {
    font-size: 20px;
}

.dashboard-main {
    margin-left: 280px;
    flex: 1;
    padding: 40px;
}

.dashboard-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,.06);
}

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

.sql-status-card {
    min-width: 150px;
    padding: 10px 14px;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 12px;
    background: rgba(255,255,255,.04);
    color: #d9e1ef;
}

.sql-status-card span {
    display: block;
    font-size: 12px;
    color: var(--muted);
}

.sql-status-card strong {
    display: block;
    margin-top: 2px;
    font-size: 14px;
}

.sql-status-card.success {
    border-color: rgba(32, 201, 151, .38);
    background: rgba(32, 201, 151, .1);
    color: #bff4df;
}

.sql-status-card.fail {
    border-color: rgba(255, 107, 107, .4);
    background: rgba(255, 107, 107, .1);
    color: #ffd1d1;
}

.sql-status-card.checking {
    border-color: rgba(212, 175, 55, .36);
    background: rgba(212, 175, 55, .1);
    color: #f6deb0;
}

.manage-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.quick-license-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.quick-license-button {
    min-height: 38px;
    padding: 0 12px;
    border: 1px solid rgba(212,175,55,.26);
    border-radius: 10px;
    background: rgba(212,175,55,.08);
    color: #f6deb0;
    font-weight: 800;
    transition: .2s;
}

.quick-license-button:hover {
    background: rgba(212,175,55,.16);
    border-color: rgba(212,175,55,.52);
    color: var(--gold);
}

.quick-license-button:disabled {
    opacity: .58;
}

.sql-mini-status {
    min-height: 42px;
    padding: 0 13px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #d9e1ef;
    background: rgba(255,255,255,.04);
    font-size: 13px;
    font-weight: 700;
}

.sql-mini-status.success {
    border-color: rgba(32, 201, 151, .38);
    background: rgba(32, 201, 151, .1);
    color: #bff4df;
}

.sql-mini-status.fail {
    border-color: rgba(255, 107, 107, .4);
    background: rgba(255, 107, 107, .1);
    color: #ffd1d1;
}

.sql-mini-status.checking {
    border-color: rgba(212, 175, 55, .36);
    background: rgba(212, 175, 55, .1);
    color: #f6deb0;
}

.btn-dark-panel {
    width: 50px;
    height: 50px;
    border: none;
    background: var(--card);
    border-radius: 14px;
    color: #fff;
}

.admin-action {
    width: auto;
    min-width: 104px;
    padding: 0 14px;
    white-space: nowrap;
}

.wide-button {
    width: auto;
    padding: 0 18px;
}

.dash-card {
    padding: 30px;
    height: 100%;
}

.dash-card h3 {
    margin-top: 25px;
    font-size: 42px;
    color: var(--gold);
}

.panel-section {
    margin-top: 48px;
}

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

.section-head h3 {
    margin: 0;
}

.panel-card {
    overflow: hidden;
}

.panel-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.panel-content {
    padding: 28px;
}

.license-row {
    display: grid;
    gap: 6px;
    margin-top: 20px;
    padding: 16px;
    border-radius: 14px;
    background: rgba(255,255,255,.035);
    border: 1px solid rgba(255,255,255,.06);
}

.license-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 6px;
}

.dns-guide {
    display: grid;
    gap: 10px;
    margin: 18px 0;
}

.dns-step {
    display: grid;
    gap: 6px;
    padding: 14px 16px;
    border-radius: 8px;
    background: rgba(255,255,255,.035);
    border: 1px solid rgba(255,255,255,.07);
}

.dns-step strong {
    color: var(--gold);
}

.dns-step span {
    color: #d8dde7;
}

.license-row span,
.license-row em {
    color: var(--muted);
    font-style: normal;
}

.license-row strong {
    color: #fff;
}

.theme-strip,
.theme-picker {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    margin-top: 20px;
    padding-bottom: 10px;
}

.theme-chip,
.theme-option {
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.035);
    color: #dce2ec;
    border-radius: 8px;
    padding: 8px;
    display: grid;
    gap: 6px;
    text-align: center;
    transition: .2s;
    flex: 0 0 118px;
}

.theme-chip:hover,
.theme-chip.active,
.theme-option:hover,
.theme-option.active {
    border-color: rgba(212,175,55,.72);
    color: var(--gold);
    background: rgba(212,175,55,.09);
}

.theme-chip img,
.theme-option img {
    width: 100%;
    height: 42px;
    border-radius: 6px;
    object-fit: cover;
}

.theme-option img {
    height: 84px;
}

.buy-product {
    height: 100%;
}

.buy-product.selected {
    border-color: rgba(212,175,55,.7);
}

.quick-card {
    display: grid;
    gap: 10px;
    height: 100%;
    padding: 28px;
    border-radius: 8px;
    background: var(--card);
    border: 1px solid rgba(255,255,255,.08);
    color: #fff;
}

.quick-card:hover {
    border-color: rgba(212,175,55,.55);
    color: var(--gold);
}

.quick-card i {
    font-size: 28px;
    color: var(--gold);
}

.quick-card span {
    color: var(--muted);
}

.payment-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.payment-row > div:first-child {
    display: grid;
    gap: 4px;
}

.admin-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

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

.admin-tab {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.035);
    color: #dce2ec;
    border-radius: 8px;
    padding: 12px 16px;
    transition: .2s;
}

.admin-tab:hover,
.admin-tab.active {
    border-color: rgba(212,175,55,.65);
    background: rgba(212,175,55,.1);
    color: var(--gold);
}

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

.admin-row-main {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.admin-row-main span,
.admin-row-main small {
    color: var(--muted);
}

.admin-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.server-delivery-form {
    width: min(100%, 520px);
    display: grid;
    gap: 12px;
    padding: 14px;
    border: 1px solid rgba(212,175,55,.16);
    border-radius: 12px;
    background: rgba(255,255,255,.035);
}

.server-delivery-form label {
    display: grid;
    gap: 6px;
    margin: 0;
}

.server-delivery-form label span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.server-delivery-form textarea {
    min-height: 92px;
    resize: vertical;
    white-space: pre-wrap;
}

.server-delivery-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.server-delivery-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.server-delivery-footer small {
    color: var(--muted);
}

.admin-search {
    max-width: 280px;
}

.admin-money {
    width: 120px;
}

.admin-password {
    width: 170px;
}

.admin-note {
    width: 220px;
}

.admin-pager {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
    color: var(--muted);
}

.panel-alert {
    border: 1px solid rgba(212,175,55,.22);
    background: rgba(212,175,55,.08);
    border-radius: 18px;
    padding: 18px;
    margin-bottom: 18px;
    color: #f6deb0;
}

.panel-alert.ok {
    border-color: rgba(32, 201, 151, .35);
    background: rgba(32, 201, 151, .08);
    color: #bff4df;
}

.panel-alert.fail {
    border-color: rgba(255, 107, 107, .38);
    background: rgba(255, 107, 107, .08);
    color: #ffd1d1;
}

.result-list {
    margin: 12px 0 0;
    padding-left: 18px;
    max-height: 360px;
    overflow: auto;
}

.result-list li {
    margin: 6px 0;
    overflow-wrap: anywhere;
}

.command-snippet {
    display: block;
    margin-top: 10px;
    padding: 12px 14px;
    border-radius: 10px;
    background: rgba(5, 9, 16, .72);
    color: #f8fafc;
    overflow-x: auto;
    white-space: nowrap;
}

.install-page {
    min-height: 100vh;
    padding: 34px;
}

.install-header {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    margin-bottom: 32px;
}

.install-header h1 {
    margin: 0;
}

.install-header p {
    color: var(--muted);
    margin: 8px 0 0;
}

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

.install-title {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 24px;
}

.install-result {
    margin-top: 24px;
}

.install-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 14px 0 18px;
}

.install-metrics span {
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 12px;
    padding: 8px 12px;
    color: #d8dde7;
    background: rgba(255,255,255,.03);
}

.panel-input {
    background: #131d2f;
    border: 1px solid rgba(255,255,255,.08);
    color: #fff;
    border-radius: 14px;
    padding: 14px 18px;
}

.panel-input::placeholder {
    color: #d9dee8;
    opacity: .72;
}

.panel-input:disabled,
.form-control:disabled {
    background: #263144;
    border-color: rgba(255,255,255,.16);
    color: #f4f7fb;
    opacity: 1;
}

.panel-input:focus {
    background: #131d2f;
    border-color: var(--gold);
    color: #fff;
    box-shadow: none;
}

.check-row {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #d8dde7;
}

.option-button {
    width: 100%;
    min-height: 50px;
    padding: 12px 14px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 14px;
    background: #131d2f;
    color: #e8edf8;
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
    transition: .2s;
}

.option-button:hover,
.option-button.active {
    border-color: rgba(212,175,55,.5);
    background: rgba(212,175,55,.12);
    color: var(--gold);
}

.purchase-summary {
    margin-top: 22px;
    padding: 16px 18px;
    border: 1px solid rgba(212,175,55,.25);
    border-radius: 14px;
    background: rgba(212,175,55,.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.purchase-summary strong {
    color: var(--gold);
    font-size: 22px;
}

pre {
    max-height: 340px;
    overflow: auto;
    padding: 16px;
    border-radius: 14px;
    background: #06080d;
    color: #e8edf8;
    white-space: pre-wrap;
}

.auth-page {
    min-height: 100vh;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 460px));
    align-items: start;
    justify-content: center;
    gap: 24px;
    padding: 80px 24px;
    background: #070b13;
}

.auth-card {
    padding: 45px;
}

.auth-loading {
    text-align: center;
}

.sro-spinner {
    width: 42px;
    height: 42px;
    margin: 0 auto 18px;
    border-radius: 50%;
    border: 3px solid rgba(212, 175, 55, .22);
    border-top-color: var(--gold);
    animation: sro-spin .8s linear infinite;
}

@keyframes sro-spin {
    to {
        transform: rotate(360deg);
    }
}

.auth-logo {
    height: 55px;
}

.swal-demo-image {
    width: min(100%, 760px) !important;
    max-height: 78vh;
    object-fit: contain;
    border-radius: 14px;
    border: 1px solid rgba(212,175,55,.28);
    box-shadow: 0 20px 55px rgba(0,0,0,.32);
}

.swal-note {
    margin-top: 10px;
    color: #cfd6e3;
    font-size: 14px;
}

.auth-card h1 {
    margin-top: 28px;
}

.auth-form {
    display: grid;
    gap: 16px;
    margin-top: 28px;
}

.auth-form label {
    display: grid;
    gap: 8px;
    font-weight: 600;
}

.form-result,
.validation-message,
.validation-summary-errors {
    color: var(--gold-soft);
}

#blazor-error-ui {
    display: none;
}

@media (max-width: 992px) {
    .hero {
        padding-top: 150px;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .sidebar {
        position: sticky;
        top: 0;
        z-index: 20;
        width: 100%;
        height: auto;
        padding: 16px;
    }

    .sidebar-logo img {
        height: 42px;
    }

    .sidebar-user {
        margin-top: 16px;
        padding: 12px;
    }

    .avatar {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        font-size: 18px;
    }

    .sidebar-menu {
        display: flex;
        overflow-x: auto;
        gap: 8px;
        margin-top: 16px;
        padding-bottom: 4px;
    }

    .sidebar-label {
        display: none;
    }

    .sidebar-menu a,
    .menu-button,
    .language-box {
        flex: 0 0 auto;
        margin-bottom: 0;
        padding: 12px 14px;
        border-radius: 8px;
    }

    .dashboard-main {
        margin-left: 0;
        padding: 24px;
    }

    .user-panel {
        flex-direction: column;
    }

    .dashboard-topbar,
    .auth-page,
    .install-header,
    .install-grid {
        grid-template-columns: 1fr;
    }

    .auth-page {
        display: grid;
    }

    .admin-row {
        grid-template-columns: 1fr;
    }

    .admin-actions {
        justify-content: flex-start;
    }

    .server-delivery-form {
        width: 100%;
    }

    .server-delivery-grid,
    .server-delivery-footer {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: stretch;
    }

    .admin-search,
    .admin-money,
    .admin-password,
    .admin-note {
        width: 100%;
        max-width: none;
    }

    .admin-pager {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .admin-metrics {
        grid-template-columns: 1fr;
    }
}
