﻿body {
    color: var(--launcher-text);
    background:
        linear-gradient(180deg, rgba(2, 8, 16, 0.55) 0%, rgba(2, 8, 16, 0.88) 58%, rgba(2, 8, 16, 0.95) 100%),
        url("/assets/images/bg.png") center top / cover no-repeat fixed,
        #030b17;
}
.nav-link--chat {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.nav-link--chat svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}
main {
    position: relative;
    isolation: isolate;
}
.hero-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.hero-actions__secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    padding: 16px 28px;
    border-radius: 16px;
    border: 1px solid rgba(1, 153, 244, 0.22);
    background: rgba(1, 153, 244, 0.08);
    color: var(--launcher-text);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.hero-actions__secondary:hover {
    color: #fff;
    background: rgba(1, 153, 244, 0.16);
}

.section-shell {
    margin: 0 0 120px;
}

.account-page {
    padding: 32px 0 80px;
}

.account-hero {
    padding-top: 16px;
}

.account-hero .container {
    max-width: 1220px;
}

.section-shell__heading {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 34px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(1, 153, 244, 0.12);
}

.section-shell__eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(1, 153, 244, 0.2);
    background: rgba(1, 153, 244, 0.08);
    color: #8dddff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-shell__heading p,
.page-intro p {
    max-width: 720px;
    margin: 0;
    color: var(--launcher-sub);
    line-height: 1.75;
}

.page-intro {
    margin-bottom: 32px;
}

.page-intro--center {
    max-width: 820px;
    margin: 0 auto 32px;
    text-align: center;
}

.page-intro h1 {
    margin-bottom: 12px;
    font-size: 46px;
}

.start-section .row,
.media-section .row {
    row-gap: 24px;
}

.step-card,
.faq-card,
.media-card,
.ticket-list-card,
.support-panel,
.empty-state,
.simple-state .page-intro,
.site-footer__service {
    position: relative;
    overflow: hidden;
    height: 100%;
    border: 1px solid var(--launcher-line);
    border-radius: 28px;
    background: var(--launcher-card-soft);
    box-shadow: var(--launcher-shadow);
}

.step-card,
.faq-card,
.media-card,
.ticket-list-card,
.support-panel,
.empty-state,
.simple-state .page-intro {
    padding: 28px;
}

.step-card::before,
.faq-card::before,
.media-card::before,
.support-panel::before,
.ticket-list-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(1, 153, 244, 0.12), transparent 42%);
}

.step-card__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 16px;
    border-radius: 18px;
    border: 1px solid var(--launcher-line);
    background: rgba(1, 153, 244, 0.12);
    color: #7ad5ff;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.step-card h3,
.faq-card h3,
.media-card h3,
.ticket-list-card h3,
.support-panel h2,
.support-rules h3 {
    margin-bottom: 12px;
    color: var(--launcher-text);
}

.step-card p,
.faq-card p,
.media-card p,
.ticket-list-card p,
.support-panel p,
.support-rules li,
.ticket-message__body,
.inline-alert,
.empty-state {
    color: var(--launcher-sub);
    line-height: 1.75;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.media-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.media-card__type {
    display: inline-flex;
    width: fit-content;
    min-height: 36px;
    align-items: center;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid var(--launcher-line);
    background: rgba(1, 153, 244, 0.12);
    color: #7ad5ff;
    font-size: 13px;
    font-weight: 600;
}

.media-card a,
.media-card__links a,
.summary-link,
.support-links a,
.site-footer__social a {
    color: #9adbff;
}

.media-card__links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.media-card__muted {
    color: rgba(235, 247, 255, 0.58);
}

.media-hub-grid,
.clips-grid,
.streamers-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.media-hub-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 28px;
}

.media-hub-card,
.clip-card,
.streamer-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--launcher-line);
    border-radius: 28px;
    background: var(--launcher-card-soft);
    box-shadow: var(--launcher-shadow);
    padding: 26px;
}

.media-hub-card::before,
.clip-card::before,
.streamer-card::before,
.site-modal .modal-content::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at top right, rgba(53, 181, 255, 0.18), transparent 28%),
        linear-gradient(145deg, rgba(1, 153, 244, 0.12), transparent 55%);
}

.media-hub-card > *,
.clip-card > *,
.streamer-card > * {
    position: relative;
    z-index: 1;
}

.media-hub-card__badge,
.clip-card__accent,
.site-modal__tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(1, 153, 244, 0.22);
    background: rgba(1, 153, 244, 0.12);
    color: #83d8ff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.media-hub-card h3,
.clip-card h3,
.streamers-zone__header h3 {
    margin: 18px 0 10px;
}

.media-hub-card p,
.clip-card p,
.streamers-zone__header p,
.streamer-card span {
    color: var(--launcher-sub);
    line-height: 1.75;
}

.media-hub-card__actions,
.clip-card__button,
.streamer-card__bottom a,
.site-modal__actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-radius: 16px;
}

.media-hub-card__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.media-hub-card__actions a,
.clip-card__button,
.streamer-card__bottom a,
.site-modal__actions a,
.media-hub-card__button {
    padding: 0 18px;
    border: 1px solid rgba(1, 153, 244, 0.22);
    background: rgba(1, 153, 244, 0.08);
    color: #cfeeff;
}

.media-hub-card__actions a:first-child,
.site-modal__actions a {
    background: linear-gradient(135deg, var(--launcher-primary), var(--launcher-primary-light));
    color: #fff;
    border-color: transparent;
}

