:root {
    --fivem-bg: #020112;
    --fivem-bg-soft: #09091b;
    --fivem-surface: #15172b;
    --fivem-surface-2: #23253d;
    --fivem-accent: #6d839f;
    --fivem-accent-light: #9eb3cc;
    --fivem-line: rgba(109, 131, 159, .22);
    --fivem-text: #f5f7fb;
    --fivem-muted: #a7afbf;
    --fivem-success: #68c5a1;
    --fivem-danger: #e56b7a;
    --fivem-warning: #e7bd72;
    --fivem-radius: 16px;
    --fivem-shadow: 0 20px 55px rgba(0, 0, 0, .28);
}

html { scroll-behavior: smooth; }

body.fivem-theme {
    min-height: 100vh;
    background:
        radial-gradient(circle at 12% 12%, rgba(109, 131, 159, .13), transparent 30%),
        radial-gradient(circle at 88% 65%, rgba(35, 37, 61, .28), transparent 35%),
        var(--fivem-bg) !important;
    color: var(--fivem-text);
    font-family: Inter, "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    letter-spacing: -.01em;
}

html[lang="ar"] body.fivem-theme,
html[lang="ar"] body.fivem-theme button,
html[lang="ar"] body.fivem-theme input,
html[lang="ar"] body.fivem-theme select,
html[lang="ar"] body.fivem-theme textarea,
html[lang="ar"] body.fivem-theme .btn {
    direction: rtl;
    font-family: "Cairo", Tahoma, Arial, sans-serif;
}
html[lang="ar"] body.fivem-theme { text-align: right; }
html[lang="ar"] .text-left { text-align: right !important; }
html[lang="ar"] .text-right { text-align: left !important; }
html[lang="ar"] .float-right,
html[lang="ar"] .pull-right { float: left !important; }
html[lang="ar"] .float-left,
html[lang="ar"] .pull-left { float: right !important; }
html[lang="ar"] .mr-auto { margin-right: 0 !important; margin-left: auto !important; }
html[lang="ar"] .ml-auto { margin-right: auto !important; margin-left: 0 !important; }
html[lang="ar"] .dropdown-menu-right { right: auto; left: 0; }