.media-hub-card__button,
.clip-card__button {
    cursor: pointer;
}

.media-hub-card--interactive {
    cursor: pointer;
    transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.media-hub-card--interactive:hover,
.media-hub-card--interactive:focus-visible {
    transform: translateY(-3px);
    border-color: rgba(75, 190, 255, 0.32);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.3);
}

.media-hub-card--interactive:focus-visible {
    outline: 0;
}

.media-hub-card--interactive .media-hub-card__actions {
    margin-top: 22px;
}

.media-hub-card--interactive .media-hub-card__actions a,
.media-hub-card--interactive .media-hub-card__actions span {
    position: relative;
    z-index: 2;
}

.streamers-zone {
    margin-top: 10px;
}

.streamers-zone__header {
    margin-bottom: 18px;
}

.streamer-card__top,
.streamer-card__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.streamer-card__top img {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    object-fit: cover;
    border: 1px solid rgba(1, 153, 244, 0.18);
}

.streamer-card__top {
    margin-bottom: 18px;
}

.streamer-card__top strong {
    display: block;
    margin-bottom: 4px;
}

.clip-card__button {
    margin-top: 18px;
}

.site-modal .modal-dialog {
    max-width: 640px;
}

.site-modal .modal-content {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(1, 153, 244, 0.16);
    border-radius: 30px;
    background: rgba(3, 11, 23, 0.96);
    box-shadow: var(--launcher-shadow-strong);
}

.site-modal .modal-body {
    position: relative;
    padding: 34px;
}

.site-modal__close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    width: 38px;
    height: 38px;
    border-radius: 14px;
    border: 0;
    background: rgba(1, 153, 244, 0.1);
    color: #fff;
    text-shadow: none;
    opacity: 1;
}

.site-modal h3 {
    margin: 18px 0 12px;
}

.site-modal p,
.site-modal__sub {
    color: var(--launcher-sub);
    line-height: 1.75;
}

.site-modal__actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.donate-section .block {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--launcher-line);
    border-radius: 28px;
    background: var(--launcher-card-soft);
    box-shadow: var(--launcher-shadow);
    padding: 32px;
}

.donate-section .block::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(1, 153, 244, 0.12), transparent 42%);
}

.donate-section .block > * {
    position: relative;
    z-index: 1;
}

.site-donate-form {
    margin-top: 28px;
    display: grid;
    gap: 16px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.site-donate-form .input-group {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    align-items: stretch;
    border-radius: 18px;
    border: 1px solid rgba(1, 153, 244, 0.18);
    background: rgba(3, 11, 23, 0.72);
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.site-donate-form .input-group i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(1, 153, 244, 0.18);
    border-right: 1px solid rgba(1, 153, 244, 0.18);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 22px 22px;
}

.site-donate-form .input-group i.user {
    background-image: url("/assets/images/user-icon.png");
}

.site-donate-form .input-group i.cash {
    background-image: url("/assets/images/cash-icon.png");
}

.site-donate-form .input-group input {
    width: 100%;
    border: 0;
    background: transparent;
    color: #fff;
    padding: 14px 16px;
    outline: none;
    font-size: 15px;
}

.site-donate-form .input-group input::placeholder {
    color: var(--launcher-sub);
}

.site-donate-form .input-group.invalid {
    border-color: rgba(255, 102, 102, 0.5);
    box-shadow: 0 0 0 1px rgba(255, 102, 102, 0.2);
}

.site-donate-form button {
    justify-self: center;
    min-height: 52px;
    padding: 0 28px;
    border: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--launcher-primary), var(--launcher-primary-light));
    color: #fff;
    font-weight: 700;
    box-shadow: 0 12px 28px rgba(1, 153, 244, 0.22);
}

.donate-note {
    border-radius: 18px;
    border: 1px solid rgba(1, 153, 244, 0.16);
    background: rgba(1, 153, 244, 0.08);
    color: var(--launcher-sub);
}

.support-page {
    padding-bottom: 100px;
}

.support-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 26px;
}

.support-grid--ticket {
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
}

.support-panel--form,
.support-panel--thread,
.support-panel--summary {
    min-height: 100%;
}

.support-form {
    display: grid;
    gap: 16px;
}

.support-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.support-form label {
    display: grid;
    gap: 8px;
}

.support-form label span,
.support-widget__form label span {
    color: #d8f2ff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.support-form input,
.support-form textarea,
.support-widget__form input,
.support-widget__form textarea {
    width: 100%;
    border: 1px solid rgba(1, 153, 244, 0.18);
    border-radius: 18px;
    background: rgba(3, 11, 23, 0.72);
    color: #fff;
    padding: 14px 16px;
    outline: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.support-form textarea,
.support-widget__form textarea {
    resize: vertical;
    min-height: 120px;
}

.support-form input[type="file"] {
    padding: 12px;
    line-height: 1.4;
}

.support-form button,
.support-widget__actions button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--launcher-primary), var(--launcher-primary-light));
    color: #fff;
    font-weight: 700;
    box-shadow: 0 12px 28px rgba(1, 153, 244, 0.22);
}

.support-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.support-links a,
.summary-link,
.support-widget__actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(1, 153, 244, 0.18);
    background: rgba(1, 153, 244, 0.08);
}

.support-rules + .support-rules {
    margin-top: 24px;
}

.support-rules ul {
    margin: 0;
    padding-left: 18px;
}

.ticket-list-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.ticket-list-card {
    text-decoration: none;
    transition: transform 0.18s ease, border-color 0.18s ease;
}

.ticket-list-card:hover,
.step-card:hover,
.faq-card:hover,
.media-card:hover,
.site-footer__service:hover,
.support-panel:hover {
    transform: translateY(-3px);
    border-color: rgba(1, 153, 244, 0.32);
}

.ticket-list-card__header,
.ticket-summary__row,
.ticket-message__meta,
.support-widget__header,
.support-widget__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.status-pill--open {
    background: rgba(38, 195, 121, 0.16);
    color: #6ff0ac;
}

.status-pill--waiting_player {
    background: rgba(1, 153, 244, 0.16);
    color: #8dddff;
}

.status-pill--resolved {
    background: rgba(255, 165, 0, 0.14);
    color: #ffd27d;
}

.ticket-thread {
    display: grid;
    gap: 16px;
    margin-bottom: 24px;
}

.ticket-message {
    padding: 18px 20px;
    border-radius: 20px;
    border: 1px solid rgba(1, 153, 244, 0.12);
    background: rgba(3, 11, 23, 0.66);
}

.ticket-message--launcher {
    border-color: rgba(1, 153, 244, 0.24);
    background: rgba(1, 153, 244, 0.1);
}

.ticket-message--support {
    border-color: rgba(38, 195, 121, 0.2);
    background: rgba(38, 195, 121, 0.08);
}

.ticket-message--system {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
}

.ticket-message__meta {
    margin-bottom: 10px;
    font-size: 13px;
    color: #cfeeff;
}

.ticket-message__details {
    display: grid;
    gap: 8px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(1, 153, 244, 0.12);
    color: var(--launcher-sub);
}

.ticket-message__log {
    margin-top: 14px;
}

.ticket-message__log pre {
    margin: 0;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(1, 153, 244, 0.12);
    background: rgba(0, 0, 0, 0.24);
    color: #dff4ff;
    white-space: pre-wrap;
    word-break: break-word;
}

.ticket-message__attachments {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.ticket-message__attachments a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(1, 153, 244, 0.18);
    background: rgba(1, 153, 244, 0.08);
    color: #9adbff;
}

.ticket-summary {
    display: grid;
    gap: 14px;
    margin-bottom: 24px;
}

.ticket-summary__row {
    padding: 12px 0;
    border-bottom: 1px solid rgba(1, 153, 244, 0.12);
}

.inline-alert {
    margin: 0 0 18px;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(1, 153, 244, 0.14);
    background: rgba(1, 153, 244, 0.07);
}

.inline-alert--error {
    border-color: rgba(255, 102, 102, 0.2);
    background: rgba(255, 102, 102, 0.08);
    color: #ffd0d0;
}

.site-footer {
    padding: 0 0 34px;
}

.site-footer .container {
    border: 1px solid var(--launcher-line);
    border-radius: 34px;
    background: rgba(3, 11, 23, 0.78);
    box-shadow: var(--launcher-shadow-strong);
    padding: 34px 34px 22px;
}

.site-footer__top {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(0, 2fr);
    gap: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(1, 153, 244, 0.12);
}

.site-footer__brand p {
    color: var(--launcher-sub);
    line-height: 1.75;
}

.site-footer__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.site-footer__badges span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid var(--launcher-line);
    background: rgba(1, 153, 244, 0.08);
    color: #9adbff;
    font-size: 12px;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.site-footer__column h4 {
    margin-bottom: 14px;
    font-size: 16px;
}

.site-footer__column ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer__column li + li {
    margin-top: 10px;
}

.site-footer__column a,
.site-footer__social a {
    color: var(--launcher-sub);
}

.site-footer__services {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin: 24px 0;
}

.site-footer__service {
    padding: 20px;
}

.site-footer__service strong {
    display: block;
    margin-bottom: 8px;
}

.site-footer__service span,
.site-footer__bottom span {
    color: var(--launcher-sub);
}

.site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-top: 8px;
}

.site-footer__social {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.support-widget {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 30;
}

.support-widget__button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    padding: 0;
    border: 1px solid rgba(1, 153, 244, 0.28);
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(1, 153, 244, 0.95), rgba(53, 181, 255, 0.95));
    color: #fff;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.3);
    transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.support-widget__button::after {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 24px;
    border: 1px solid rgba(1, 153, 244, 0.2);
    opacity: 0;
    transition: opacity 0.16s ease;
}

.support-widget__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 46px rgba(0, 0, 0, 0.35);
}

.support-widget__button:hover::after {
    opacity: 1;
}

.support-widget__button svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.25));
}