body.fivem-theme::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: .14;
    z-index: -1;
    background-image:
        linear-gradient(rgba(109, 131, 159, .08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(109, 131, 159, .08) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to bottom, #000, transparent 80%);
}

.fivem-theme a { color: var(--fivem-accent-light); transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease; }
.fivem-theme a:hover { color: #fff; text-decoration: none; }
.fivem-theme h1, .fivem-theme h2, .fivem-theme h3, .fivem-theme h4, .fivem-theme h5, .fivem-theme h6 { color: var(--fivem-text); font-weight: 700; letter-spacing: -.035em; }
.fivem-theme p, .fivem-theme .text-muted { color: var(--fivem-muted) !important; }
.fivem-theme hr { border-color: var(--fivem-line); }
.fivem-theme code { color: #cbd8e7; background: rgba(109, 131, 159, .14); padding: 2px 6px; border-radius: 6px; }

/* Header */
.fivem-theme .header {
    position: relative;
    z-index: 100;
    border-bottom: 1px solid var(--fivem-line);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .22);
}

.fivem-theme .header .topbar {
    padding: 0;
    background: rgba(2, 1, 18, .96);
    border-bottom: 1px solid rgba(109, 131, 159, .12);
}

.fivem-theme .header .topbar .btn,
.fivem-theme .header .topbar .input-group-text {
    min-height: 38px;
    color: var(--fivem-muted);
    background: transparent;
    border: 0;
    font-size: 12px;
}

.fivem-theme .fivem-system-status {
    align-items: center;
    gap: 8px;
    margin-right: 14px;
    padding-right: 14px;
    border-right: 1px solid var(--fivem-line);
    color: var(--fivem-muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.status-dot,
.console-online b,
.fivem-auth-server strong i {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--fivem-success);
    box-shadow: 0 0 0 5px rgba(104, 197, 161, .12), 0 0 16px rgba(104, 197, 161, .65);
}

.fivem-theme .header .navbar-light {
    min-height: 78px;
    padding: 12px 0;
    background: rgba(9, 9, 27, .97);
}

.fivem-brand { display: inline-flex !important; align-items: center; gap: 11px; color: #fff !important; }
.brand-mark {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(145deg, var(--fivem-accent), var(--fivem-surface-2));
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(109, 131, 159, .2);
}
.brand-copy { display: flex; flex-direction: column; line-height: 1; }
.brand-copy strong { font-size: 18px; letter-spacing: .06em; }
.brand-copy small { margin-top: 5px; color: var(--fivem-accent-light); font-size: 9px; font-weight: 700; letter-spacing: .22em; }

.fivem-theme .header .search .form-control,
.fivem-theme .header .search .btn {
    height: 40px;
    color: var(--fivem-muted);
    background: var(--fivem-surface);
    border-color: var(--fivem-line);
}
.fivem-theme .header .search .form-control { min-width: 250px; }
.fivem-theme .header .toolbar { flex-direction: row; align-items: center; }
.fivem-theme .header .toolbar .nav-link {
    color: var(--fivem-text);
    background: var(--fivem-surface);
    border: 1px solid var(--fivem-line);
    border-radius: 11px;
}
.fivem-theme .fivem-deploy-btn {
    margin-left: 14px;
    padding: 10px 16px;
    color: #fff !important;
    background: var(--fivem-accent);
    border: 1px solid var(--fivem-accent);
    border-radius: 11px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.fivem-theme .fivem-deploy-btn:hover { background: #7f95b0; transform: translateY(-1px); }
.fivem-theme #cartItemCount { color: var(--fivem-bg); background: var(--fivem-accent-light); }

.fivem-theme .main-navbar-wrapper {
    min-height: 49px;
    background: rgba(21, 23, 43, .98);
    border-top: 1px solid rgba(109, 131, 159, .08);
}
.fivem-theme .main-navbar-wrapper .navbar-nav > li > a {
    display: block;
    padding: 15px 18px;
    color: var(--fivem-muted);
    font-size: 13px;
    font-weight: 600;
}
.fivem-theme .main-navbar-wrapper .navbar-nav > li > a:hover,
.fivem-theme .main-navbar-wrapper .navbar-nav > li.active > a { color: #fff; background: rgba(109, 131, 159, .1); }

.fivem-theme .dropdown-menu {
    padding: 8px;
    color: var(--fivem-text);
    background: #15172b;
    border: 1px solid var(--fivem-line);
    border-radius: 12px;
    box-shadow: var(--fivem-shadow);
}
.fivem-theme .dropdown-item,
.fivem-theme .dropdown-item a { color: var(--fivem-muted) !important; border-radius: 8px; }
.fivem-theme .dropdown-item:hover,
.fivem-theme .dropdown-item:focus,
.fivem-theme .dropdown-item:hover a { color: #fff !important; background: rgba(109, 131, 159, .14); }
.fivem-theme .dropdown-divider { border-color: var(--fivem-line); }

/* Breadcrumb and page structure */
.fivem-theme .master-breadcrumb {
    background: rgba(9, 9, 27, .78);
    border-bottom: 1px solid var(--fivem-line);
}
.fivem-theme .breadcrumb { padding: 13px 0; background: transparent; }
.fivem-theme .breadcrumb-item,
.fivem-theme .breadcrumb-item a { color: #8792a5; font-size: 12px; }
.fivem-theme .breadcrumb-item.active { color: var(--fivem-accent-light); }
.fivem-theme .breadcrumb-item + .breadcrumb-item::before { color: #4d5568; }
.fivem-theme.page-homepage .master-breadcrumb { display: none; }

.fivem-theme #main-body { min-height: 64vh; padding: 42px 0 70px; background: transparent; }
.fivem-theme.page-homepage #main-body { padding-top: 0; }
.fivem-theme .primary-content > .header-lined { margin-bottom: 26px; border-bottom: 1px solid var(--fivem-line); }
.fivem-theme .header-lined h1 { color: var(--fivem-text); }
.fivem-theme .header-lined small { color: var(--fivem-muted); }

/* Reusable UI */
.fivem-theme .card,
.fivem-theme .panel,
.fivem-theme .well {
    color: var(--fivem-text);
    background: linear-gradient(145deg, rgba(35, 37, 61, .88), rgba(21, 23, 43, .94));
    border: 1px solid var(--fivem-line);
    border-radius: var(--fivem-radius);
    box-shadow: 0 12px 35px rgba(0, 0, 0, .15);
}
.fivem-theme .card-header,
.fivem-theme .card-footer {
    color: var(--fivem-text);
    background: rgba(2, 1, 18, .2);
    border-color: var(--fivem-line);
}
.fivem-theme .card-header:first-child { border-radius: 16px 16px 0 0; }
.fivem-theme .card-footer:last-child { border-radius: 0 0 16px 16px; }
.fivem-theme .card-title { color: var(--fivem-text); font-size: 15px; }
.fivem-theme .list-group-item {
    color: var(--fivem-muted);
    background: transparent;
    border-color: var(--fivem-line);
}
.fivem-theme .list-group-item-action:hover,
.fivem-theme .list-group-item-action:focus,
.fivem-theme .list-group-item.active {
    color: #fff;
    background: rgba(109, 131, 159, .16);
    border-color: var(--fivem-line);
}

.fivem-theme .btn { border-radius: 10px; font-weight: 650; box-shadow: none; }
.fivem-theme .btn-primary,
.fivem-theme .btn-success,
.fivem-theme .bg-color-blue,
.fivem-theme .bg-color-green {
    color: #fff !important;
    background: var(--fivem-accent) !important;
    border-color: var(--fivem-accent) !important;
}
.fivem-theme .btn-primary:hover,
.fivem-theme .btn-success:hover { background: #8095b0 !important; border-color: #8095b0 !important; transform: translateY(-1px); }
.fivem-theme .btn-default,
.fivem-theme .btn-secondary,
.fivem-theme .btn-outline-primary {
    color: var(--fivem-text) !important;
    background: rgba(109, 131, 159, .1) !important;
    border-color: var(--fivem-line) !important;
}
.fivem-theme .btn-default:hover,
.fivem-theme .btn-secondary:hover,
.fivem-theme .btn-outline-primary:hover { color: #fff !important; background: rgba(109, 131, 159, .22) !important; }
.fivem-theme .btn-danger { background: rgba(229, 107, 122, .15); border-color: rgba(229, 107, 122, .45); color: #ff9aa6; }
.fivem-theme .btn-warning { background: rgba(231, 189, 114, .16); border-color: rgba(231, 189, 114, .4); color: #f4d397; }

.fivem-theme .form-control,
.fivem-theme .custom-select,
.fivem-theme select,
.fivem-theme textarea,
.fivem-theme .input-group-text {
    color: var(--fivem-text);
    background: rgba(2, 1, 18, .54);
    border-color: var(--fivem-line);
    border-radius: 10px;
}
.fivem-theme .form-control:focus,
.fivem-theme .custom-select:focus,
.fivem-theme select:focus,
.fivem-theme textarea:focus {
    color: #fff;
    background: rgba(2, 1, 18, .75);
    border-color: var(--fivem-accent);
    box-shadow: 0 0 0 3px rgba(109, 131, 159, .16);
}
.fivem-theme .form-control::placeholder { color: #687184; }
.fivem-theme label { color: #c8cfdb; font-size: 13px; font-weight: 600; }
.fivem-theme .input-group > .form-control:not(:first-child) { border-radius: 0 10px 10px 0; }
.fivem-theme .input-group > .form-control:not(:last-child) { border-radius: 10px 0 0 10px; }

.fivem-theme .table { color: var(--fivem-muted); background: transparent; }
.fivem-theme .table thead th {
    color: #c6cfdb;
    background: rgba(2, 1, 18, .48);
    border-color: var(--fivem-line);
    font-size: 11px;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.fivem-theme .table td { border-color: var(--fivem-line); vertical-align: middle; }
.fivem-theme .table-hover tbody tr:hover,
.fivem-theme .table-list tbody tr:hover { color: #fff; background: rgba(109, 131, 159, .09); }
.fivem-theme .table-container { overflow: hidden; background: var(--fivem-surface); border: 1px solid var(--fivem-line); border-radius: var(--fivem-radius); }
.fivem-theme .table-container .table { margin-bottom: 0; }

.fivem-theme .pagination .page-link { color: var(--fivem-muted); background: var(--fivem-surface); border-color: var(--fivem-line); }
.fivem-theme .pagination .page-item.active .page-link { color: #fff; background: var(--fivem-accent); border-color: var(--fivem-accent); }
.fivem-theme .nav-tabs { border-color: var(--fivem-line); }
.fivem-theme .nav-tabs .nav-link { color: var(--fivem-muted); border: 0; border-bottom: 2px solid transparent; }
.fivem-theme .nav-tabs .nav-link:hover,
.fivem-theme .nav-tabs .nav-link.active { color: #fff; background: transparent; border-color: var(--fivem-accent); }
.fivem-theme .tab-content.bg-white { background: var(--fivem-surface) !important; }

.fivem-theme .alert { color: var(--fivem-text); background: var(--fivem-surface); border: 1px solid var(--fivem-line); border-radius: 12px; }
.fivem-theme .alert-success { border-color: rgba(104, 197, 161, .45); background: rgba(104, 197, 161, .1); }
.fivem-theme .alert-danger { border-color: rgba(229, 107, 122, .45); background: rgba(229, 107, 122, .1); }
.fivem-theme .alert-warning { border-color: rgba(231, 189, 114, .45); background: rgba(231, 189, 114, .1); }
.fivem-theme .badge { color: #fff; background: var(--fivem-accent); }
.fivem-theme .label.status { border-radius: 20px; padding: 6px 10px; font-size: 10px; font-weight: 700; text-transform: uppercase; }
.fivem-theme .status-active { color: #8de1bf; background: rgba(104, 197, 161, .13); }
.fivem-theme .status-pending { color: #f4d397; background: rgba(231, 189, 114, .13); }
.fivem-theme .status-suspended,
.fivem-theme .status-cancelled,
.fivem-theme .status-terminated { color: #ff9aa6; background: rgba(229, 107, 122, .13); }

.fivem-theme .modal-content { color: var(--fivem-text); background: var(--fivem-surface); border: 1px solid var(--fivem-line); border-radius: var(--fivem-radius); box-shadow: var(--fivem-shadow); }
.fivem-theme .modal-header,
.fivem-theme .modal-footer { border-color: var(--fivem-line); }
.fivem-theme .modal .close { color: #fff; text-shadow: none; }
.fivem-theme .popover { color: var(--fivem-text); background: var(--fivem-surface); border-color: var(--fivem-line); }
.fivem-theme .popover-body { color: var(--fivem-muted); }

/* Sidebar */
.fivem-theme .sidebar .card-sidebar { overflow: hidden; background: rgba(21, 23, 43, .9); }
.fivem-theme .sidebar .card-header { padding: 16px 18px; }
.fivem-theme .sidebar .card-title { font-size: 13px; text-transform: uppercase; letter-spacing: .06em; }
.fivem-theme .sidebar .list-group-item { padding: 13px 17px; font-size: 13px; }
.fivem-theme .sidebar .list-group-item.active { box-shadow: inset 3px 0 var(--fivem-accent); }

/* Public homepage */
.fivem-hero {
    position: relative;
    overflow: hidden;
    margin-bottom: 76px;
    padding: 95px 64px;
    background:
        radial-gradient(circle at 72% 30%, rgba(109, 131, 159, .24), transparent 38%),
        linear-gradient(145deg, rgba(35, 37, 61, .78), rgba(2, 1, 18, .94));
    border: 1px solid var(--fivem-line);
    border-top: 0;
    border-radius: 0 0 28px 28px;
    box-shadow: var(--fivem-shadow);
}
.fivem-hero::after { content: ""; position: absolute; width: 420px; height: 420px; right: -160px; top: -190px; border: 1px solid rgba(158, 179, 204, .15); border-radius: 50%; box-shadow: 0 0 0 70px rgba(109, 131, 159, .035), 0 0 0 140px rgba(109, 131, 159, .025); }
.fivem-hero-grid { position: absolute; inset: 0; opacity: .2; background-image: linear-gradient(rgba(109,131,159,.13) 1px,transparent 1px),linear-gradient(90deg,rgba(109,131,159,.13) 1px,transparent 1px); background-size: 46px 46px; mask-image: linear-gradient(90deg,#000,transparent 78%); }
.fivem-eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 19px; color: var(--fivem-accent-light); font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.fivem-hero h1 { margin-bottom: 24px; font-size: clamp(42px, 5.4vw, 74px); line-height: .98; letter-spacing: -.065em; }
.fivem-hero h1 span,
.fivem-auth-aside h1 span { color: var(--fivem-accent-light); }
.fivem-hero-lead { max-width: 650px; margin-bottom: 32px; font-size: 17px; line-height: 1.75; }
.fivem-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.fivem-hero-actions .btn { min-width: 180px; padding: 14px 22px; }
.fivem-hero-actions .btn-outline-light { border-color: var(--fivem-line); background: rgba(255,255,255,.03); }
.fivem-trust-row { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 28px; color: #c4ccd9; font-size: 12px; }
.fivem-trust-row i { margin-right: 6px; color: var(--fivem-success); }

.fivem-console-card { position: relative; z-index: 2; overflow: hidden; padding: 0 0 22px; background: rgba(2, 1, 18, .78); border: 1px solid rgba(158, 179, 204, .25); border-radius: 20px; box-shadow: 0 30px 80px rgba(0,0,0,.4), 0 0 60px rgba(109,131,159,.11); transform: perspective(900px) rotateY(-4deg) rotateX(2deg); }
.console-topline { display: flex; align-items: center; justify-content: space-between; padding: 12px 16px; color: #7f899b; background: rgba(35,37,61,.58); border-bottom: 1px solid var(--fivem-line); font-size: 9px; letter-spacing: .1em; }
.console-dots { display: flex; gap: 5px; }
.console-dots i { width: 6px; height: 6px; background: #454d61; border-radius: 50%; }
.console-online { display: flex; align-items: center; gap: 7px; color: var(--fivem-success); }
.console-online b { width: 6px; height: 6px; box-shadow: none; }
.console-content { display: flex; align-items: center; gap: 15px; padding: 26px 22px 18px; }
.console-server-icon { display: flex; width: 48px; height: 48px; align-items: center; justify-content: center; color: #fff; background: rgba(109,131,159,.18); border: 1px solid var(--fivem-line); border-radius: 13px; }
.console-content small,
.console-metrics span { display: block; color: #6f788a; font-size: 8px; font-weight: 800; letter-spacing: .12em; }
.console-content strong { display: block; margin-top: 6px; color: #fff; font-size: 15px; }
.console-metrics { display: grid; grid-template-columns: repeat(3,1fr); margin: 0 22px 20px; padding: 16px 0; border-top: 1px solid var(--fivem-line); border-bottom: 1px solid var(--fivem-line); }
.console-metrics div { padding: 0 14px; border-right: 1px solid var(--fivem-line); }
.console-metrics div:last-child { border: 0; }
.console-metrics strong { display: inline-block; margin-top: 7px; color: #fff; font-size: 23px; }
.console-metrics small { color: #657084; font-size: 10px; }
.console-chart { display: flex; height: 62px; align-items: flex-end; gap: 7px; padding: 0 22px; }
.console-chart span { flex: 1; min-height: 8px; background: linear-gradient(to top, rgba(109,131,159,.2), var(--fivem-accent)); border-radius: 3px 3px 0 0; }

.fivem-section { margin: 0 0 76px; }
.fivem-section-heading { max-width: 660px; margin: 0 auto 35px; text-align: center; }
.fivem-section-heading > span,
.fivem-dashboard-heading small,
.fivem-cta small,
.fivem-plan-card > small { color: var(--fivem-accent-light); font-size: 10px; font-weight: 800; letter-spacing: .18em; }
.fivem-section-heading h2 { margin: 10px 0 12px; font-size: clamp(30px,4vw,44px); }
.fivem-section-heading p { font-size: 15px; }
.fivem-feature-card { height: 100%; padding: 28px; background: linear-gradient(145deg, rgba(35,37,61,.7), rgba(21,23,43,.72)); border: 1px solid var(--fivem-line); border-radius: var(--fivem-radius); }
.fivem-feature-card:hover { border-color: rgba(158,179,204,.45); transform: translateY(-4px); box-shadow: var(--fivem-shadow); }
.fivem-feature-card > i { display: flex; width: 46px; height: 46px; align-items: center; justify-content: center; margin-bottom: 24px; color: var(--fivem-accent-light); background: rgba(109,131,159,.13); border: 1px solid var(--fivem-line); border-radius: 13px; font-size: 18px; }
.fivem-feature-card h3 { font-size: 17px; }
.fivem-feature-card p { margin: 0; font-size: 13px; line-height: 1.7; }
.fivem-plan-card { height: 100%; padding: 30px; background: rgba(21,23,43,.86); border: 1px solid var(--fivem-line); border-radius: var(--fivem-radius); }
.fivem-plan-card:hover { border-color: rgba(158,179,204,.45); transform: translateY(-3px); }
.fivem-plan-icon { display: flex; width: 48px; height: 48px; align-items: center; justify-content: center; float: right; color: var(--fivem-accent-light); background: rgba(109,131,159,.12); border-radius: 13px; }
.fivem-plan-card h3 { margin: 10px 0; font-size: 24px; }
.fivem-plan-card p { min-height: 48px; margin-bottom: 25px; }
.fivem-cta { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin: 20px 0 60px; padding: 42px 48px; background: linear-gradient(120deg, var(--fivem-surface-2), #303750); border: 1px solid rgba(158,179,204,.28); border-radius: 22px; box-shadow: var(--fivem-shadow); }
.fivem-cta h2 { margin: 7px 0 8px; font-size: 31px; }
.fivem-cta p { margin: 0; }
.fivem-cta-actions { display: flex; flex-shrink: 0; gap: 10px; }
.fivem-quick-links { display: grid; grid-template-columns: repeat(3,1fr); gap: 15px; }
.fivem-quick-links > a { display: flex; align-items: center; gap: 14px; padding: 20px; color: var(--fivem-text); background: rgba(21,23,43,.66); border: 1px solid var(--fivem-line); border-radius: 14px; }
.fivem-quick-links > a:hover { background: rgba(35,37,61,.9); transform: translateY(-2px); }
.fivem-quick-links > a > i { color: var(--fivem-accent-light); font-size: 20px; }
.fivem-quick-links span { display: flex; flex-direction: column; }
.fivem-quick-links b { font-size: 13px; }
.fivem-quick-links small { margin-top: 3px; color: var(--fivem-muted); font-size: 11px; }

/* Client dashboard */
.fivem-dashboard-hero { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; overflow: hidden; margin-bottom: 22px; padding: 34px 38px; background: linear-gradient(130deg, rgba(35,37,61,.95), rgba(21,23,43,.85)); border: 1px solid var(--fivem-line); border-radius: 20px; box-shadow: var(--fivem-shadow); }
.fivem-dashboard-hero h1 { margin: 0 0 9px; font-size: 35px; }
.fivem-dashboard-hero p { margin: 0; }
.fivem-dashboard-actions { display: flex; flex-shrink: 0; gap: 10px; }
.fivem-dashboard-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-bottom: 34px; }
.fivem-stat-card { display: flex; min-width: 0; align-items: center; gap: 14px; padding: 19px; color: var(--fivem-text) !important; background: rgba(21,23,43,.82); border: 1px solid var(--fivem-line); border-radius: 15px; }
.fivem-stat-card:hover { background: rgba(35,37,61,.92); border-color: rgba(158,179,204,.38); transform: translateY(-2px); }
.stat-icon { display: inline-flex; width: 43px; height: 43px; flex: 0 0 43px; align-items: center; justify-content: center; color: var(--fivem-accent-light); background: rgba(109,131,159,.13); border: 1px solid var(--fivem-line); border-radius: 12px; }
.stat-copy { min-width: 0; display: flex; flex-direction: column; }
.stat-copy small { overflow: hidden; color: #818b9d; font-size: 8px; font-weight: 800; letter-spacing: .12em; text-overflow: ellipsis; white-space: nowrap; }
.stat-copy strong { margin-top: 4px; color: #fff; font-size: 24px; line-height: 1; }
.stat-copy strong i { font-size: 16px; color: var(--fivem-success); }
.stat-arrow { margin-left: auto; color: #596276; font-size: 11px; }
.fivem-dashboard-heading { display: flex; align-items: flex-end; justify-content: space-between; margin: 0 0 17px; }
.fivem-dashboard-heading h2 { margin: 5px 0 0; font-size: 23px; }
.fivem-home-panels .card { overflow: hidden; margin-bottom: 18px; }
.fivem-home-panels .card::before { content: ""; display: block; height: 2px; background: linear-gradient(90deg, var(--fivem-accent), transparent); }
.fivem-home-panels .card-header { padding: 17px 20px; }
.fivem-home-panels .list-group-item { padding: 13px 20px; font-size: 13px; }
.fivem-support-strip { display: flex; align-items: center; gap: 16px; margin-top: 16px; padding: 21px 24px; background: rgba(35,37,61,.7); border: 1px solid var(--fivem-line); border-radius: 15px; }
.fivem-support-strip > div { display: flex; flex-direction: column; }
.fivem-support-strip small { margin-top: 3px; color: var(--fivem-muted); }
.fivem-support-strip .btn { margin-left: auto; }

/* Authentication */
.fivem-theme.page-login #main-body > .container { max-width: 1120px; }
.fivem-auth-shell { display: grid; grid-template-columns: 1.08fr .92fr; overflow: hidden; min-height: 590px; margin: 15px 0; background: rgba(9,9,27,.82); border: 1px solid var(--fivem-line); border-radius: 24px; box-shadow: var(--fivem-shadow); }
.fivem-auth-aside { display: flex; flex-direction: column; justify-content: space-between; padding: 58px; background: radial-gradient(circle at 20% 20%, rgba(109,131,159,.2), transparent 40%), linear-gradient(145deg, rgba(35,37,61,.92), rgba(2,1,18,.96)); border-right: 1px solid var(--fivem-line); }
.fivem-auth-aside h1 { margin: 12px 0 22px; font-size: 48px; line-height: 1.02; }
.fivem-auth-aside > div > p { max-width: 460px; line-height: 1.7; }
.fivem-auth-aside ul { margin: 28px 0 0; padding: 0; list-style: none; }
.fivem-auth-aside li { margin: 12px 0; color: #c9d0db; font-size: 13px; }
.fivem-auth-aside li i { width: 23px; color: var(--fivem-success); }
.fivem-auth-server { display: flex; align-items: center; gap: 14px; padding-top: 25px; border-top: 1px solid var(--fivem-line); }
.fivem-auth-server > span:last-child { display: flex; flex-direction: column; }
.fivem-auth-server small { color: #788294; font-size: 8px; font-weight: 800; letter-spacing: .14em; }
.fivem-auth-server strong { margin-top: 5px; color: #fff; font-size: 12px; }
.fivem-auth-server strong i { width: 6px; height: 6px; margin-right: 7px; box-shadow: none; }
.fivem-auth-form { display: flex; flex-direction: column; justify-content: center; padding: 34px; }
.fivem-auth-form .login-form { width: 100%; }
.fivem-auth-form .card { max-width: none !important; margin: 0 !important; background: transparent; border: 0; box-shadow: none; }
.fivem-auth-form .card-body { padding-top: 20px !important; }
.fivem-login-heading { text-align: center; }
.fivem-login-heading h2 { margin: 12px 0 7px; font-size: 27px; }
.fivem-login-heading p { font-size: 13px; }
.fivem-login-icon { display: inline-flex; width: 52px; height: 52px; align-items: center; justify-content: center; color: var(--fivem-accent-light); background: rgba(109,131,159,.13); border: 1px solid var(--fivem-line); border-radius: 15px; }
.fivem-remember { color: var(--fivem-muted) !important; font-weight: 400 !important; }

/* Services and product detail */
.fivem-theme .product-details .product-status { overflow: hidden; background: rgba(2,1,18,.38); border: 1px solid var(--fivem-line); border-radius: 15px; }
.fivem-theme .product-details .product-status .product-icon { padding: 25px; background: transparent; }
.fivem-theme .product-details .product-status-text { background: rgba(109,131,159,.16); }
.fivem-theme .product-details-tab-container { border-color: var(--fivem-line); border-radius: 0 0 var(--fivem-radius) var(--fivem-radius); }
.fivem-theme .domain-renewals,
.fivem-theme .service-renewals { color: var(--fivem-text); }

/* Footer */
.fivem-theme .footer { padding: 56px 0 20px; color: var(--fivem-muted); background: #070719; border-top: 1px solid var(--fivem-line); }
.fivem-footer-grid { display: grid; grid-template-columns: 2fr repeat(3,1fr); gap: 45px; padding-bottom: 40px; }
.fivem-footer-brand p { max-width: 280px; margin: 18px 0 0; font-size: 13px; }
.fivem-footer-links { display: flex; flex-direction: column; gap: 10px; }
.fivem-footer-links strong { margin-bottom: 5px; color: #dbe1ea; font-size: 10px; letter-spacing: .12em; }
.fivem-footer-links a { color: #8e98aa; font-size: 12px; }
.fivem-footer-links a:hover { color: #fff; }
.fivem-footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 18px; border-top: 1px solid var(--fivem-line); }
.fivem-footer-bottom .copyright { color: #687184; font-size: 11px; }
.fivem-footer-bottom .btn { color: var(--fivem-muted); background: transparent; border: 0; font-size: 11px; }
.fivem-footer-bottom ul { display: inline-flex; margin: 0; padding: 0; list-style: none; }

/* Order form compatibility */
.fivem-theme #order-standard_cart,
.fivem-theme .cart-body { color: var(--fivem-text); }
.fivem-theme #order-standard_cart .products .product,
.fivem-theme #order-standard_cart .summary-container,
.fivem-theme #order-standard_cart .view-cart-items,
.fivem-theme #order-standard_cart .view-cart-tabs,
.fivem-theme #order-standard_cart .order-summary,
.fivem-theme #order-standard_cart .field-container {
    color: var(--fivem-text);
    background: var(--fivem-surface) !important;
    border-color: var(--fivem-line) !important;
    border-radius: var(--fivem-radius) !important;
}
.fivem-theme #order-standard_cart .products .product header { color: #fff; background: var(--fivem-surface-2); border-color: var(--fivem-line); }
.fivem-theme #order-standard_cart .products .product div.product-desc,
.fivem-theme #order-standard_cart .products .product span { color: var(--fivem-muted); }
.fivem-theme #order-standard_cart .products .product .btn { color: #fff; background: var(--fivem-accent); border-color: var(--fivem-accent); }
.fivem-theme #order-standard_cart .order-summary .subtotal,
.fivem-theme #order-standard_cart .order-summary .total-due-today { border-color: var(--fivem-line); }
.fivem-theme #order-standard_cart .empty-cart .btn { color: var(--fivem-text); }

/* SkyHost brand assets */
.skyhost-logo { display: block; width: 174px; max-width: 38vw; height: auto; object-fit: contain; }
.skyhost-logo-footer { width: 154px; max-width: 100%; }
.console-server-icon img,
.fivem-login-icon img { display: block; width: 34px; height: 34px; object-fit: contain; }
.fivem-login-icon img { width: 38px; height: 38px; }

/* FiveM order journey */
.fivem-theme.page-cart #main-body > .container { max-width: 1240px; }
.fivem-theme #order-standard_cart.fivem-order-flow { max-width: 1180px; margin: 0 auto; padding: 10px 0 35px; }
.fivem-theme .fivem-order-flow > .row { margin: 0; }
.fivem-theme .fivem-order-flow > .row > .cart-sidebar { display: none !important; }
.fivem-theme .fivem-order-flow > .row > .cart-body { width: 100%; max-width: 100%; flex: 0 0 100%; padding: 0; }
.fivem-theme .fivem-order-flow .categories-collapsed { display: none !important; }

.fivem-order-progress {
    display: flex;
    max-width: 680px;
    margin: 5px auto 34px;
    align-items: center;
    justify-content: center;
    color: #697487;
}
.fivem-order-progress > i { width: 90px; height: 1px; margin: 0 14px; background: var(--fivem-line); }
.fivem-order-progress > span { display: flex; align-items: center; gap: 9px; font-size: 11px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; white-space: nowrap; }
.fivem-order-progress > span b,
.fivem-order-progress > div > span {
    display: inline-flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    color: #7f8999;
    background: var(--fivem-surface);
    border: 1px solid var(--fivem-line);
    border-radius: 50%;
    font-size: 11px;
}
.fivem-order-progress > span.active { color: #fff; }
.fivem-order-progress > span.active b { color: #020112; background: var(--fivem-accent-light); border-color: var(--fivem-accent-light); box-shadow: 0 0 22px rgba(158,179,204,.25); }
.fivem-order-progress > div { position: relative; display: flex; width: 33.333%; align-items: center; gap: 9px; font-size: 11px; letter-spacing: .04em; text-transform: uppercase; }
.fivem-order-progress > div:not(:last-child)::after { content: ""; position: absolute; z-index: -1; top: 15px; left: 31px; width: calc(100% - 31px); height: 1px; background: var(--fivem-line); }
.fivem-order-progress > div strong { color: #697487; font-size: 11px; white-space: nowrap; }
.fivem-order-progress > div.is-complete > span,
.fivem-order-progress > div.is-active > span { color: #020112; background: var(--fivem-accent-light); border-color: var(--fivem-accent-light); }
.fivem-order-progress > div.is-complete strong,
.fivem-order-progress > div.is-active strong { color: #e8edf4; }

.fivem-order-hero {
    display: flex;
    margin-bottom: 28px;
    padding: 38px 42px;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    background: radial-gradient(circle at 88% 20%, rgba(109,131,159,.23), transparent 36%), linear-gradient(135deg, #15172b, #080819);
    border: 1px solid var(--fivem-line);
    border-radius: 22px;
    box-shadow: var(--fivem-shadow);
}
.fivem-order-hero h1 { margin: 13px 0 8px; font-size: clamp(32px,5vw,50px); }
.fivem-order-hero p { max-width: 590px; margin: 0; }
.fivem-eyebrow,
.fivem-kicker { color: var(--fivem-accent-light); font-size: 10px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.fivem-order-trust { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 9px; }
.fivem-order-trust span { padding: 8px 11px; color: #c5ceda; background: rgba(255,255,255,.035); border: 1px solid var(--fivem-line); border-radius: 10px; font-size: 10px; white-space: nowrap; }
.fivem-order-trust i { margin-right: 5px; color: var(--fivem-accent-light); }

/* Pricing cards */
.fivem-pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 22px; align-items: stretch; }
.fivem-pricing-card { position: relative; display: flex; overflow: hidden; min-height: 525px; flex-direction: column; padding: 30px; background: linear-gradient(160deg, rgba(35,37,61,.95), rgba(10,10,28,.96)); border: 1px solid var(--fivem-line); border-radius: 20px; box-shadow: 0 18px 45px rgba(0,0,0,.18); transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.fivem-pricing-card:hover { transform: translateY(-5px); border-color: rgba(158,179,204,.52); box-shadow: 0 26px 60px rgba(0,0,0,.32); }
.fivem-pricing-card.is-featured { border-color: rgba(158,179,204,.65); box-shadow: 0 22px 65px rgba(40,51,73,.4); }
.fivem-popular-badge { position: absolute; top: 0; right: 24px; padding: 7px 13px; color: #020112; background: var(--fivem-accent-light); border-radius: 0 0 9px 9px; font-size: 9px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.fivem-pricing-card > header { display: flex; align-items: center; gap: 13px; padding: 0 0 24px; background: transparent !important; border: 0 !important; }
.fivem-plan-symbol { display: flex; width: 46px; height: 46px; align-items: center; justify-content: center; color: #fff; background: rgba(109,131,159,.16); border: 1px solid var(--fivem-line); border-radius: 13px; }
.fivem-pricing-card header small { display: block; margin-bottom: 3px; color: #79869a; font-size: 8px; font-weight: 900; letter-spacing: .18em; }
.fivem-pricing-card h2 { margin: 0; font-size: 21px; }
.fivem-stock { margin-left: auto; color: var(--fivem-success); font-size: 10px; }
.fivem-stock i { font-size: 6px; }
.fivem-plan-price { display: flex; min-height: 98px; align-items: baseline; gap: 7px; padding: 23px 0; border-top: 1px solid var(--fivem-line); border-bottom: 1px solid var(--fivem-line); }
.fivem-plan-price > small { align-self: flex-start; margin-top: 8px; color: var(--fivem-muted); font-size: 9px; }
.fivem-plan-price strong { color: #fff; font-size: 40px; line-height: 1; letter-spacing: -.06em; }
.fivem-plan-price span { color: #7f8999; font-size: 11px; }
.fivem-plan-price em { display: block; margin-left: auto; color: var(--fivem-warning); font-size: 9px; font-style: normal; }
.fivem-plan-description { flex: 1; padding: 23px 0; }
.fivem-plan-description > p { margin-bottom: 17px; font-size: 12px; line-height: 1.65; }
.fivem-plan-description ul { margin: 0; padding: 0; list-style: none; }
.fivem-plan-description li { display: flex; margin: 12px 0; align-items: flex-start; gap: 10px; color: #c1c9d5; font-size: 12px; }
.fivem-plan-description li i { margin-top: 2px; color: var(--fivem-success); font-size: 10px; }
.fivem-pricing-card footer { margin-top: auto; }
.fivem-pricing-card footer .btn { padding: 13px 18px; border-radius: 11px; font-size: 11px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.fivem-pricing-card footer > small { display: block; margin-top: 12px; color: #6f7888; font-size: 9px; text-align: center; }

/* Configure, cart and checkout */
.fivem-order-heading { margin: 0 0 25px !important; padding: 0 0 22px !important; border-bottom: 1px solid var(--fivem-line) !important; text-align: left; }
.fivem-order-heading h1 { margin: 8px 0 6px; font-size: 34px !important; }
.fivem-order-heading p { margin: 0; font-size: 13px; }
.fivem-theme #order-standard_cart .secondary-cart-body { padding-left: 0; }
.fivem-theme #order-standard_cart .product-info { margin: 15px 0 25px; padding: 22px 24px; color: var(--fivem-text); background: linear-gradient(135deg, rgba(35,37,61,.85), rgba(14,14,34,.9)); border: 1px solid var(--fivem-line); border-radius: 15px; }
.fivem-theme #order-standard_cart .product-info .product-title { margin-bottom: 5px; color: #fff !important; font-size: 20px; font-weight: 800; }
.fivem-theme #order-standard_cart .sub-heading { margin: 28px 0 14px; border-color: var(--fivem-line); }
.fivem-theme #order-standard_cart .sub-heading span { padding: 0 10px 0 0; color: var(--fivem-accent-light); background: var(--fivem-bg) !important; font-size: 10px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.fivem-theme #order-standard_cart .field-container { padding: 22px; }
.fivem-theme #order-standard_cart label { color: #c9d1dc; font-size: 11px; font-weight: 700; }
.fivem-theme #order-standard_cart .form-control { min-height: 45px; color: #f6f8fb; background-color: #0b0b20; border: 1px solid var(--fivem-line); border-radius: 10px; }
.fivem-theme #order-standard_cart .form-control:focus { background-color: #0c0c22; border-color: var(--fivem-accent); box-shadow: 0 0 0 3px rgba(109,131,159,.12); }
.fivem-theme #order-standard_cart .secondary-cart-sidebar { padding-right: 0; }
.fivem-theme #order-standard_cart .order-summary { overflow: hidden; background: var(--fivem-surface) !important; border: 1px solid var(--fivem-line) !important; border-radius: 17px !important; box-shadow: var(--fivem-shadow); }
.fivem-theme #order-standard_cart .order-summary h2 { margin: 0; padding: 20px; color: #fff; background: var(--fivem-surface-2); font-size: 18px !important; }
.fivem-theme #order-standard_cart .summary-container { padding: 20px; background: transparent !important; }
.fivem-theme #btnCompleteProductConfig { width: 100%; margin-top: 13px; padding: 13px; border-radius: 11px; font-size: 12px; }

.fivem-theme #order-standard_cart .view-cart-items-header { padding: 13px 18px; color: #9eabc0; background: var(--fivem-surface-2); border: 1px solid var(--fivem-line); border-radius: 13px 13px 0 0; font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.fivem-theme #order-standard_cart .view-cart-items { overflow: hidden; border: 1px solid var(--fivem-line) !important; border-top: 0 !important; border-radius: 0 0 13px 13px !important; }
.fivem-theme #order-standard_cart .view-cart-items .item { padding: 20px 18px; background: rgba(15,15,37,.72); border-color: var(--fivem-line); }
.fivem-theme #order-standard_cart .view-cart-items .item-title { color: #fff; font-size: 15px; font-weight: 800; }
.fivem-theme #order-standard_cart .view-cart-items .item-group,
.fivem-theme #order-standard_cart .view-cart-items .cycle { color: var(--fivem-muted); }
.fivem-theme #order-standard_cart .view-cart-items .item-price { color: #fff; }
.fivem-theme #order-standard_cart .view-cart-tabs { overflow: hidden; margin-top: 22px; background: var(--fivem-surface) !important; border: 1px solid var(--fivem-line) !important; border-radius: 15px !important; }
.fivem-theme #order-standard_cart .view-cart-tabs .nav-tabs { border-color: var(--fivem-line); }
.fivem-theme #order-standard_cart .view-cart-tabs .nav-link { color: var(--fivem-muted); border: 0; }
.fivem-theme #order-standard_cart .view-cart-tabs .nav-link.active { color: #fff; background: var(--fivem-surface-2); }

.fivem-theme .fivem-checkout-page .already-registered { margin-bottom: 24px; padding: 17px 19px; background: rgba(109,131,159,.1); border: 1px solid var(--fivem-line); border-radius: 13px; }
.fivem-theme .fivem-checkout-page .already-registered p { margin: 8px 0 0; }
.fivem-theme .fivem-checkout-page #totalDueToday { color: #fff; background: linear-gradient(135deg, rgba(35,37,61,.95), rgba(109,131,159,.22)); border: 1px solid var(--fivem-line); border-radius: 14px; }
.fivem-theme .fivem-checkout-page #totalCartPrice { color: #fff; font-size: 22px; }
.fivem-theme .fivem-checkout-page #paymentGatewaysContainer { padding: 18px; background: rgba(15,15,36,.75); border: 1px solid var(--fivem-line); border-radius: 14px; }
.fivem-theme .fivem-checkout-page #paymentGatewaysContainer .text-center { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.fivem-theme .fivem-checkout-page #paymentGatewaysContainer .radio-inline { margin: 0; padding: 12px 16px; color: #dce2eb; background: var(--fivem-surface-2); border: 1px solid var(--fivem-line); border-radius: 10px; cursor: pointer; }
.fivem-theme .fivem-checkout-page #btnCompleteOrder { min-height: 53px; background: var(--fivem-accent); border-color: var(--fivem-accent); border-radius: 12px; font-size: 13px; font-weight: 900; letter-spacing: .05em; text-transform: uppercase; }
.fivem-theme .fivem-checkout-page .checkout-security-msg { color: #aeb8c7; background: rgba(104,197,161,.06); border: 1px solid rgba(104,197,161,.2); border-radius: 13px; }
.fivem-theme .fivem-checkout-page .prepend-icon .field-icon { color: #8290a3; }
.fivem-theme #productAddonsContainer { display: none !important; }

/* Compact registration */
.fivem-theme.page-clientregister #main-body > .container { max-width: 1120px; }
.fivem-register-shell { display: grid; overflow: hidden; grid-template-columns: .88fr 1.12fr; min-height: 680px; background: rgba(9,9,27,.9); border: 1px solid var(--fivem-line); border-radius: 24px; box-shadow: var(--fivem-shadow); }
.fivem-register-aside { position: relative; display: flex; padding: 50px; flex-direction: column; justify-content: center; background: radial-gradient(circle at 25% 20%, rgba(109,131,159,.25), transparent 38%), linear-gradient(150deg, #23253d, #09091b 70%); border-right: 1px solid var(--fivem-line); }
.fivem-register-mark { width: 60px; height: 78px; margin-bottom: 28px; object-fit: contain; }
.fivem-register-aside h1 { margin: 16px 0; font-size: 42px; line-height: 1.05; }
.fivem-register-aside h1 span { color: var(--fivem-accent-light); }
.fivem-register-aside > p { max-width: 370px; line-height: 1.65; }
.fivem-register-benefits { display: grid; margin-top: 30px; gap: 12px; }
.fivem-register-benefits > span { display: grid; grid-template-columns: 36px 1fr; padding: 12px; align-items: center; background: rgba(255,255,255,.035); border: 1px solid var(--fivem-line); border-radius: 12px; }
.fivem-register-benefits i { grid-row: 1 / 3; color: var(--fivem-accent-light); text-align: center; }
.fivem-register-benefits b { color: #fff; font-size: 11px; }
.fivem-register-benefits small { color: #8994a5; font-size: 9px; }
.fivem-register-form { padding: 45px 50px; }
.fivem-register-heading { margin-bottom: 25px; }
.fivem-register-heading small { color: var(--fivem-accent-light); font-size: 9px; font-weight: 900; letter-spacing: .2em; }
.fivem-register-heading h2 { margin: 7px 0 5px; font-size: 28px; }
.fivem-register-heading p { margin: 0; font-size: 12px; }
.fivem-register-form label { color: #c7d0dc; font-size: 10px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.fivem-register-form .form-control,
.fivem-register-form .input-group-text { min-height: 46px; color: #fff; background: #0b0b20; border-color: var(--fivem-line); }
.fivem-register-form .form-control { border-radius: 10px; }
.fivem-register-form .input-group-text { color: #7f8da1; border-radius: 10px 0 0 10px; }
.fivem-register-form .input-group .form-control { border-radius: 0 10px 10px 0; }
.fivem-register-form .form-control:focus { background: #0d0d24; border-color: var(--fivem-accent); box-shadow: 0 0 0 3px rgba(109,131,159,.13); }
.fivem-register-divider { display: flex; margin: 24px 0 17px; align-items: center; gap: 13px; }
.fivem-register-divider::after { content: ""; height: 1px; flex: 1; background: var(--fivem-line); }
.fivem-register-divider span { color: var(--fivem-accent-light); font-size: 9px; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.fivem-consent-row { display: flex; margin: 17px 0; align-items: flex-start; gap: 9px; color: var(--fivem-muted) !important; font-weight: 400 !important; letter-spacing: 0 !important; text-transform: none !important; }
.fivem-consent-row input { margin-top: 3px; }
.fivem-register-form .btn[type="submit"] { min-height: 51px; margin-top: 18px; background: var(--fivem-accent); border-color: var(--fivem-accent); border-radius: 11px; font-size: 11px; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.fivem-register-login { margin: 17px 0 0; font-size: 11px; text-align: center; }

.fivem-complete-heading { padding-top: 30px !important; text-align: center; }
.fivem-complete-mark { display: block; width: 48px; height: 62px; margin: 0 auto 18px; object-fit: contain; }
.fivem-complete-page .order-confirmation { padding: 24px; color: #fff; background: rgba(109,131,159,.13); border-color: var(--fivem-line); border-radius: 14px; font-size: 16px; text-align: center; }

/* Arabic sales homepage */
.sky-ar-home { direction: rtl; color: var(--fivem-text); font-family: "Cairo", Tahoma, "Segoe UI", Arial, sans-serif; text-align: right; }
.sky-ar-home * { letter-spacing: 0; }
.sky-ar-hero { position: relative; display: grid; overflow: hidden; grid-template-columns: 1.08fr .92fr; min-height: 650px; margin-bottom: 0; padding: 84px 62px; align-items: center; gap: 65px; background: radial-gradient(circle at 12% 22%, rgba(109,131,159,.2), transparent 34%), linear-gradient(145deg, rgba(35,37,61,.8), rgba(2,1,18,.97)); border: 1px solid var(--fivem-line); border-top: 0; border-radius: 0 0 30px 30px; box-shadow: 0 30px 90px rgba(0,0,0,.32); }
.sky-ar-hero::before { content: ""; position: absolute; inset: 0; opacity: .18; pointer-events: none; background-image: linear-gradient(rgba(109,131,159,.13) 1px,transparent 1px),linear-gradient(90deg,rgba(109,131,159,.13) 1px,transparent 1px); background-size: 48px 48px; mask-image: linear-gradient(270deg,#000,transparent 82%); }
.sky-ar-hero-glow { position: absolute; top: -260px; left: -190px; width: 620px; height: 620px; border: 1px solid rgba(158,179,204,.16); border-radius: 50%; box-shadow: 0 0 0 85px rgba(109,131,159,.035), 0 0 0 170px rgba(109,131,159,.022); }
.sky-ar-hero-copy { position: relative; z-index: 2; }
.sky-ar-eyebrow { display: inline-flex; margin-bottom: 22px; padding: 8px 11px; align-items: center; gap: 10px; color: #b9c7d8; background: rgba(109,131,159,.08); border: 1px solid var(--fivem-line); border-radius: 8px; font-size: 10px; font-weight: 700; }
.sky-ar-eyebrow .status-dot { width: 7px; height: 7px; }
.sky-ar-hero h1 { margin: 0 0 24px; font-size: clamp(48px,5vw,72px); line-height: 1.1; letter-spacing: -.045em; }
.sky-ar-hero h1 span { color: var(--fivem-accent-light); }
.sky-ar-hero-copy > p { max-width: 620px; margin-bottom: 31px; color: #aeb8c8 !important; font-size: 16px; line-height: 1.9; }
.sky-ar-hero-actions { display: flex; flex-wrap: wrap; gap: 11px; }
.sky-ar-hero-actions .btn { display: inline-flex; min-width: 168px; min-height: 52px; padding: 0 22px; align-items: center; justify-content: center; gap: 9px; border-radius: 11px; font-size: 13px; font-weight: 750; }
.sky-ar-hero-actions .btn-primary { background: linear-gradient(135deg,#8298b4,#647994); border: 0; box-shadow: 0 13px 32px rgba(109,131,159,.22); }
.sky-ar-hero-actions .btn-outline-light { color: #c7d0dd; background: rgba(255,255,255,.025); border-color: var(--fivem-line); }
.sky-ar-hero-points { display: flex; margin-top: 28px; flex-wrap: wrap; gap: 19px; color: #9da8b8; font-size: 10px; }
.sky-ar-hero-points i { margin-left: 5px; color: var(--fivem-success); }
.sky-ar-server-panel { position: relative; z-index: 2; overflow: hidden; background: rgba(3,3,20,.86); border: 1px solid rgba(158,179,204,.27); border-radius: 20px; box-shadow: 0 35px 90px rgba(0,0,0,.45), 0 0 60px rgba(109,131,159,.11); transform: perspective(950px) rotateY(4deg) rotateX(1deg); }
.sky-ar-panel-top { display: flex; padding: 13px 17px; align-items: center; justify-content: space-between; color: #778397; background: rgba(35,37,61,.58); border-bottom: 1px solid var(--fivem-line); font-size: 8px; }
.sky-ar-panel-top > span { display: flex; align-items: center; gap: 7px; color: var(--fivem-success); }
.sky-ar-panel-top > span i { width: 6px; height: 6px; background: var(--fivem-success); border-radius: 50%; box-shadow: 0 0 12px rgba(104,197,161,.65); }
.sky-ar-panel-server { display: flex; padding: 26px 22px 20px; align-items: center; gap: 14px; }
.sky-ar-panel-server img { width: 47px; height: 56px; padding: 7px; object-fit: contain; background: rgba(109,131,159,.12); border: 1px solid var(--fivem-line); border-radius: 12px; }
.sky-ar-panel-server > div { display: flex; flex-direction: column; }
.sky-ar-panel-server small { color: #707b8e; font-size: 8px; }
.sky-ar-panel-server strong { margin-top: 5px; color: #fff; font-size: 14px; }
.sky-ar-live { margin-right: auto; padding: 5px 8px; color: var(--fivem-success); background: rgba(104,197,161,.07); border: 1px solid rgba(104,197,161,.18); border-radius: 7px; font-size: 7px; font-weight: 800; }
.sky-ar-panel-metrics { display: grid; grid-template-columns: repeat(3,1fr); margin: 0 22px 20px; padding: 16px 0; border-top: 1px solid var(--fivem-line); border-bottom: 1px solid var(--fivem-line); }
.sky-ar-panel-metrics > div { padding: 0 14px; border-left: 1px solid var(--fivem-line); }
.sky-ar-panel-metrics > div:last-child { border: 0; }
.sky-ar-panel-metrics small { display: block; color: #697488; font-size: 8px; }
.sky-ar-panel-metrics strong { display: block; margin-top: 7px; color: #fff; font-size: 22px; }
.sky-ar-panel-metrics em { margin-right: 2px; color: #697488; font-size: 9px; font-style: normal; }
.sky-ar-panel-chart { display: flex; height: 72px; padding: 0 22px; align-items: flex-end; gap: 7px; direction: ltr; }
.sky-ar-panel-chart span { min-height: 7px; flex: 1; background: linear-gradient(to top,rgba(109,131,159,.15),var(--fivem-accent)); border-radius: 3px 3px 0 0; }
.sky-ar-panel-foot { margin-top: 20px; padding: 12px 22px; color: #717c8d; background: rgba(35,37,61,.3); border-top: 1px solid var(--fivem-line); font-size: 8px; }
.sky-ar-panel-foot i { margin-left: 6px; color: var(--fivem-accent-light); }
.sky-ar-stats { position: relative; z-index: 3; display: grid; grid-template-columns: repeat(4,1fr); margin: -28px 36px 90px; padding: 22px 28px; background: rgba(13,14,34,.94); border: 1px solid var(--fivem-line); border-radius: 17px; box-shadow: 0 20px 50px rgba(0,0,0,.3); }
.sky-ar-stats > div { display: flex; padding: 0 24px; align-items: center; gap: 13px; border-left: 1px solid var(--fivem-line); }
.sky-ar-stats > div:last-child { border: 0; }
.sky-ar-stats i { color: var(--fivem-accent-light); font-size: 18px; }
.sky-ar-stats span { display: flex; flex-direction: column; }
.sky-ar-stats strong { color: #fff; font-size: 15px; }
.sky-ar-stats small { margin-top: 3px; color: #748094; font-size: 9px; }
.sky-ar-section { margin-bottom: 90px; }
.sky-ar-section-head { max-width: 680px; margin: 0 auto 40px; text-align: center; }
.sky-ar-section-head > span { color: var(--fivem-accent-light); font-size: 9px; font-weight: 850; }
.sky-ar-section-head h2 { margin: 11px 0 12px; font-size: clamp(31px,4vw,45px); }
.sky-ar-section-head p { margin: 0; font-size: 14px; line-height: 1.8; }
.sky-ar-plan-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 17px; align-items: stretch; direction: rtl; }
.sky-ar-plan { position: relative; display: flex; min-width: 0; padding: 26px; flex-direction: column; background: linear-gradient(160deg,rgba(35,37,61,.86),rgba(10,10,29,.94)); border: 1px solid var(--fivem-line); border-radius: 18px; box-shadow: 0 16px 45px rgba(0,0,0,.15); transition: transform .25s ease,border-color .25s ease,box-shadow .25s ease; }
.sky-ar-plan:hover { transform: translateY(-5px); border-color: rgba(158,179,204,.52); box-shadow: 0 25px 60px rgba(0,0,0,.28); }
.sky-ar-plan.is-featured { border-color: rgba(158,179,204,.7); box-shadow: 0 22px 60px rgba(55,68,91,.35); }
.sky-ar-plan-badge { position: absolute; top: 0; left: 20px; padding: 7px 11px; color: #020112; background: var(--fivem-accent-light); border-radius: 0 0 8px 8px; font-size: 8px; font-weight: 900; }
.sky-ar-plan-badge i { margin-left: 4px; }
.sky-ar-plan-head { display: flex; min-height: 54px; align-items: center; gap: 11px; }
.sky-ar-plan-icon { display: flex; width: 43px; height: 43px; flex: 0 0 43px; align-items: center; justify-content: center; color: var(--fivem-accent-light); background: rgba(109,131,159,.12); border: 1px solid var(--fivem-line); border-radius: 12px; }
.sky-ar-plan-head small { color: #6e7a8d; font-size: 7px; font-weight: 850; }
.sky-ar-plan-head h3 { margin: 3px 0 0; font-size: 19px; }
.sky-ar-plan-price { display: flex; margin: 22px 0; padding: 20px 0; align-items: baseline; gap: 7px; direction: ltr; border-top: 1px solid var(--fivem-line); border-bottom: 1px solid var(--fivem-line); }
.sky-ar-plan-price strong { color: #fff; font-size: 29px; letter-spacing: -.04em; white-space: nowrap; }
.sky-ar-plan-price span { color: #7a8699; font-size: 9px; direction: rtl; }
.sky-ar-plan ul { min-height: 200px; margin: 0 0 22px; padding: 0; list-style: none; }
.sky-ar-plan li { display: flex; margin: 11px 0; align-items: flex-start; gap: 8px; color: #bac3d0; font-size: 10px; line-height: 1.55; }
.sky-ar-plan li i { margin-top: 3px; color: var(--fivem-success); font-size: 8px; }
.sky-ar-plan .btn { display: flex; min-height: 44px; margin-top: auto; align-items: center; justify-content: center; gap: 8px; background: var(--fivem-accent); border: 0; border-radius: 10px; font-size: 10px; font-weight: 800; }
.sky-ar-plan-note { margin-top: 11px; color: #687487; font-size: 7px; text-align: center; }
.sky-ar-plan-note i { margin-left: 4px; }
.sky-ar-all-plans { margin-top: 25px; text-align: center; }
.sky-ar-all-plans a { display: inline-flex; padding: 11px 16px; align-items: center; gap: 8px; color: #b8c4d2; background: rgba(109,131,159,.06); border: 1px solid var(--fivem-line); border-radius: 9px; font-size: 10px; }
.sky-ar-benefit-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 15px; }
.sky-ar-benefit-grid article { position: relative; overflow: hidden; min-height: 245px; padding: 29px; background: rgba(18,19,40,.78); border: 1px solid var(--fivem-line); border-radius: 17px; transition: transform .2s ease,border-color .2s ease; }
.sky-ar-benefit-grid article:hover { transform: translateY(-4px); border-color: rgba(158,179,204,.45); }
.sky-ar-benefit-grid article > span { position: absolute; bottom: -17px; left: 12px; color: rgba(158,179,204,.04); font-size: 82px; font-weight: 900; }
.sky-ar-benefit-icon { display: flex; width: 47px; height: 47px; margin-bottom: 23px; align-items: center; justify-content: center; color: var(--fivem-accent-light); background: rgba(109,131,159,.12); border: 1px solid var(--fivem-line); border-radius: 13px; }
.sky-ar-benefit-grid h3 { margin-bottom: 10px; font-size: 16px; }
.sky-ar-benefit-grid p { position: relative; z-index: 1; margin: 0; font-size: 11px; line-height: 1.75; }
.sky-ar-steps { padding: 53px 55px; background: linear-gradient(145deg,rgba(35,37,61,.45),rgba(8,8,25,.72)); border: 1px solid var(--fivem-line); border-radius: 24px; }
.sky-ar-step-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.sky-ar-step-grid > div { position: relative; padding: 25px; background: rgba(3,3,19,.36); border: 1px solid var(--fivem-line); border-radius: 15px; }
.sky-ar-step-grid b { position: absolute; top: 18px; left: 18px; color: rgba(158,179,204,.2); font-size: 28px; }
.sky-ar-step-grid i { display: block; margin-bottom: 20px; color: var(--fivem-accent-light); font-size: 21px; }
.sky-ar-step-grid h3 { font-size: 16px; }
.sky-ar-step-grid p { margin: 0; font-size: 10px; line-height: 1.7; }
.sky-ar-final-cta { position: relative; display: flex; overflow: hidden; margin-bottom: 55px; padding: 45px 50px; align-items: center; justify-content: space-between; gap: 35px; background: radial-gradient(circle at 10% 20%,rgba(158,179,204,.2),transparent 33%),linear-gradient(120deg,#23253d,#15172b); border: 1px solid rgba(158,179,204,.3); border-radius: 22px; box-shadow: var(--fivem-shadow); }
.sky-ar-final-cta > div:first-child { max-width: 660px; }
.sky-ar-final-cta span { color: var(--fivem-accent-light); font-size: 9px; font-weight: 800; }
.sky-ar-final-cta h2 { margin: 8px 0 9px; font-size: 30px; }
.sky-ar-final-cta p { margin: 0; font-size: 12px; }
.sky-ar-final-actions { display: flex; flex: 0 0 auto; gap: 9px; }
.sky-ar-final-actions .btn { display: inline-flex; min-height: 48px; padding: 0 20px; align-items: center; justify-content: center; gap: 8px; border-radius: 10px; font-size: 11px; font-weight: 750; }
.sky-ar-help-links { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-bottom: 10px; }
.sky-ar-help-links > a { display: flex; padding: 19px; align-items: center; gap: 12px; color: #d8dee7; background: rgba(18,19,40,.66); border: 1px solid var(--fivem-line); border-radius: 13px; }
.sky-ar-help-links > a:hover { background: rgba(35,37,61,.8); transform: translateY(-2px); }
.sky-ar-help-links > a > i:first-child { width: 25px; color: var(--fivem-accent-light); font-size: 17px; text-align: center; }
.sky-ar-help-links > a > i:last-child { margin-right: auto; color: #697588; font-size: 10px; }
.sky-ar-help-links span { display: flex; flex-direction: column; }
.sky-ar-help-links strong { font-size: 11px; }
.sky-ar-help-links small { margin-top: 3px; color: #748094; font-size: 8px; }
.fivem-theme.page-homepage .header,
.fivem-theme.page-homepage .footer { direction: rtl; text-align: right; }
.fivem-theme.page-homepage .footer .fivem-footer-bottom { direction: rtl; }

@media (max-width: 1199px) {
    .sky-ar-hero { min-height: 600px; padding: 70px 45px; gap: 38px; }
    .sky-ar-plan-grid { grid-template-columns: repeat(2,1fr); }
    .sky-ar-benefit-grid { grid-template-columns: repeat(2,1fr); }
    .sky-ar-plan ul { min-height: 0; }
}

@media (max-width: 991px) {
    .sky-ar-hero { grid-template-columns: 1fr; padding: 62px 38px; text-align: center; }
    .sky-ar-hero-copy > p { margin-right: auto; margin-left: auto; }
    .sky-ar-hero-actions,
    .sky-ar-hero-points { justify-content: center; }
    .sky-ar-server-panel { max-width: 540px; margin: 0 auto; transform: none; text-align: right; }
    .sky-ar-stats { grid-template-columns: repeat(2,1fr); row-gap: 22px; }
    .sky-ar-stats > div:nth-child(2) { border-left: 0; }
    .sky-ar-final-cta { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 767px) {
    .fivem-theme.page-homepage #main-body > .container { padding: 0 12px; }
    .sky-ar-hero { min-height: 0; padding: 52px 20px 66px; border-radius: 0 0 22px 22px; }
    .sky-ar-hero h1 { font-size: 39px; }
    .sky-ar-hero-copy > p { font-size: 13px; }
    .sky-ar-hero-actions { flex-direction: column; }
    .sky-ar-hero-actions .btn { width: 100%; }
    .sky-ar-hero-points { align-items: center; flex-direction: column; gap: 9px; }
    .sky-ar-panel-metrics > div { padding: 0 6px; }
    .sky-ar-panel-metrics strong { font-size: 17px; }
    .sky-ar-stats { margin: -25px 14px 65px; padding: 19px 12px; gap: 17px 0; }
    .sky-ar-stats > div { padding: 0 12px; gap: 9px; }
    .sky-ar-stats i { font-size: 15px; }
    .sky-ar-stats strong { font-size: 12px; }
    .sky-ar-section { margin-bottom: 65px; }
    .sky-ar-section-head { margin-bottom: 29px; }
    .sky-ar-section-head h2 { font-size: 29px; line-height: 1.3; }
    .sky-ar-section-head p { font-size: 11px; }
    .sky-ar-plan-grid,
    .sky-ar-benefit-grid,
    .sky-ar-step-grid,
    .sky-ar-help-links { grid-template-columns: 1fr; }
    .sky-ar-plan { padding: 24px; }
    .sky-ar-benefit-grid article { min-height: 215px; }
    .sky-ar-steps { padding: 37px 20px; border-radius: 18px; }
    .sky-ar-final-cta { padding: 33px 23px; border-radius: 18px; }
    .sky-ar-final-cta h2 { font-size: 24px; }
    .sky-ar-final-actions { width: 100%; flex-direction: column; }
    .sky-ar-final-actions .btn { width: 100%; }
}

/* Header v2 — compact unified navigation */
.fivem-theme .header { position: sticky; top: 0; z-index: 1030; background: rgba(5,5,22,.93); border-bottom: 1px solid rgba(109,131,159,.18); box-shadow: 0 12px 40px rgba(0,0,0,.25); backdrop-filter: blur(18px); }
.fivem-theme .sky-navbar { min-height: 82px; padding: 10px 0; background: transparent; }
.fivem-theme .sky-navbar .container { display: flex; flex-wrap: nowrap; }
.fivem-theme .sky-navbar .fivem-brand { margin-right: 45px; flex: 0 0 auto; }
.fivem-theme .sky-navbar .skyhost-logo { width: 148px; max-width: none; }
.fivem-theme .sky-navbar .navbar-collapse { min-width: 0; align-items: center; }
.fivem-theme .sky-primary-nav { align-items: center; flex: 1; gap: 4px; }
.fivem-theme .sky-navbar .navbar-nav > li > a {
    display: flex;
    min-height: 42px;
    padding: 0 14px;
    align-items: center;
    color: #aeb7c7;
    border: 1px solid transparent;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 650;
}
.fivem-theme .sky-navbar .navbar-nav > li > a:hover,
.fivem-theme .sky-navbar .navbar-nav > li.active > a,
.fivem-theme .sky-navbar .navbar-nav > li.open > a { color: #fff; background: rgba(109,131,159,.1); border-color: rgba(109,131,159,.17); }
.fivem-theme .sky-navbar .dropdown-menu { margin-top: 10px; padding: 8px; background: #121326; border: 1px solid var(--fivem-line); border-radius: 13px; box-shadow: 0 20px 55px rgba(0,0,0,.42); }
.fivem-theme .sky-navbar .dropdown-item { padding: 10px 12px; color: #aeb8c8; border-radius: 8px; font-size: 11px; }
.fivem-theme .sky-navbar .dropdown-item:hover { color: #fff; background: rgba(109,131,159,.14); }
.sky-nav-actions { display: flex; margin-left: 18px; align-items: center; gap: 9px; }
.sky-support-link { align-items: center; gap: 7px; padding: 9px 10px; color: #8f9aab !important; font-size: 11px; }
.sky-support-link:hover { color: #fff !important; }
.fivem-theme .sky-account-nav { flex-direction: row; }
.fivem-theme .sky-account-nav > li > a { padding: 0 10px !important; }
.fivem-theme .sky-navbar .fivem-deploy-btn { display: inline-flex; min-height: 42px; margin: 0; padding: 0 16px; align-items: center; gap: 7px; border-radius: 10px; white-space: nowrap; }
.fivem-theme .sky-cart-btn { position: relative; display: inline-flex; width: 42px; height: 42px; padding: 0; align-items: center; justify-content: center; color: #dce3ed; background: rgba(255,255,255,.035); border: 1px solid var(--fivem-line); border-radius: 10px; }
.fivem-theme .sky-cart-btn:hover { color: #fff; background: rgba(109,131,159,.14); border-color: rgba(158,179,204,.45); }
.fivem-theme .sky-cart-btn .badge { position: absolute; top: -5px; right: -5px; min-width: 18px; padding: 4px; color: #020112; background: var(--fivem-accent-light); border: 2px solid #080819; border-radius: 20px; font-size: 8px; }
.sky-navbar-toggle { display: flex; width: 43px; height: 43px; padding: 10px; flex-direction: column; align-items: center; justify-content: center; gap: 5px; border: 1px solid var(--fivem-line) !important; border-radius: 10px; }
.sky-navbar-toggle span { display: block; width: 19px; height: 1px; background: #dce3ed; }
.fivem-theme .master-breadcrumb { background: rgba(4,4,18,.7); border-bottom: 1px solid rgba(109,131,159,.12); }
.fivem-theme .master-breadcrumb .breadcrumb { padding: 12px 0; font-size: 10px; }
.fivem-theme.page-clientregister .master-breadcrumb,
.fivem-theme.page-cart .master-breadcrumb,
.fivem-theme.page-viewcart .master-breadcrumb,
.fivem-theme.page-products .master-breadcrumb,
.fivem-theme.page-configureproduct .master-breadcrumb { display: none; }

/* Registration v2 */
.fivem-theme.page-clientregister #main-body { padding: 62px 0 80px; }
.fivem-theme.page-clientregister #main-body > .container { max-width: 1110px; }
.fivem-theme.page-clientregister #main-body > .container > .row { display: block; margin: 0; }
.fivem-theme.page-clientregister #main-body > .container > .row > .col-lg-4 { display: none !important; }
.fivem-theme.page-clientregister #main-body > .container > .row > .primary-content { width: 100%; max-width: 100%; padding: 0; flex: 0 0 100%; }
.fivem-signup { display: grid; grid-template-columns: 350px minmax(0,1fr); gap: 64px; align-items: start; }
.fivem-signup-heading { position: sticky; top: 145px; padding: 28px 0; }
.fivem-signup-mark { display: block; width: 48px; height: 62px; margin-bottom: 24px; object-fit: contain; }
.fivem-signup-heading .fivem-kicker { display: flex; align-items: center; gap: 11px; }
.fivem-signup-heading .status-dot { width: 7px; height: 7px; }
.fivem-signup-heading h1 { margin: 18px 0 16px; font-size: 48px; line-height: 1.02; letter-spacing: -.055em; }
.fivem-signup-heading > p { max-width: 330px; font-size: 14px; line-height: 1.75; }
.fivem-signup-trust { display: flex; margin-top: 28px; flex-direction: column; align-items: flex-start; gap: 9px; }
.fivem-signup-trust span { display: inline-flex; padding: 9px 12px; align-items: center; gap: 9px; color: #b5bfcd; background: rgba(35,37,61,.45); border: 1px solid var(--fivem-line); border-radius: 9px; font-size: 10px; }
.fivem-signup-trust i { width: 14px; color: var(--fivem-accent-light); text-align: center; }
.fivem-signup-card { padding: 38px; background: linear-gradient(160deg, rgba(21,23,43,.95), rgba(8,8,26,.96)); border: 1px solid var(--fivem-line); border-radius: 22px; box-shadow: 0 28px 75px rgba(0,0,0,.3); }
.fivem-signup-card-head { display: flex; margin-bottom: 30px; padding-bottom: 24px; align-items: flex-end; justify-content: space-between; gap: 20px; border-bottom: 1px solid var(--fivem-line); }
.fivem-signup-card-head small { color: var(--fivem-accent-light); font-size: 8px; font-weight: 900; letter-spacing: .2em; }
.fivem-signup-card-head h2 { margin: 7px 0 0; font-size: 27px; }
.fivem-signup-card-head p { margin: 0; font-size: 11px; }
.fivem-form-section + .fivem-form-section { margin-top: 28px; padding-top: 28px; border-top: 1px solid var(--fivem-line); }
.fivem-form-section-title { display: flex; margin-bottom: 20px; align-items: center; gap: 11px; }
.fivem-form-section-title > span { display: flex; width: 33px; height: 33px; align-items: center; justify-content: center; color: #020112; background: var(--fivem-accent-light); border-radius: 9px; font-size: 9px; font-weight: 900; }
.fivem-form-section-title > div { display: flex; flex-direction: column; }
.fivem-form-section-title strong { color: #f4f6f9; font-size: 12px; }
.fivem-form-section-title small { margin-top: 2px; color: #727e90; font-size: 9px; }
.fivem-signup-card label { margin-bottom: 7px; color: #939eb0; font-size: 8px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.fivem-input-wrap { position: relative; display: flex; min-height: 48px; align-items: center; overflow: hidden; background: #090a1c; border: 1px solid rgba(109,131,159,.25); border-radius: 11px; transition: border-color .2s ease, box-shadow .2s ease; }
.fivem-input-wrap:focus-within { border-color: rgba(158,179,204,.8); box-shadow: 0 0 0 3px rgba(109,131,159,.12); }
.fivem-input-wrap > i { width: 45px; flex: 0 0 45px; color: #718096; text-align: center; }
.fivem-signup-card .form-control,
.fivem-signup-card input.form-control,
.fivem-signup-card select.form-control {
    width: 100%;
    height: 47px !important;
    min-height: 47px;
    padding: 10px 13px;
    color: #edf1f6 !important;
    background: #090a1c !important;
    border: 1px solid rgba(109,131,159,.25) !important;
    border-radius: 11px !important;
    box-shadow: none !important;
    font-size: 12px;
}
.fivem-signup-card .fivem-input-wrap .form-control { background: transparent !important; border: 0 !important; border-radius: 0 !important; }
.fivem-signup-card .form-control::placeholder { color: #566174; opacity: 1; }
.fivem-signup-card select.form-control option { color: #edf1f6; background: #111326; }
.fivem-phone-wrap { overflow: visible; }
.fivem-phone-wrap .iti,
.fivem-phone-wrap .iti__flag-container { width: 100%; }
.fivem-phone-wrap .iti__selected-flag { width: 48px; background: rgba(109,131,159,.08) !important; border-radius: 10px 0 0 10px; }
.fivem-phone-wrap input { padding-left: 58px !important; }
.fivem-signup-card .iti__country-list { color: #dce3ed; background: #111326; border-color: var(--fivem-line); }
.fivem-signup-card .password-strength-meter .progress { height: 5px; background: #090a1c; border-radius: 10px; }
.fivem-signup-card .password-strength-meter p { font-size: 9px; }
.fivem-signup-consents { display: grid; margin-top: 26px; gap: 11px; }
.fivem-signup-consents label { display: flex; margin: 0; align-items: flex-start; gap: 10px; color: #8f99aa; font-size: 10px; font-weight: 400; letter-spacing: 0; line-height: 1.55; text-transform: none; }
.fivem-signup-consents input { margin-top: 3px; accent-color: var(--fivem-accent); }
.fivem-signup-submit { display: flex; min-height: 52px; margin-top: 24px; align-items: center; justify-content: center; gap: 9px; background: linear-gradient(135deg, #7d94b0, #60748f) !important; border: 0 !important; border-radius: 11px !important; box-shadow: 0 12px 30px rgba(109,131,159,.2); font-size: 11px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.fivem-signup-submit:hover { filter: brightness(1.1); transform: translateY(-1px); }
.fivem-signup-note { margin: 14px 0 0; color: #687486 !important; font-size: 9px; text-align: center; }
.fivem-signup-note i { margin-right: 5px; }

/* Cart tools v2 */
.fivem-theme #order-standard_cart .fivem-cart-tools { overflow: hidden; background: #0c0d20 !important; border: 1px solid var(--fivem-line) !important; border-radius: 15px !important; }
.fivem-theme #order-standard_cart .fivem-cart-tools .nav-tabs { padding: 0 14px; background: rgba(35,37,61,.65); border-bottom: 1px solid var(--fivem-line); }
.fivem-theme #order-standard_cart .fivem-cart-tools .nav-link { padding: 13px 8px; color: #aeb7c5; background: transparent !important; border: 0 !important; border-bottom: 2px solid transparent !important; font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.fivem-theme #order-standard_cart .fivem-cart-tools .nav-link.active { color: #fff; border-bottom-color: var(--fivem-accent-light) !important; }
.fivem-theme #order-standard_cart .fivem-cart-tools .tab-content,
.fivem-theme #order-standard_cart .fivem-cart-tools .tab-pane { min-height: 0; padding: 0; color: var(--fivem-text); background: #0c0d20 !important; }
.fivem-theme #order-standard_cart .fivem-cart-tools .tab-pane { padding: 18px !important; }
.fivem-promo-form { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 10px; }
.fivem-promo-form .form-group { margin: 0; }
.fivem-theme #order-standard_cart .fivem-promo-form #inputPromotionCode { height: 46px; min-height: 46px; padding-left: 45px; color: #eef2f7 !important; background: #08091b !important; border: 1px solid rgba(109,131,159,.32) !important; border-radius: 10px; }
.fivem-theme #order-standard_cart .fivem-promo-form #inputPromotionCode::placeholder { color: #596578; }
.fivem-theme #order-standard_cart .fivem-promo-form .field-icon { color: #758398; }
.fivem-theme #order-standard_cart .fivem-promo-submit { min-width: 145px; height: 46px; padding: 0 20px; color: #fff; background: var(--fivem-accent); border: 1px solid var(--fivem-accent); border-radius: 10px; font-size: 10px; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }

/* Checkout v2 */
.fivem-theme .fivem-checkout-page .cart-body { max-width: 1000px !important; margin: 0 auto; }
.fivem-theme .fivem-checkout-page #frmCheckout { padding: 34px 38px; background: linear-gradient(160deg, rgba(21,23,43,.88), rgba(8,8,25,.94)); border: 1px solid var(--fivem-line); border-radius: 20px; box-shadow: var(--fivem-shadow); }
.fivem-theme .fivem-checkout-page #frmCheckout > .sub-heading:first-of-type { margin-top: 0; }
.fivem-theme .fivem-checkout-page #containerNewUserSignup,
.fivem-theme .fivem-checkout-page #containerExistingUserSignin,
.fivem-theme .fivem-checkout-page #containerNewUserSecurity { margin-bottom: 8px; }
.fivem-theme .fivem-checkout-page .form-group { margin-bottom: 15px; }
.fivem-theme .fivem-checkout-page .form-control,
.fivem-theme .fivem-checkout-page input.field,
.fivem-theme .fivem-checkout-page select.field,
.fivem-theme .fivem-checkout-page textarea.field { color: #edf1f6 !important; background: #090a1c !important; border: 1px solid rgba(109,131,159,.28) !important; box-shadow: none !important; }
.fivem-theme .fivem-checkout-page .form-control::placeholder { color: #566174; }
.fivem-theme .fivem-checkout-page select.form-control option { color: #edf1f6; background: #111326; }
.fivem-theme .fivem-checkout-page .prepend-icon .field-icon { height: 45px; color: #748197; background: rgba(109,131,159,.04); border-right: 1px solid rgba(109,131,159,.16); }
.fivem-theme .fivem-checkout-page .sub-heading { margin-top: 30px !important; }
.fivem-theme .fivem-checkout-page .sub-heading span { background: #101226 !important; }
.fivem-theme .fivem-checkout-page #totalDueToday { margin: 18px 0 22px; padding: 20px; color: #c9d1dc; background: linear-gradient(135deg, rgba(109,131,159,.22), rgba(35,37,61,.7)); }
.fivem-theme .fivem-checkout-page #paymentGatewaysContainer { padding: 20px; }
.fivem-theme .fivem-checkout-page .marketing-email-optin,
.fivem-theme .fivem-checkout-page .apply-credit-container { padding: 18px; background: #0b0c1e; border: 1px solid var(--fivem-line); border-radius: 12px; }
.fivem-theme .fivem-checkout-page .checkbox-inline { color: #aeb8c7; font-size: 10px; font-weight: 500; }
.fivem-theme .fivem-checkout-page #btnCompleteOrder { min-width: 260px; box-shadow: 0 14px 32px rgba(109,131,159,.22); }
.fivem-theme .fivem-checkout-page #btnAlreadyRegistered,
.fivem-theme .fivem-checkout-page #btnNewUserSignup { color: #fff; background: var(--fivem-accent); border-color: var(--fivem-accent); border-radius: 9px; font-size: 11px; font-weight: 750; }
.fivem-payment-empty { display: flex; width: 100%; padding: 17px; align-items: center; gap: 14px; color: #9da8b8; background: rgba(229,107,122,.055); border: 1px solid rgba(229,107,122,.18); border-radius: 11px; text-align: left; }
.fivem-payment-empty > i { display: flex; width: 38px; height: 38px; flex: 0 0 38px; align-items: center; justify-content: center; color: #c7939b; background: rgba(229,107,122,.08); border-radius: 9px; }
.fivem-payment-empty > div { display: flex; flex-direction: column; }
.fivem-payment-empty strong { color: #e3e7ed; font-size: 11px; }
.fivem-payment-empty span { margin-top: 3px; font-size: 9px; }

/* Services dashboard */
.fivem-theme.page-clientareaproducts .primary-content > .header-lined { display: none; }
.fivem-services-page { padding-bottom: 25px; }
.fivem-services-hero { display: flex; overflow: hidden; margin-bottom: 20px; padding: 34px 36px; align-items: flex-end; justify-content: space-between; gap: 25px; background: radial-gradient(circle at 88% 16%,rgba(109,131,159,.23),transparent 35%),linear-gradient(135deg,rgba(35,37,61,.92),rgba(10,10,29,.95)); border: 1px solid var(--fivem-line); border-radius: 19px; box-shadow: var(--fivem-shadow); }
.fivem-services-hero .fivem-kicker { display: flex; align-items: center; gap: 10px; }
.fivem-services-hero h1 { margin: 10px 0 7px; font-size: 35px; }
.fivem-services-hero p { margin: 0; font-size: 12px; }
.fivem-services-hero .btn { display: inline-flex; min-height: 44px; padding: 0 17px; flex: 0 0 auto; align-items: center; gap: 8px; font-size: 10px; font-weight: 850; letter-spacing: .04em; text-transform: uppercase; }
.fivem-services-toolbar { display: flex; margin-bottom: 20px; padding: 14px 17px; align-items: center; justify-content: space-between; gap: 20px; background: rgba(15,16,37,.72); border: 1px solid var(--fivem-line); border-radius: 13px; }
.fivem-services-toolbar > div { display: flex; align-items: center; gap: 11px; }
.fivem-services-toolbar > div > i { display: flex; width: 35px; height: 35px; align-items: center; justify-content: center; color: var(--fivem-accent-light); background: rgba(109,131,159,.1); border-radius: 9px; }
.fivem-services-toolbar span { display: flex; flex-direction: column; }
.fivem-services-toolbar strong { color: #fff; font-size: 15px; }
.fivem-services-toolbar small { color: #758195; font-size: 8px; text-transform: uppercase; }
.fivem-services-toolbar p { margin: 0; font-size: 10px; }
.fivem-services-toolbar p i { margin-right: 5px; color: var(--fivem-accent-light); }
.fivem-service-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 17px; }
.fivem-service-card { display: block; overflow: hidden; color: var(--fivem-text) !important; background: linear-gradient(155deg,rgba(27,29,52,.94),rgba(9,9,27,.96)); border: 1px solid var(--fivem-line); border-radius: 17px; box-shadow: 0 14px 38px rgba(0,0,0,.16); transition: transform .22s ease,border-color .22s ease,box-shadow .22s ease; }
.fivem-service-card:hover { transform: translateY(-4px); border-color: rgba(158,179,204,.48); box-shadow: 0 23px 55px rgba(0,0,0,.28); }
.fivem-service-card-top { display: flex; padding: 20px 21px 0; align-items: center; justify-content: space-between; }
.fivem-service-icon { display: flex; width: 44px; height: 44px; align-items: center; justify-content: center; color: var(--fivem-accent-light); background: rgba(109,131,159,.12); border: 1px solid var(--fivem-line); border-radius: 12px; }
.fivem-service-card .label.status { display: inline-flex; padding: 6px 9px; align-items: center; font-size: 8px; letter-spacing: .05em; }
.fivem-service-name { padding: 17px 21px 20px; }
.fivem-service-name > small { color: #6f7b8e; font-size: 7px; font-weight: 900; letter-spacing: .16em; }
.fivem-service-name h2 { margin: 5px 0 9px; font-size: 20px; }
.fivem-service-name > span { color: #8490a2; font-size: 9px; }
.fivem-service-name > span i { margin-right: 5px; color: var(--fivem-accent-light); }
.fivem-service-meta { display: grid; grid-template-columns: repeat(2,1fr); margin: 0 21px; padding: 18px 0; border-top: 1px solid var(--fivem-line); border-bottom: 1px solid var(--fivem-line); }
.fivem-service-meta > div { display: flex; padding: 0 15px; flex-direction: column; border-right: 1px solid var(--fivem-line); }
.fivem-service-meta > div:first-child { padding-left: 0; }
.fivem-service-meta > div:last-child { padding-right: 0; border: 0; }
.fivem-service-meta small { color: #6f7b8e; font-size: 8px; text-transform: uppercase; }
.fivem-service-meta strong { margin-top: 7px; color: #fff; font-size: 14px; }
.fivem-service-meta span { margin-top: 2px; color: #788497; font-size: 8px; }
.fivem-service-card-foot { display: flex; padding: 16px 21px; align-items: center; justify-content: space-between; color: #758195; background: rgba(2,1,18,.23); font-size: 8px; }
.fivem-service-card-foot > span i { margin-right: 5px; color: var(--fivem-success); }
.fivem-service-card-foot b { color: #bec8d6; font-size: 9px; }
.fivem-service-card-foot b i { margin-left: 5px; }
.fivem-services-empty { padding: 65px 30px; background: radial-gradient(circle at 50% 0,rgba(109,131,159,.16),transparent 38%),rgba(12,13,32,.8); border: 1px solid var(--fivem-line); border-radius: 19px; text-align: center; }
.fivem-services-empty-icon { display: flex; width: 68px; height: 68px; margin: 0 auto 21px; align-items: center; justify-content: center; background: rgba(109,131,159,.1); border: 1px solid var(--fivem-line); border-radius: 17px; }
.fivem-services-empty-icon img { width: 42px; height: 52px; object-fit: contain; }
.fivem-services-empty > span { color: var(--fivem-accent-light); font-size: 8px; font-weight: 900; letter-spacing: .17em; }
.fivem-services-empty h2 { margin: 10px 0 8px; font-size: 26px; }
.fivem-services-empty p { margin: 0 auto 24px; max-width: 470px; font-size: 11px; }
.fivem-services-empty .btn { display: inline-flex; min-height: 46px; padding: 0 19px; align-items: center; gap: 8px; font-size: 10px; }
html[lang="ar"] .fivem-dashboard-actions .btn { display: inline-flex; align-items: center; gap: 7px; }
html[lang="ar"] .fivem-dashboard-actions .btn i { margin: 0 !important; }
html[lang="ar"] .fivem-stat-card .stat-arrow { margin-right: auto; margin-left: 0; }
html[lang="ar"] .fivem-support-strip .btn { margin-right: auto; margin-left: 0; }
html[lang="ar"] .fivem-home-panels .card::before { background: linear-gradient(270deg,var(--fivem-accent),transparent); }
html[lang="ar"] .fivem-service-name > span i,
html[lang="ar"] .fivem-service-card-foot > span i { margin-right: 0; margin-left: 5px; }
html[lang="ar"] .fivem-service-card-foot b i { margin-right: 5px; margin-left: 0; }

/* WHMCS dark-surface hardening */
.fivem-theme .bg-white,
.fivem-theme .bg-light,
.fivem-theme .table-responsive,
.fivem-theme .invoice-container,
.fivem-theme .invoice-summary,
.fivem-theme .product-to-be-upgraded,
.fivem-theme .upgrade .products .product,
.fivem-theme .featured-tld,
.fivem-theme .kb-category,
.fivem-theme .kb-article-item { color: var(--fivem-text) !important; background-color: var(--fivem-surface) !important; }
.fivem-theme table.table-list,
.fivem-theme .dataTables_wrapper table.table-list { overflow: hidden; color: var(--fivem-muted); background: var(--fivem-surface) !important; border: 1px solid var(--fivem-line) !important; border-radius: 14px; }
.fivem-theme table.table-list thead th,
.fivem-theme .dataTables_wrapper table.table-list thead th,
.fivem-theme .dataTables_wrapper table.table-list thead th.sorting_asc,
.fivem-theme .dataTables_wrapper table.table-list thead th.sorting_desc { color: #c6cfdb !important; background-color: var(--fivem-surface-2) !important; border-color: var(--fivem-line) !important; }
.fivem-theme table.table-list tbody td,
.fivem-theme .dataTables_wrapper table.table-list tbody td { color: #aeb7c5 !important; background-color: #111326 !important; border-color: var(--fivem-line) !important; }
.fivem-theme table.table-list tbody tr:hover > td,
.fivem-theme .dataTables_wrapper table.table-list tbody tr:hover > td { color: #fff !important; background-color: #1d2037 !important; }
.fivem-theme table.table-list tbody td strong { color: #fff; }
.fivem-theme .dataTables_wrapper .dataTables_filter label,
.fivem-theme .dataTables_wrapper .dataTables_length label,
.fivem-theme .dataTables_wrapper .dataTables_info { color: #8e99aa; }
.fivem-theme .dataTables_wrapper .dataTables_filter label .form-control,
.fivem-theme .dataTables_wrapper .dataTables_length select { color: #eef2f7 !important; background-color: #090a1c !important; border: 1px solid var(--fivem-line) !important; border-radius: 9px; }
.fivem-theme .dataTables_wrapper .dataTables_filter label .form-control { background-image: none !important; padding: 8px 11px !important; }
.fivem-theme table.dataTable.dtr-inline.collapsed > tbody > tr > td.dtr-control::before { color: #020112; background-color: var(--fivem-accent-light); border-color: var(--fivem-accent-light); }
.fivem-theme table.dataTable > tbody > tr.child,
.fivem-theme table.dataTable > tbody > tr.child ul.dtr-details { color: var(--fivem-muted); background: #0d0e21 !important; }
.fivem-theme .md-editor,
.fivem-theme .md-editor > .md-header,
.fivem-theme .md-editor > textarea,
.fivem-theme .ticket-reply .posted-by,
.fivem-theme .ticket-reply .message,
.fivem-theme .ticketfeedbackstaffcont,
.fivem-theme div.credit-card,
.fivem-theme div.credit-card div.card-number,
.fivem-theme .announcement article { color: var(--fivem-text) !important; background: #111326 !important; border-color: var(--fivem-line) !important; }
.fivem-theme .invoice-summary-table td.total-row,
.fivem-theme .featured-tld .price,
.fivem-theme .upgrade .products .product ul li { color: var(--fivem-muted) !important; background: rgba(109,131,159,.08) !important; border-color: var(--fivem-line) !important; }
.fivem-theme .product-details-tab-container { color: var(--fivem-text); background-color: var(--fivem-surface) !important; border-color: var(--fivem-line) !important; }

@media (max-width: 1199px) {
    .fivem-theme .sky-navbar .fivem-brand { margin-right: 0; }
    .fivem-theme .sky-navbar .navbar-collapse { position: absolute; top: calc(100% + 1px); right: 20px; left: 20px; padding: 18px; background: #0d0e21; border: 1px solid var(--fivem-line); border-radius: 0 0 16px 16px; box-shadow: 0 24px 55px rgba(0,0,0,.4); }
    .fivem-theme .sky-primary-nav { align-items: stretch; }
    .fivem-theme .sky-navbar .navbar-nav > li > a { justify-content: flex-start; }
    .sky-nav-actions { margin: 12px 0 0; padding-top: 14px; flex-wrap: wrap; border-top: 1px solid var(--fivem-line); }
    .fivem-theme .sky-account-nav { width: 100%; flex-direction: column; }
}

@media (max-width: 991px) {
    .fivem-signup { grid-template-columns: 1fr; gap: 28px; }
    .fivem-signup-heading { position: static; padding: 0; text-align: center; }
    .fivem-signup-mark { margin: 0 auto 18px; }
    .fivem-signup-heading .fivem-kicker { justify-content: center; }
    .fivem-signup-heading h1 { font-size: 40px; }
    .fivem-signup-heading > p { margin-right: auto; margin-left: auto; }
    .fivem-signup-trust { flex-direction: row; justify-content: center; flex-wrap: wrap; }
}

@media (max-width: 767px) {
    .fivem-theme .sky-navbar { min-height: 72px; }
    .fivem-theme .sky-navbar .skyhost-logo { width: 128px; }
    .fivem-theme.page-clientregister #main-body { padding: 35px 0 55px; }
    .fivem-signup { gap: 22px; }
    .fivem-signup-heading h1 { font-size: 35px; }
    .fivem-signup-heading > p { font-size: 12px; }
    .fivem-signup-trust span { font-size: 9px; }
    .fivem-signup-card { padding: 24px 18px; border-radius: 17px; }
    .fivem-signup-card-head { align-items: flex-start; flex-direction: column; gap: 8px; }
    .fivem-promo-form { grid-template-columns: 1fr; }
    .fivem-theme #order-standard_cart .fivem-promo-submit { width: 100%; }
    .fivem-theme .fivem-checkout-page #frmCheckout { padding: 24px 17px; border-radius: 15px; }
    .fivem-theme .fivem-checkout-page #btnCompleteOrder { width: 100%; min-width: 0; }
    .fivem-services-hero { padding: 27px 22px; align-items: flex-start; flex-direction: column; }
    .fivem-services-hero h1 { font-size: 28px; }
    .fivem-services-hero .btn { width: 100%; justify-content: center; }
    .fivem-services-toolbar { align-items: flex-start; flex-direction: column; }
    .fivem-service-grid { grid-template-columns: 1fr; }
    .fivem-service-meta > div { padding: 0 10px; }
    .fivem-services-empty { padding: 45px 20px; }
}

@media (max-width: 1199px) {
    .fivem-theme .main-navbar-wrapper .navbar-collapse { padding: 15px 0; }
    .fivem-theme .main-navbar-wrapper .navbar-nav > li > a { padding: 11px 12px; }
    .fivem-dashboard-stats { grid-template-columns: repeat(2,1fr); }
    .fivem-hero { padding: 72px 45px; }
}

@media (max-width: 991px) {
    .fivem-console-card { max-width: 520px; margin: auto; transform: none; }
    .fivem-cta { align-items: flex-start; flex-direction: column; }
    .fivem-auth-shell { grid-template-columns: 1fr; }
    .fivem-auth-aside { display: none; }
    .fivem-footer-grid { grid-template-columns: repeat(2,1fr); }
    .fivem-dashboard-hero { align-items: flex-start; flex-direction: column; }
    .fivem-register-shell { grid-template-columns: 1fr; }
    .fivem-register-aside { display: none; }
}

@media (max-width: 767px) {
    .fivem-theme #main-body { padding: 25px 0 45px; }
    .fivem-theme.page-homepage #main-body > .container { max-width: 100%; padding: 0 12px; }
    .brand-copy strong { font-size: 15px; }
    .fivem-hero { margin-bottom: 52px; padding: 58px 25px; border-radius: 0 0 20px 20px; }
    .fivem-hero h1 { font-size: 42px; }
    .fivem-hero-lead { font-size: 15px; }
    .fivem-hero-actions .btn { width: 100%; }
    .fivem-trust-row { gap: 11px; flex-direction: column; }
    .console-metrics div { padding: 0 8px; }
    .console-metrics strong { font-size: 19px; }
    .fivem-cta { padding: 32px 25px; }
    .fivem-cta-actions { width: 100%; flex-direction: column; }
    .fivem-quick-links { grid-template-columns: 1fr; }
    .fivem-dashboard-hero { padding: 27px 24px; }
    .fivem-dashboard-hero h1 { font-size: 28px; }
    .fivem-dashboard-actions { width: 100%; flex-direction: column; }
    .fivem-dashboard-stats { grid-template-columns: 1fr; }
    .fivem-support-strip { align-items: flex-start; flex-wrap: wrap; }
    .fivem-support-strip .btn { width: 100%; margin-left: 0; }
    .fivem-auth-form { padding: 12px; }
    .fivem-footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .fivem-footer-brand { grid-column: 1 / -1; }
    .fivem-footer-bottom { align-items: flex-start; flex-direction: column; gap: 12px; }
    .skyhost-logo { width: 145px; max-width: 48vw; }
    .fivem-order-progress { margin-bottom: 24px; }
    .fivem-order-progress > i { width: 22px; margin: 0 7px; }
    .fivem-order-progress > span { gap: 5px; font-size: 0; }
    .fivem-order-progress > span b { font-size: 10px; }
    .fivem-order-progress > div { justify-content: center; }
    .fivem-order-progress > div strong { display: none; }
    .fivem-order-progress > div:not(:last-child)::after { width: calc(100% - 30px); }
    .fivem-order-hero { padding: 28px 24px; align-items: flex-start; flex-direction: column; }
    .fivem-order-trust { justify-content: flex-start; }
    .fivem-pricing-grid { grid-template-columns: 1fr; }
    .fivem-pricing-card { min-height: 0; padding: 25px; }
    .fivem-register-form { padding: 30px 22px; }
}

@media (max-width: 480px) {
    .fivem-theme .header .navbar-light { min-height: 68px; }
    .brand-mark { width: 38px; height: 38px; }
    .fivem-hero { padding: 48px 20px; }
    .fivem-hero h1 { font-size: 36px; }
    .fivem-section-heading h2 { font-size: 29px; }
    .fivem-dashboard-heading { align-items: flex-start; flex-direction: column; gap: 12px; }
    .fivem-footer-grid { grid-template-columns: 1fr; }
    .fivem-footer-brand { grid-column: auto; }
}

/* Arabic order layout — keep WHMCS float columns from colliding in RTL. */
.fivem-theme #order-standard_cart .fivem-cart-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 24px;
    margin: 0;
    direction: ltr;
}

.fivem-theme #order-standard_cart .fivem-cart-layout > .secondary-cart-body,
.fivem-theme #order-standard_cart .fivem-cart-layout > .secondary-cart-sidebar {
    position: relative;
    float: none;
    width: 100%;
    min-width: 0;
    max-width: none;
    padding: 0;
}

.fivem-theme #order-standard_cart .fivem-cart-layout > .secondary-cart-body {
    grid-column: 1;
    grid-row: 1;
}

.fivem-theme #order-standard_cart .fivem-cart-layout > .secondary-cart-sidebar {
    grid-column: 2;
    grid-row: 1;
}

html[lang="ar"] .fivem-theme #order-standard_cart .fivem-cart-layout {
    grid-template-columns: 330px minmax(0, 1fr);
}

html[lang="ar"] .fivem-theme #order-standard_cart .fivem-cart-layout > .secondary-cart-body {
    grid-column: 2;
    direction: rtl;
}

html[lang="ar"] .fivem-theme #order-standard_cart .fivem-cart-layout > .secondary-cart-sidebar {
    grid-column: 1;
    direction: rtl;
}

html[lang="ar"] .fivem-theme #order-standard_cart .fivem-order-heading {
    text-align: right;
}

html[lang="ar"] .fivem-theme #order-standard_cart .sub-heading {
    text-align: right;
}

html[lang="ar"] .fivem-theme #order-standard_cart .sub-heading span {
    padding-right: 0;
    padding-left: 12px;
}

html[lang="ar"] .fivem-theme #order-standard_cart .field-container,
html[lang="ar"] .fivem-theme #order-standard_cart .product-configurable-options,
html[lang="ar"] .fivem-theme #order-standard_cart .product-info {
    min-width: 0;
    text-align: right;
}

html[lang="ar"] .fivem-theme #order-standard_cart .field-container label,
html[lang="ar"] .fivem-theme #order-standard_cart .product-configurable-options label {
    margin-right: 0;
    margin-left: 10px;
}

html[lang="ar"] .fivem-theme #order-standard_cart .select-inline,
html[lang="ar"] .fivem-theme #order-standard_cart select.form-control,
html[lang="ar"] .fivem-theme #order-standard_cart .custom-select {
    max-width: 100%;
    padding-right: 13px;
    padding-left: 34px;
    background-position: left 12px center;
    text-align: right;
}

html[lang="ar"] .fivem-theme #order-standard_cart .order-summary .subtotal,
html[lang="ar"] .fivem-theme #order-standard_cart .order-summary .bordered-totals,
html[lang="ar"] .fivem-theme #order-standard_cart .order-summary .recurring-totals {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    min-width: 0;
}

html[lang="ar"] .fivem-theme #order-standard_cart .order-summary .subtotal > span,
html[lang="ar"] .fivem-theme #order-standard_cart .order-summary .bordered-totals > span,
html[lang="ar"] .fivem-theme #order-standard_cart .order-summary .recurring-totals > span {
    float: none !important;
    width: auto;
    min-width: 0;
    margin: 0;
}

html[lang="ar"] .fivem-theme #order-standard_cart .order-summary .subtotal > span:last-child,
html[lang="ar"] .fivem-theme #order-standard_cart .order-summary .bordered-totals > span:last-child,
html[lang="ar"] .fivem-theme #order-standard_cart .order-summary .recurring-totals > span:last-child,
html[lang="ar"] .fivem-theme #order-standard_cart .order-summary .amt,
html[lang="ar"] .fivem-theme #order-standard_cart .view-cart-items .item-price {
    direction: ltr;
    text-align: left;
    unicode-bidi: isolate;
}

html[lang="ar"] .fivem-theme #order-standard_cart .order-summary .recurring-charges {
    flex: 0 1 auto;
    overflow-wrap: anywhere;
}

html[lang="ar"] .fivem-theme #order-standard_cart .view-cart-items-header,
html[lang="ar"] .fivem-theme #order-standard_cart .view-cart-items .item {
    text-align: right;
}

html[lang="ar"] .fivem-theme #order-standard_cart .view-cart-items .item > .row {
    align-items: center;
}

html[lang="ar"] .fivem-theme #order-standard_cart .view-cart-items .item-title,
html[lang="ar"] .fivem-theme #order-standard_cart .view-cart-items .item-group,
html[lang="ar"] .fivem-theme #order-standard_cart .view-cart-items .item-domain,
html[lang="ar"] .fivem-theme #order-standard_cart .view-cart-items small {
    overflow-wrap: anywhere;
}

html[lang="ar"] .fivem-theme #order-standard_cart .btn-remove-from-cart {
    margin: 0;
}

html[lang="ar"] .fivem-theme #order-standard_cart .fivem-promo-form #inputPromotionCode {
    padding-right: 44px;
    padding-left: 13px;
}

html[lang="ar"] .fivem-theme #order-standard_cart .fivem-promo-form .field-icon {
    right: 0;
    left: auto;
}

html[lang="ar"] .fivem-theme #order-standard_cart .fivem-cart-tools .nav-tabs {
    padding-right: 14px;
    padding-left: 14px;
}

html[lang="ar"] .fivem-theme #order-standard_cart .fivem-cart-tools .nav-item {
    margin-right: 0;
    margin-left: 10px;
}

@media (max-width: 991px) {
    .fivem-theme #order-standard_cart .fivem-cart-layout,
    html[lang="ar"] .fivem-theme #order-standard_cart .fivem-cart-layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 20px;
    }

    .fivem-theme #order-standard_cart .fivem-cart-layout > .secondary-cart-body,
    .fivem-theme #order-standard_cart .fivem-cart-layout > .secondary-cart-sidebar,
    html[lang="ar"] .fivem-theme #order-standard_cart .fivem-cart-layout > .secondary-cart-body,
    html[lang="ar"] .fivem-theme #order-standard_cart .fivem-cart-layout > .secondary-cart-sidebar {
        grid-column: 1;
        width: 100%;
    }

    .fivem-theme #order-standard_cart .fivem-cart-layout > .secondary-cart-body,
    html[lang="ar"] .fivem-theme #order-standard_cart .fivem-cart-layout > .secondary-cart-body {
        grid-row: 1;
    }

    .fivem-theme #order-standard_cart .fivem-cart-layout > .secondary-cart-sidebar,
    html[lang="ar"] .fivem-theme #order-standard_cart .fivem-cart-layout > .secondary-cart-sidebar {
        grid-row: 2;
    }
}

@media (max-width: 575px) {
    .fivem-theme #order-standard_cart .fivem-cart-layout {
        gap: 16px;
    }

    .fivem-theme #order-standard_cart .view-cart-items-header {
        padding: 11px 12px;
    }

    .fivem-theme #order-standard_cart .view-cart-items .item {
        padding: 16px 13px;
    }

    .fivem-theme #order-standard_cart .view-cart-items .item > .row > [class*="col-"] {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
    }

    .fivem-theme #order-standard_cart .view-cart-items .item-price {
        margin-top: 13px;
        padding-top: 12px;
        border-top: 1px solid var(--fivem-line);
    }

    html[lang="ar"] .fivem-theme #order-standard_cart .view-cart-items .item-price {
        text-align: right;
    }

    .fivem-theme #order-standard_cart .order-summary h2,
    .fivem-theme #order-standard_cart .summary-container {
        padding-right: 16px;
        padding-left: 16px;
    }

    .fivem-theme #order-standard_cart .fivem-cart-tools .tab-pane {
        padding: 14px !important;
    }
}