.support-widget__panel {
    position: absolute;
    right: 0;
    bottom: 72px;
    width: min(380px, calc(100vw - 32px));
    padding: 22px;
    border: 1px solid var(--launcher-line);
    border-radius: 26px;
    background: rgba(3, 11, 23, 0.96);
    box-shadow: var(--launcher-shadow-strong);
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.support-widget.is-open .support-widget__panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.support-widget__header {
    margin-bottom: 18px;
}

.support-widget__header p,
.support-widget__hint,
.support-widget__feedback {
    margin: 6px 0 0;
    color: var(--launcher-sub);
    line-height: 1.65;
}

.support-widget__close {
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 12px;
    background: rgba(1, 153, 244, 0.08);
    color: #fff;
    font-size: 22px;
}

.support-widget__form {
    display: grid;
    gap: 14px;
}

.support-widget__actions {
    align-items: stretch;
}

.support-widget__actions a,
.support-widget__actions button {
    flex: 1 1 0;
    text-align: center;
}

.support-widget__feedback.is-error {
    color: #ffd0d0;
}

.support-widget__feedback.is-success {
    color: #9be7b7;
}

@media (max-width: 1199.98px) {
    .site-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .support-grid,
    .support-grid--ticket,
    .site-footer__top,
    .site-footer__services,
    .ticket-list-grid,
    .faq-grid,
    .media-hub-grid,
    .clips-grid,
    .streamers-grid,
    .support-form__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991.98px) {
    .section-shell__heading {
        display: block;
    }

    .section-shell__heading p {
        margin-top: 14px;
    }

    .page-intro h1 {
        font-size: 36px;
    }

    .support-widget {
        right: 16px;
        bottom: 16px;
    }

    .site-footer .container {
        padding: 28px 20px 20px;
    }

    .site-footer__bottom {
        display: block;
    }

    .site-footer__social {
        margin-top: 12px;
    }
}

@media (max-width: 767.98px) {
    .hero-actions,
    .support-links,
    .media-card__links,
    .site-footer__badges {
        flex-direction: column;
    }

    .hero-actions a,
    .hero-actions__secondary,
    .support-links a,
    .support-widget__actions a,
    .support-widget__actions button {
        width: 100%;
    }

    .support-widget__panel {
        width: calc(100vw - 20px);
        right: -4px;
    }
}

.hero-actions--left {
    justify-content: flex-start;
}

.hero-actions__ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    padding: 16px 28px;
    border-radius: 16px;
    border: 1px dashed rgba(1, 153, 244, 0.28);
    background: rgba(255, 255, 255, 0.02);
    color: var(--launcher-text);
}

.promo--home {
    margin-bottom: 110px;
}

.hero-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    gap: 28px;
    align-items: stretch;
}

.hero-shell__main,
.hero-shell__side {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--launcher-line);
    border-radius: 34px;
    background: var(--launcher-card-soft);
    box-shadow: var(--launcher-shadow-strong);
}

.hero-shell__main {
    padding: 52px 46px;
}

.hero-shell__main::before,
.hero-shell__side::before,
.glance-card::before,
.ecosystem-card::before,
.faq-page__panel::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at top right, rgba(1, 153, 244, 0.18), transparent 30%),
        linear-gradient(145deg, rgba(1, 153, 244, 0.12), transparent 58%);
}

.hero-shell__main > *,
.hero-shell__side > *,
.glance-card > *,
.ecosystem-card > *,
.faq-page__panel > * {
    position: relative;
    z-index: 1;
}

.hero-shell__eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(1, 153, 244, 0.22);
    background: rgba(1, 153, 244, 0.08);
    color: #8dddff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-shell__main h1 {
    margin: 18px 0 18px;
    font-size: 64px;
    line-height: 0.98;
}

.hero-shell__main p {
    max-width: 720px;
    color: var(--launcher-sub);
    font-size: 17px;
    line-height: 1.9;
}

.hero-shell__side {
    display: grid;
    gap: 18px;
    padding: 28px;
}

.hero-side-card,
.hero-mini-card,
.glance-card,
.ecosystem-card,
.faq-page__panel {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(1, 153, 244, 0.12);
    border-radius: 24px;
    background: rgba(3, 11, 23, 0.46);
    padding: 24px;
}

.hero-side-card__tag,
.ecosystem-card__tag,
.faq-page__tag {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid rgba(1, 153, 244, 0.18);
    background: rgba(1, 153, 244, 0.08);
    color: #8dddff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-side-card h3,
.glance-card h3,
.ecosystem-card h3,
.faq-page__panel h3 {
    margin: 14px 0 12px;
}

.hero-side-card ul,
.faq-page__panel ul {
    margin: 0;
    padding-left: 18px;
    color: var(--launcher-sub);
    line-height: 1.8;
}

.hero-side-mini-grid,
.home-glance-grid,
.ecosystem-grid,
.faq-page__top {
    display: grid;
    gap: 18px;
}

.hero-side-mini-grid,
.ecosystem-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-glance-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 22px;
}

.glance-card span {
    display: inline-flex;
    margin-bottom: 10px;
    color: #83d8ff;
    font-size: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.glance-card h3,
.ecosystem-card p,
.faq-page__panel p {
    color: var(--launcher-sub);
    line-height: 1.75;
}

.ecosystem-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ecosystem-card a,
.faq-page__panel a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    margin-top: 18px;
    padding: 0 18px;
    border-radius: 16px;
    background: rgba(1, 153, 244, 0.08);
    border: 1px solid rgba(1, 153, 244, 0.2);
    color: #cfeeff;
}

.faq-grid--full {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.faq-card--page {
    padding-top: 56px;
}

.faq-card__index {
    position: absolute;
    top: 24px;
    right: 24px;
    color: rgba(131, 216, 255, 0.28);
    font-size: 34px;
    font-weight: 800;
    line-height: 1;
}

.faq-page__top {
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
}

.faq-page__panel--accent {
    background: linear-gradient(180deg, rgba(1, 153, 244, 0.14), rgba(4, 14, 27, 0.92));
}

@media (max-width: 1199.98px) {
    .hero-shell,
    .home-glance-grid,
    .ecosystem-grid,
    .faq-page__top {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991.98px) {
    .hero-shell__main {
        padding: 36px 26px;
    }

    .hero-shell__main h1 {
        font-size: 48px;
    }
}

@media (max-width: 767.98px) {
    .hero-actions__ghost {
        width: 100%;
    }
}

.home-hero-card {
    position: relative;
    overflow: hidden;
    padding: 52px 46px;
    border: 1px solid var(--launcher-line);
    border-radius: 34px;
    background: var(--launcher-card-soft);
    box-shadow: var(--launcher-shadow-strong);
}

.home-hero-card::before,
.home-quick-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at top right, rgba(1, 153, 244, 0.18), transparent 30%),
        linear-gradient(145deg, rgba(1, 153, 244, 0.12), transparent 58%);
}

.home-hero-card > *,
.home-quick-card > * {
    position: relative;
    z-index: 1;
}

.home-hero-card__eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(1, 153, 244, 0.22);
    background: rgba(1, 153, 244, 0.08);
    color: #8dddff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-hero-card h1 {
    margin: 18px 0 18px;
    font-size: 62px;
    line-height: 0.98;
}

.home-hero-card p {
    max-width: 820px;
    margin: 0 auto;
    color: var(--launcher-sub);
    font-size: 17px;
    line-height: 1.9;
}

.home-quick-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 22px;
}

.home-quick-card {
    position: relative;
    overflow: hidden;
    padding: 24px;
    border: 1px solid rgba(1, 153, 244, 0.12);
    border-radius: 24px;
    background: rgba(3, 11, 23, 0.46);
}

.home-quick-card span {
    display: inline-flex;
    margin-bottom: 10px;
    color: #83d8ff;
    font-size: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.home-quick-card h3 {
    margin: 0;
    color: var(--launcher-sub);
    line-height: 1.75;
    font-size: 21px;
}

@media (max-width: 1199.98px) {
    .home-quick-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991.98px) {
    .home-hero-card {
        padding: 36px 26px;
    }

    .home-hero-card h1 {
        font-size: 46px;
    }
}











/* Account dashboard (custom layout) */
.account-shell {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 30px;
    align-items: start;
}

.account-sidebar {
    position: sticky;
    top: 24px;
    padding: 22px;
    border-radius: 22px;
    border: 1px solid rgba(1, 153, 244, 0.16);
    background: rgba(6, 12, 22, 0.94);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
    display: grid;
    gap: 18px;
}

.account-sidebar__server {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 12px;
    border-radius: 16px;
    background: rgba(1, 153, 244, 0.08);
    border: 1px solid rgba(1, 153, 244, 0.16);
}

.account-sidebar__badge {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: rgba(1, 153, 244, 0.2);
    color: #9adbff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.account-sidebar__server strong {
    color: #e7f4ff;
    font-size: 14px;
}

.account-sidebar__server span {
    color: rgba(231, 244, 255, 0.65);
    font-size: 12px;
}

.account-nav-group {
    display: grid;
    gap: 8px;
}

.account-nav-title {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 6px;
}


.account-nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid transparent;
    background: rgba(7, 12, 22, 0.65);
    color: rgba(231, 244, 255, 0.7);
    text-decoration: none;
    transition: border-color 0.16s ease, background 0.16s ease, color 0.16s ease, transform 0.16s ease;
}

.account-nav-item--vehicle {
    background: rgba(1, 153, 244, 0.12);
    border-color: rgba(1, 153, 244, 0.32);
    color: #d7f1ff;
}
.account-nav-item.is-active,
.account-nav-item:hover {
    background: rgba(1, 153, 244, 0.2);
    border-color: rgba(1, 153, 244, 0.5);
    color: #ffffff;
    transform: translateX(2px);
}

.account-nav-item--danger {
    background: rgba(255, 87, 87, 0.14);
    border-color: rgba(255, 87, 87, 0.3);
    color: #ffb3b3;
}

.account-nav-item--danger:hover {
    background: rgba(255, 87, 87, 0.25);
    border-color: rgba(255, 87, 87, 0.5);
}

.account-content {
    display: grid;
    gap: 24px;
}

.account-greeting {
    font-size: 16px;
    color: var(--launcher-sub);
}


.account-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.account-tab {
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(16, 18, 28, 0.88);
    color: rgba(255, 255, 255, 0.75);
    border-radius: 999px;
    padding: 10px 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: 0.2s ease;
}

.account-tab__icon {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
}

.account-tab__icon svg {
    width: 18px;
    height: 18px;
}

.account-tab__label {
    font-size: 13px;
    font-weight: 600;
}

.account-tab:hover {
    border-color: rgba(255, 112, 67, 0.5);
    color: #fff3ed;
}

.account-tab.is-active {
    background: rgba(255, 112, 67, 0.2);
    border-color: rgba(255, 112, 67, 0.6);
    color: #fff3ed;
}

.account-tab.is-active .account-tab__icon {
    color: #fff3ed;
}

.account-tab-panels {
    display: grid;
    gap: 20px;
}

.account-tab-panel {
    display: none;
    gap: 20px;
}

.account-tab-panel.is-active {
    display: grid;
}
.account-top {
    display: grid;
    grid-template-columns: minmax(0, 360px) minmax(0, 1fr);
    gap: 22px;
    align-items: start;
}

.account-profile-card {
    padding: 24px;
    border-radius: 24px;
    background:
        radial-gradient(circle at top right, rgba(1, 153, 244, 0.22), transparent 46%),
        rgba(7, 12, 22, 0.96);
    color: #e9f5ff;
    border: 1px solid rgba(1, 153, 244, 0.18);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
}

.account-profile-card__header {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
}

.account-avatar {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    border: 1px solid rgba(1, 153, 244, 0.2);
    background: rgba(1, 153, 244, 0.16);
    color: #e9f5ff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 700;
    text-transform: uppercase;
    overflow: hidden;
}

.account-avatar--photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.account-profile-card .account-login,
.account-profile-card span {
    color: rgba(233, 245, 255, 0.75);
}

.account-profile-card .account-login span {
    color: #ffffff;
}

.account-profile-card__meta {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.account-profile-card__meta div {
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(1, 153, 244, 0.08);
    border: 1px solid rgba(1, 153, 244, 0.14);
}

.account-profile-card__meta span {
    display: block;
    font-size: 12px;
    color: rgba(233, 245, 255, 0.7);
}

.account-profile-card__meta strong {
    color: #ffffff;
}

.account-profile-card__footer {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 12px;
    color: rgba(233, 245, 255, 0.75);
}

.account-profile-card__footer span {
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(1, 153, 244, 0.14);
    background: rgba(255, 255, 255, 0.05);
}

.account-profile-card__actions {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(1, 153, 244, 0.12);
    display: grid;
    gap: 12px;
}

.account-profile-card__actions-title {
    font-weight: 700;
}

.account-profile-card__actions-note {
    margin: 0;
    color: rgba(233, 245, 255, 0.7);
    font-size: 13px;
}

.account-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.account-stat-card {
    position: relative;
    padding: 16px;
    border-radius: 18px;
    background: rgba(8, 12, 22, 0.92);
    border: 1px solid rgba(1, 153, 244, 0.16);
    min-height: 110px;
    display: grid;
    gap: 8px;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.28);
    overflow: hidden;
}

.account-stat-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(1, 153, 244, 0.12), transparent 55%);
    opacity: 0.7;
}

.account-stat-card > * {
    position: relative;
    z-index: 1;
}

.account-stat-card span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
}

.account-stat-card strong {
    font-size: 18px;
    color: #fff;
}

.account-stat-card--green { border-color: rgba(76, 175, 80, 0.5); }
.account-stat-card--blue { border-color: rgba(33, 150, 243, 0.5); }
.account-stat-card--cyan { border-color: rgba(0, 188, 212, 0.5); }
.account-stat-card--purple { border-color: rgba(156, 39, 176, 0.5); }
.account-stat-card--orange { border-color: rgba(255, 152, 0, 0.5); }
.account-stat-card--teal { border-color: rgba(0, 150, 136, 0.5); }

.account-section-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.account-card {
    padding: 22px;
    border-radius: 22px;
    background: rgba(7, 12, 22, 0.9);
    border: 1px solid rgba(1, 153, 244, 0.14);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.26);
}

.account-card h2 {
    font-size: 18px;
    margin-bottom: 12px;
}

.account-card--compact {
    padding: 14px;
}

.account-card--compact .account-card__head {
    gap: 6px;
    margin-bottom: 10px;
}

.account-card--compact .account-card__head h2 {
    font-size: 16px;
}

.account-card--compact .customization-preview {
    padding: 8px 10px;
    margin-bottom: 10px;
}

.account-card--compact .account-customize-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.account-card--compact .account-customize-form button {
    grid-column: 1 / -1;
}

.account-card--compact .account-customize-form label {
    font-size: 11px;
}

.account-card--compact .account-customize-form input,
.account-card--compact .account-customize-form select {
    padding: 6px 10px;
}

.account-card--compact .account-primary {
    min-height: 34px;
    font-size: 12px;
}

@media (max-width: 720px) {
    .account-card--compact .account-customize-form {
        grid-template-columns: 1fr;
    }
}

.stat-row {
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.6);
    padding: 4px 0;
}

.stat-row strong {
    color: #ffffff;
}

.stat-bar {
    margin-bottom: 10px;
}

.stat-bar__track {
    position: relative;
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.stat-bar__fill {
    position: absolute;
    inset: 0;
    width: 0;
    border-radius: inherit;
}

.stat-bar__fill--health {
    background: linear-gradient(90deg, rgba(46, 204, 113, 0.9), rgba(29, 209, 161, 0.9));
}

.stat-bar__fill--armor {
    background: linear-gradient(90deg, rgba(1, 153, 244, 0.9), rgba(79, 194, 255, 0.9));
}

.account-avatar-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.account-avatar-form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.account-avatar-picker {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid rgba(1, 153, 244, 0.3);
    background: rgba(1, 153, 244, 0.12);
    color: #e7f4ff;
    cursor: pointer;
}

.account-avatar-actions button {
    min-height: 38px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(1, 153, 244, 0.22);
    background: rgba(1, 153, 244, 0.18);
    color: #ffffff;
}

.account-avatar-actions .account-link {
    border: 0;
    background: transparent;
    color: #9adbff;
    padding: 0 6px;
}

.account-avatar-picker:hover {
    border-color: rgba(1, 153, 244, 0.5);
    background: rgba(1, 153, 244, 0.2);
}

.account-avatar-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 20px;
    border-radius: 999px;
    border: 0;
    background: linear-gradient(135deg, var(--launcher-primary), var(--launcher-primary-light));
    color: #ffffff;
    font-weight: 700;
    box-shadow: 0 12px 26px rgba(1, 153, 244, 0.28);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.account-avatar-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 32px rgba(1, 153, 244, 0.32);
}

.account-avatar-picker input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

@media (max-width: 1200px) {
    .account-top {
        grid-template-columns: 1fr;
    }

    .account-stat-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .account-shell {
        grid-template-columns: 1fr;
    }

    .account-sidebar {
        position: static;
    }

    .account-section-grid {
        grid-template-columns: 1fr;
    }
}

.account-card--vehicles {\n    margin-top: 0;\n}

.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 16px;
}

.vehicle-card {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(16, 18, 28, 0.95);
    display: grid;
    gap: 10px;
}

.vehicle-thumb {\n    width: 100%;\n    height: 140px;\n    display: flex;\n    align-items: center;\n    justify-content: center;\n    background: radial-gradient(circle at top, rgba(255, 255, 255, 0.06), rgba(5, 8, 16, 0.9));\n    border-bottom: 1px solid rgba(255, 255, 255, 0.08);\n    padding: 10px;\n}


.vehicle-title {
    display: flex;
    align-items: center;
    gap: 8px;
}

.vehicle-meta strong {
    color: #ffffff;
    font-size: 14px;
}

.account-section-grid--wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 18px;
}

.account-section-grid--single {
    grid-template-columns: 1fr;
    margin-top: 18px;
}

.account-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.account-card__hint {
    color: var(--launcher-sub);
    font-size: 12px;
}

.progress-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.progress-block {
    padding: 14px;
    border-radius: 18px;
    border: 1px solid rgba(1, 153, 244, 0.14);
    background: rgba(4, 10, 20, 0.7);
    display: grid;
    gap: 10px;
}

.progress-title {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(231, 244, 255, 0.7);
}

.progress-value {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
}

.progress-bar {
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.progress-bar span {
    display: block;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #4eb9ff, #57ffd1);
    border-radius: inherit;
}

.progress-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 12px;
    color: rgba(231, 244, 255, 0.65);
}

.progress-list {
    display: grid;
    gap: 10px;
}

.progress-item {
    display: grid;
    gap: 6px;
}

.progress-item__row {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    font-size: 12px;
    color: rgba(231, 244, 255, 0.8);
}

.progress-item__bar {
    height: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.progress-item__bar span {
    display: block;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, rgba(1, 153, 244, 0.95), rgba(130, 97, 255, 0.95));
    border-radius: inherit;
}

.progress-item__meta {
    font-size: 11px;
    color: rgba(231, 244, 255, 0.55);
}

.achievement-summary {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(231, 244, 255, 0.65);
}

.achievement-summary strong {
    font-size: 20px;
    color: #ffffff;
}

.achievement-percent {
    margin-left: auto;
    font-weight: 700;
    color: #57ffd1;
}

.achievement-list {
    display: grid;
    gap: 8px;
}

.achievement-item {
    padding: 8px 10px;
    border-radius: 14px;
    border: 1px solid rgba(1, 153, 244, 0.12);
    background: rgba(1, 153, 244, 0.08);
    display: grid;
    gap: 4px;
}

.achievement-item strong {
    font-size: 13px;
    color: #ffffff;
}

.achievement-item span {
    font-size: 11px;
    color: rgba(231, 244, 255, 0.65);
}

@media (max-width: 1200px) {
    .progress-grid {
        grid-template-columns: 1fr;
    }
}

.customization-preview {
    display: grid;
    gap: 8px;
    padding: 14px;
    border-radius: 18px;
    border: 1px solid rgba(1, 153, 244, 0.16);
    background: rgba(1, 153, 244, 0.08);
    margin-bottom: 14px;
}

.customization-preview__name {
    font-size: 18px;
    font-weight: 700;
}

.customization-preview__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.profile-chip {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid rgba(1, 153, 244, 0.2);
    background: rgba(1, 153, 244, 0.12);
    font-size: 12px;
    color: #d7f1ff;
}

.profile-chip--badge {
    border-color: rgba(255, 193, 7, 0.35);
    color: #ffe7a3;
}

.profile-chip--tag {
    border-color: rgba(79, 194, 255, 0.4);
    color: #bfe8ff;
}

.profile-muted {
    color: rgba(231, 244, 255, 0.6);
    font-size: 12px;
}

.account-customize-form {
    display: grid;
    gap: 12px;
}

.account-customize-form label {
    display: grid;
    gap: 6px;
    font-size: 13px;
    color: #d8f2ff;
}

.account-customize-form input,
.account-customize-form select {
    width: 100%;
    border: 1px solid rgba(1, 153, 244, 0.18);
    border-radius: 14px;
    background: rgba(3, 11, 23, 0.72);
    color: #fff;
    padding: 10px 12px;
    outline: none;
}

.account-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    border: 0;
    background: linear-gradient(135deg, var(--launcher-primary), var(--launcher-primary-light));
    color: #ffffff;
    font-weight: 700;
    box-shadow: 0 12px 26px rgba(1, 153, 244, 0.28);
}

.account-primary--ghost {
    background: rgba(1, 153, 244, 0.14);
    border: 1px solid rgba(1, 153, 244, 0.25);
    box-shadow: none;
}

.bindings-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 18px;
}

.binding-card {
    padding: 14px;
    border-radius: 16px;
    border: 1px solid rgba(1, 153, 244, 0.16);
    background: rgba(3, 11, 23, 0.65);
    display: grid;
    gap: 8px;
}

.binding-card__title {
    font-weight: 700;
}

.binding-card__value {
    font-size: 16px;
    color: #d7f1ff;
}

.binding-card__value--muted {
    color: rgba(231, 244, 255, 0.6);
}

.binding-card__meta {
    font-size: 12px;
    color: rgba(231, 244, 255, 0.7);
}

.binding-card__meta span {
    color: #ffffff;
}

.binding-form {
    display: grid;
    gap: 10px;
}

.binding-form label {
    display: grid;
    gap: 6px;
    font-size: 12px;
    color: #d8f2ff;
}

.binding-form input {
    width: 100%;
    border: 1px solid rgba(1, 153, 244, 0.18);
    border-radius: 14px;
    background: rgba(3, 11, 23, 0.72);
    color: #fff;
    padding: 10px 12px;
    outline: none;
}

.device-panel {
    margin-top: 12px;
    display: grid;
    gap: 12px;
}

.device-panel__title {
    font-weight: 700;
}

.device-list {
    display: grid;
    gap: 10px;
}

.device-row {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 12px;
    padding: 12px;
    border-radius: 16px;
    border: 1px solid rgba(1, 153, 244, 0.14);
    background: rgba(3, 11, 23, 0.7);
    align-items: center;
}

.device-row__info {
    display: grid;
    gap: 4px;
    font-size: 12px;
    color: rgba(231, 244, 255, 0.7);
}

.device-row__info strong {
    color: #fff;
    font-size: 13px;
}

.device-row__meta {
    display: grid;
    gap: 6px;
    text-align: right;
    font-size: 12px;
    color: rgba(231, 244, 255, 0.7);
}

.device-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 22px;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.device-status.is-trusted {
    background: rgba(38, 195, 121, 0.18);
    color: #9be7b7;
}

.device-status.is-new {
    background: rgba(255, 193, 7, 0.18);
    color: #ffe7a3;
}

.punishment-list {
    display: grid;
    gap: 10px;
}

.punishment-row {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding: 12px;
    border-radius: 16px;
    border: 1px solid rgba(1, 153, 244, 0.14);
    background: rgba(3, 11, 23, 0.7);
}

.punishment-type {
    min-width: 80px;
    text-align: center;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.punishment-type--ban {
    background: rgba(255, 87, 87, 0.2);
    color: #ffc2c2;
}

.punishment-type--mute {
    background: rgba(255, 193, 7, 0.2);
    color: #ffe7a3;
}

.punishment-type--warn {
    background: rgba(1, 153, 244, 0.2);
    color: #bfe8ff;
}

.punishment-type--kick {
    background: rgba(156, 39, 176, 0.2);
    color: #e7c7ff;
}

.punishment-info {
    display: grid;
    gap: 4px;
    font-size: 12px;
    color: rgba(231, 244, 255, 0.7);
}

.punishment-info strong {
    color: #fff;
    font-size: 13px;
}

.punishment-meta {
    font-size: 12px;
    color: rgba(231, 244, 255, 0.6);
}

.property-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 12px 0 16px;
}

.property-filter {
    border-radius: 999px;
    border: 1px solid rgba(1, 153, 244, 0.2);
    background: rgba(1, 153, 244, 0.08);
    color: #d7f1ff;
    padding: 6px 14px;
    cursor: pointer;
}

.property-filter.is-active {
    background: rgba(1, 153, 244, 0.22);
    border-color: rgba(1, 153, 244, 0.45);
    color: #ffffff;
}

.property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 8px;
}

.property-card {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(1, 153, 244, 0.14);
    background: rgba(10, 12, 18, 0.9);
    display: grid;
    gap: 10px;
}

.property-thumb {
    padding: 18px;
    display: grid;
    gap: 6px;
    border-bottom: 1px solid rgba(1, 153, 244, 0.1);
    background: radial-gradient(circle at top, rgba(1, 153, 244, 0.18), rgba(5, 8, 16, 0.9));
    color: #e7f4ff;
}

.property-thumb strong {
    font-size: 16px;
}

.property-thumb--villa {
    background: radial-gradient(circle at top, rgba(255, 193, 7, 0.16), rgba(5, 8, 16, 0.9));
}

.property-thumb--house {
    background: radial-gradient(circle at top, rgba(0, 188, 212, 0.18), rgba(5, 8, 16, 0.9));
}

.property-thumb--business {
    background: radial-gradient(circle at top, rgba(38, 195, 121, 0.18), rgba(5, 8, 16, 0.9));
}

.property-meta {
    padding: 0 16px 16px;
    display: grid;
    gap: 6px;
    font-size: 12px;
    color: rgba(231, 244, 255, 0.7);
}

.property-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.property-title strong {
    color: #ffffff;
    font-size: 14px;
}

.property-status {
    padding: 4px 8px;
    border-radius: 999px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.property-status--active {
    background: rgba(38, 195, 121, 0.18);
    color: #9be7b7;
}

.property-status--sale {
    background: rgba(255, 193, 7, 0.2);
    color: #ffe7a3;
}

.account-avatar--frame-blue {
    box-shadow: 0 0 0 2px rgba(1, 153, 244, 0.6), 0 0 18px rgba(1, 153, 244, 0.4);
}

.account-avatar--frame-gold {
    box-shadow: 0 0 0 2px rgba(255, 193, 7, 0.6), 0 0 18px rgba(255, 193, 7, 0.35);
}

.account-avatar--frame-neon {
    box-shadow: 0 0 0 2px rgba(156, 39, 176, 0.7), 0 0 20px rgba(156, 39, 176, 0.45);
}

.account-avatar--frame-storm {
    box-shadow: 0 0 0 2px rgba(79, 194, 255, 0.7), 0 0 20px rgba(79, 194, 255, 0.5);
}

@media (max-width: 991px) {
    .bindings-grid,
    .account-section-grid--wide {
        grid-template-columns: 1fr;
    }
}







.vehicle-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

