:root {
    --bg: #06060f;
    --bg-soft: #0b0b18;
    --bg-card: #10101f;
    --border: #24243a;
    --text: #ffffff;
    --text-muted: #9a99b3;
    --purple: #a855f7;
    --blue: #4f46e5;
    --gradient: linear-gradient(90deg, var(--blue), var(--purple));
    --gradient-soft: linear-gradient(135deg, rgba(79,70,229,0.18), rgba(168,85,247,0.18));
    --token-color: #10b981;
    --danger: #e53935;
    --success: #34d399;
    --radius: 12px;
    --max-width: 1280px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    background: var(--bg);
    max-width: 100%;
}

body {
    max-width: 100%;
    overflow-x: clip;
}

.page-loader {
    position: fixed;
    inset: 0;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.4s ease;
}

.loader-box {
    text-align: center;
}

.loader-spinner {
    width: 44px;
    height: 44px;
    margin: 0 auto;
    border-radius: 50%;
    border: 4px solid var(--border);
    border-top: 4px solid var(--blue);
    border-right: 4px solid var(--purple);
    animation: loader-spin 0.85s linear infinite;
}

@keyframes loader-spin {
    to {
        transform: rotate(360deg);
    }
}

body {
    background: transparent;
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    line-height: 1.6;
    font-size: 16px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding-bottom: 0;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(168, 85, 247, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(168, 85, 247, 0.055) 1px, transparent 1px);
    background-size: 58px 58px;
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 42%, transparent 88%);
    mask-image: linear-gradient(180deg, #000 0%, #000 42%, transparent 88%);
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(760px 560px at 50% -90px, rgba(120, 70, 230, 0.24), transparent 68%),
        radial-gradient(520px 420px at 105% 380px, rgba(168, 85, 247, 0.15), transparent 70%),
        radial-gradient(460px 380px at -8% 620px, rgba(79, 70, 229, 0.14), transparent 70%);
}

.nv-stars {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.nv-star {
    position: absolute;
    border-radius: 50%;
    background: #fff;
    animation: nvTwinkle 4s ease-in-out infinite;
}

@keyframes nvTwinkle {
    0%, 100% {
        opacity: 0.12;
        transform: scale(1);
    }
    50% {
        opacity: 0.85;
        transform: scale(1.5);
    }
}

.nv-shoot {
    position: absolute;
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.75), transparent);
    animation: nvShoot 8s linear infinite;
}

@keyframes nvShoot {
    0% {
        transform: translate(-140px, -60px) rotate(28deg);
        opacity: 0;
    }
    4% {
        opacity: 1;
    }
    16% {
        transform: translate(560px, 240px) rotate(28deg);
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

body::before,
body::after,
.nv-stars {
    z-index: -1;
}

@media (prefers-reduced-motion: reduce) {
    .nv-star,
    .nv-shoot {
        animation: none;
    }

    .nv-star {
        opacity: 0.4;
    }

    .nv-shoot {
        display: none;
    }
}

a {
    color: var(--text);
    text-decoration: none;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding-left: 16px;
    padding-right: 16px;
}

.navbar {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    letter-spacing: -0.1px;
    background: var(--bg-soft);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar-inner {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.navbar-inner .logo {
    order: 1;
}

.logo svg,
.loader-logo svg {
    flex-shrink: 0;
    filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.4));
}

.loader-logo {
    margin: 0 auto 18px;
    display: flex;
    justify-content: center;
    filter: drop-shadow(0 0 20px rgba(168, 85, 247, 0.4));
}

.nav-utility {
    order: 3;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    flex-shrink: 0;
    gap: 10px;
}

.nav-icons-group {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    flex-shrink: 0;
    gap: 10px;
}

@media (max-width: 899px) {
    .nav-contact-top svg {
        display: none;
    }

    .navbar-inner {
        flex-wrap: wrap;
        row-gap: 0;
    }

    .navbar-inner .logo {
        order: 1;
        min-width: 0;
        flex: 0 1 auto;
    }

    .nav-utility {
        order: 2;
        margin-left: auto;
        flex-wrap: nowrap;
        flex-shrink: 0;
    }

    .nav-links-wrap {
        order: 3;
        width: 100%;
        flex: 0 0 100%;
        padding-top: 6px;
        margin-top: 4px;
    }

    .nav-links-wrap::before {
        display: block;
    }

    .navbar.is-logged-in .logo-text {
        display: none;
    }
}

@media (max-width: 640px) {
    .navbar-inner .logo-text {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 130px;
    }

    .nav-utility {
        gap: 6px;
    }

    .account-switch-trigger {
        width: 44px;
        height: 44px;
        padding: 0;
        border-radius: 50%;
        justify-content: center;
    }

    .account-switch-trigger span,
    .account-switch-trigger .chev {
        display: none;
    }

    .account-switch-trigger svg:not(.chev) {
        width: 38px !important;
        height: 38px !important;
    }

    .lang-current {
        padding: 8px;
        gap: 0;
        width: 44px;
        height: 44px;
        justify-content: center;
    }

    .lang-current svg {
        width: 38px !important;
        height: 38px !important;
    }

    .lang-current-text {
        display: none;
    }

    .notif-bell {
        width: 44px;
        height: 44px;
    }

    .notif-bell svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .logo-text-second {
        display: none;
    }
}

@media (max-width: 430px) {
    .navbar-inner .logo-text {
        display: none;
    }

    .nav-utility {
        gap: 5px;
    }

    .nav-icons-group {
        gap: 5px;
    }

    .nav-contact-highlight {
        font-size: 12px;
        padding: 6px 11px !important;
        gap: 4px;
    }

    .nav-contact-highlight svg {
        width: 14px !important;
        height: 14px !important;
    }

    .account-switch-trigger,
    .lang-current,
    .notif-bell {
        width: 34px;
        height: 34px;
    }

    .account-switch-trigger svg:not(.chev),
    .lang-current svg {
        width: 13px !important;
        height: 13px !important;
    }

    .notif-bell svg {
        width: 13px;
        height: 13px;
    }

    .account-switch-trigger,
    .lang-current {
        padding: 0;
    }

    .account-switch-trigger,
    .lang-current,
    .notif-bell,
    .nav-contact-highlight {
        flex-shrink: 0;
    }

    .account-switch-trigger svg,
    .lang-current svg,
    .notif-bell svg,
    .nav-contact-highlight svg {
        flex-shrink: 0;
    }

    .nav-links {
        font-size: 12.5px;
        gap: 14px;
    }

    .nav-links a svg,
    .nav-links .nav-cat-toggle svg {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 380px) {
    .navbar-inner .logo-text {
        max-width: 80px;
        font-size: 14px;
    }

    .navbar-inner .logo svg {
        width: 28px;
        height: 28px;
    }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 13.5px;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.nav-links::-webkit-scrollbar {
    display: none;
}

.nav-links-wrap {
    order: 2;
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 0;
    position: relative;
    margin: 0 6px;
}

.nav-links-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.55) 15%, rgba(168, 85, 247, 0.55) 85%, transparent);
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.35);
    display: none;
}

.nav-links-wrap .nav-links {
    order: unset;
    width: auto;
    flex: 0 1 auto;
    justify-content: center;
    min-width: 0;
    padding-top: 0;
    margin-top: 0;
}

@media (max-width: 899px) {
    .nav-links-wrap .nav-links {
        justify-content: flex-start;
        flex: 1 1 auto;
        scroll-padding-left: 0;
    }

    .nav-links-wrap {
        justify-content: flex-start;
    }

    .nav-links-scroll-btn {
        display: none;
    }

    .nav-links-scroll-btn.visible {
        display: flex;
    }
}

.nav-links-wrap .nav-links::before {
    display: none;
}

.nav-links-scroll-btn {
    display: flex;
    visibility: hidden;
    opacity: 0;
    align-items: center;
    justify-content: center;
    width: 26px;
    min-width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--bg-soft);
    color: var(--text);
    flex-shrink: 0;
    cursor: pointer;
    transition: opacity 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.nav-links-scroll-btn:hover {
    border-color: var(--purple);
    color: var(--purple);
}

.nav-links-scroll-btn.visible {
    visibility: visible;
    opacity: 1;
}

.nav-links a,
.nav-links .nav-cat-link,
.nav-links .nav-cat-drop {
    flex-shrink: 0;
}

.nav-links-left {
    margin-left: 0;
    flex: 1 1 auto;
    min-width: 0;
}

.nav-links a,
.nav-links .nav-cat-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    white-space: nowrap;
    font-weight: 500;
}

.nav-links a svg,
.nav-links .nav-cat-toggle svg {
    width: 16px;
    height: 16px;
}

.nav-links a:hover,
.nav-links a.active,
.nav-links .nav-cat-toggle:hover,
.nav-links .nav-cat-toggle.active {
    color: var(--text);
    font-weight: 600;
}

.nav-links-wrap .nav-links {
    position: relative;
    padding-bottom: 0;
}



.nav-links-wrap .nav-links a,
.nav-links-wrap .nav-links .nav-cat-toggle {
    position: relative;
    transition: color 0.25s ease, text-shadow 0.25s ease;
}

.nav-links-wrap .nav-links a:hover,
.nav-links-wrap .nav-links .nav-cat-toggle:hover {
    color: #fff;
    text-shadow: 0 0 12px rgba(168, 85, 247, 0.55);
}

.nav-links-wrap .nav-links a:hover svg,
.nav-links-wrap .nav-links .nav-cat-toggle:hover svg {
    filter: drop-shadow(0 0 6px rgba(168, 85, 247, 0.6));
}

.nav-links-wrap .nav-links a.active,
.nav-links-wrap .nav-links .nav-cat-toggle.active {
    color: #fff;
}

.nav-links-wrap .nav-links a.active::after,
.nav-links-wrap .nav-links .nav-cat-toggle.active::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -6px;
    width: 60%;
    height: 2px;
    border-radius: 2px;
    background: var(--purple);
}

.nav-contact-highlight {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.5;
    padding: 7px 16px !important;
    border-radius: 30px;
    border: 1px solid rgba(168, 85, 247, 0.4);
    background: rgba(168, 85, 247, 0.1);
    color: var(--purple) !important;
}

.nav-contact-top {
    order: -1;
}

.nav-contact-highlight:hover {
    background: var(--gradient);
    border-color: transparent;
    color: #fff !important;
}

.nav-pill {
    display: flex;
    align-items: center;
    background: var(--gradient);
    color: #fff !important;
    padding: 7px 16px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.5;
    white-space: nowrap;
    border: 1px solid transparent;
}

.lang-switch {
    position: relative;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-family: inherit;
    color: var(--text-muted);
    cursor: pointer;
}

.lang-menu {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    min-width: 100px;
    z-index: 50;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4), 0 0 30px rgba(168, 85, 247, 0.1);
}

.lang-switch.open .lang-menu {
    display: block;
}

.lang-menu a {
    display: block;
    padding: 10px 16px;
    font-size: 13px;
    color: var(--text-muted);
}

.lang-menu a:hover,
.lang-menu a.active {
    background: var(--bg-soft);
    color: var(--text);
}

.account-switch {
    position: relative;
    display: flex;
    align-items: center;
}

.account-switch-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient);
    color: #fff;
    border: none;
    padding: 9px 16px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: box-shadow 0.2s ease;
}

.account-switch-trigger:hover,
.account-switch.open .account-switch-trigger {
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.25);
}

.account-switch-trigger .chev {
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.account-switch.open .account-switch-trigger .chev {
    transform: rotate(180deg);
}

.account-menu {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    background: var(--bg-card);
    border: 1px solid rgba(168, 85, 247, 0.25);
    border-radius: 16px;
    overflow: hidden;
    min-width: 240px;
    z-index: 20;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4), 0 0 30px rgba(168, 85, 247, 0.1);
    padding: 6px;
}

@media (max-width: 640px) {
    .account-menu {
        position: fixed;
        left: auto;
        right: 12px;
        min-width: 240px;
        width: auto;
        max-width: calc(100vw - 24px);
    }
}

.account-switch.open .account-menu {
    display: block;
}

.account-menu-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    color: var(--text);
}

.account-menu-balance {
    margin-bottom: 6px;
}

.account-menu-item.active {
    background: var(--gradient-soft);
    box-shadow: inset 0 0 0 1px rgba(168, 85, 247, 0.35);
}

.account-menu-item.active .account-menu-title {
    color: var(--purple);
}

.account-menu-balance.active .account-menu-title {
    color: var(--success);
}

.account-menu-balance .account-menu-title {
    color: var(--success);
    font-size: 15px;
}

.account-menu-item + .account-menu-item {
    margin-top: 2px;
}

.account-menu-item:hover {
    background: var(--bg-soft);
}

.account-menu-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: var(--gradient-soft);
    color: var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.account-menu-title {
    display: block;
    font-size: 13px;
    font-weight: 700;
}

.account-menu-sub {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 2px;
}

.account-menu-item.danger .account-menu-icon {
    color: var(--danger);
    background: rgba(229, 57, 53, 0.12);
}

.account-menu-item.danger .account-menu-title {
    color: var(--danger);
}

.notif-switch {
    position: relative;
    display: flex;
    align-items: center;
}

.notif-bell {
    position: relative;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.notif-bell:hover {
    color: var(--text);
    border-color: rgba(168, 85, 247, 0.4);
}

.notif-dot {
    position: absolute;
    top: -4px;
    right: -4px;
    width: auto;
    height: auto;
    min-width: 16px;
    line-height: 1;
    padding: 3px 4px;
    border-radius: 8px;
    background: var(--purple);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 2px var(--bg-card);
    z-index: 2;
    box-sizing: border-box;
}

.notif-dot[hidden] {
    display: none;
}

.notif-menu {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    background: var(--bg-card);
    border: 1px solid rgba(168, 85, 247, 0.25);
    border-radius: 16px;
    overflow: hidden;
    width: 320px;
    max-width: 85vw;
    z-index: 20;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4), 0 0 30px rgba(168, 85, 247, 0.1);
}

@media (max-width: 640px) {
    .notif-menu {
        position: fixed;
        left: auto;
        right: 12px;
        width: 300px;
        max-width: calc(100vw - 24px);
    }
}

.notif-switch.open .notif-menu {
    display: block;
}

.notif-menu-header {
    padding: 14px 16px;
    font-weight: 700;
    font-size: 14px;
    border-bottom: 1px solid var(--border);
}

.notif-menu-list {
    max-height: 320px;
    overflow-y: auto;
}

@media (max-width: 640px) {
    .notif-menu-list {
        max-height: 220px;
    }
}

.notif-item {
    display: flex;
    gap: 10px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
}

.notif-item:last-child {
    border-bottom: none;
}

.notif-item.unread {
    background: rgba(168, 85, 247, 0.06);
}

.notif-item-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: var(--gradient-soft);
    color: var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.notif-item-title {
    font-size: 13px;
    font-weight: 700;
}

.notif-item-title-success {
    color: var(--success);
}

.notif-item-message {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
}

.notif-item-time {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 4px;
}

.notif-empty {
    padding: 24px 16px;
    text-align: center;
    color: var(--text-muted);
    font-size: 13px;
}

.theme-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 13px;
    color: var(--text-muted);
}

main {
    flex: 1 0 auto;
    padding: 6px 16px;
    padding-bottom: 40px;
    width: 100%;
    box-sizing: border-box;
}

.site-footer {
    background: var(--bg-soft);
    border-top: 1px solid var(--border);
    padding: 14px 16px;
    color: var(--text-muted);
    font-size: 13px;
    box-sizing: border-box;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.footer-copy {
    margin: 0;
    color: var(--text);
    font-weight: 700;
    font-size: 11px;
}

.footer-support {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.support-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(52, 211, 153, 0.12);
    color: var(--success);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.support-text {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1.3;
}

.support-text strong {
    color: var(--text);
    font-size: 11px;
}

.support-text span {
    font-size: 10px;
    color: var(--text-muted);
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    flex-shrink: 0;
    overflow: hidden;
}

.social-icon svg {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.footer-crypto {
    display: flex;
    align-items: center;
    gap: 8px;
}

.crypto-label {
    font-size: 11px;
    color: var(--text);
    font-weight: 700;
    margin-right: 4px;
}

.crypto-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.crypto-icon svg {
    display: block;
}

.balance-icon {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    background: var(--gradient);
    border-radius: 50%;
    box-sizing: border-box;
    padding: 7px;
    box-shadow: 0 0 14px rgba(168, 85, 247, 0.35);
}

.balance-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.payment-option-disabled .balance-icon {
    box-shadow: none;
}

.footer-crypto .crypto-icon svg,
.footer-crypto .crypto-icon img {
    display: block;
    width: 19px;
    height: 19px;
}

@media (max-width: 899px) {
    .footer-support {
        display: none;
    }

    .site-footer {
        padding: 10px 12px;
    }

    .footer-copy {
        font-size: 11px;
    }

    .crypto-label {
        font-size: 11px;
    }

    .footer-crypto .crypto-icon svg {
        width: 18px;
        height: 18px;
    }

    .footer-crypto .crypto-icon img {
        width: 18px !important;
        height: 18px !important;
    }
}

@media (min-width: 900px) {
    .footer-inner {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
        text-align: left;
    }

    .footer-support {
        justify-self: start;
    }

    .footer-copy {
        justify-self: center;
        white-space: nowrap;
    }

    .footer-crypto {
        justify-self: end;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--gradient);
    color: #fff;
    border: none;
    padding: 13px 24px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
}

.btn:hover {
    opacity: 0.9;
}

.btn-loading {
    opacity: 0.75;
    pointer-events: none;
    cursor: default;
}

.btn-outline {
    background: var(--bg-card);
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-danger {
    background: var(--danger);
    color: #fff;
}

.product-media-actions {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}

.product-media-actions .btn {
    flex: 1;
    justify-content: center;
}

.page-title {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 6px;
}

.page-subtitle {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.grid-products {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    border-color: var(--purple);
}

.product-card img,
.product-card-noimage {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: contain;
    background: var(--gradient-soft);
    display: block;
    transition: transform 0.35s ease;
}

.product-card:hover img {
    transform: scale(1.08);
}

.product-card-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.product-card-title {
    font-size: 16px;
    font-weight: 700;
    min-height: 42px;
    line-height: 1.3;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
}

.product-card-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border) 15%, var(--border) 85%, transparent);
    margin-bottom: 0;
}

.product-card-actions {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 10px;
    margin-top: auto;
    flex-wrap: wrap;
}

.product-card-actions .btn {
    flex: 1;
    justify-content: center;
    padding: 6px 10px;
    font-size: 12.5px;
    white-space: nowrap;
    gap: 6px;
}

.product-card-actions .btn-outline,
.hero-buttons .btn-outline {
    border-color: rgba(168, 85, 247, 0.45);
    box-shadow: 0 0 14px rgba(168, 85, 247, 0.12);
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.product-card-actions .btn-outline:hover,
.hero-buttons .btn-outline:hover {
    border-color: var(--purple);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.28);
    background: var(--gradient-soft);
}

.product-card-actions .btn-icon {
    flex: 0 0 auto;
    width: 42px;
    height: auto;
    padding: 12px;
}

.price {
    display: inline-block;
    align-self: flex-start;
    font-weight: 800;
    font-size: 15px;
    color: var(--success);
    background: none;
    padding: 0;
    border-radius: 0;
}

.stock-badge {
    font-size: 12px;
    color: var(--text-muted);
}

.card {
    background: var(--bg-card);
    border: 1px solid rgba(168, 85, 247, 0.25);
    border-radius: 20px;
    padding: 22px;
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.08);
}

.card + .card {
    margin-top: 18px;
}

.two-col > .card + .card,
.checkout-grid > .card + .card {
    margin-top: 0;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.form-control {
    width: 100%;
    padding: 12px 14px;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    font-size: 14px;
}

.form-control:focus {
    outline: none;
    border-color: var(--purple);
}

.token-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 16px;
    font-family: monospace;
    font-size: 15px;
    font-weight: 700;
    color: var(--token-color);
    word-break: break-all;
    flex-wrap: wrap;
}

.step {
    display: flex;
    gap: 14px;
    margin-bottom: 22px;
}

.step-number {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gradient);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
}

.step-content h3 {
    font-size: 15px;
    margin-bottom: 4px;
}

.step-content p {
    font-size: 13px;
    color: var(--text-muted);
}

.two-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-two-col {
    max-width: 1040px;
    margin-left: auto;
    margin-right: auto;
}

.two-col > .card {
    display: flex;
    flex-direction: column;
}

.checkout-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0 auto 24px;
    max-width: 1100px;
}

.checkout-header-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--gradient-soft);
    color: var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.checkout-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.checkout-grid > .card {
    display: flex;
    flex-direction: column;
}

.checkout-product-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: contain;
    background: var(--bg-soft);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    margin-bottom: 16px;
    display: block;
}

.product-gallery-main {
    margin-bottom: 10px;
}

.product-gallery-thumbs-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
}

.product-gallery-thumbs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    flex: 1;
    min-width: 0;
    justify-content: center;
}

.product-gallery-thumbs::-webkit-scrollbar {
    display: none;
}

.gallery-arrow {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--bg-soft);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
}

.gallery-arrow:hover {
    border-color: var(--purple);
    color: var(--purple);
}

.social-rail {
    list-style: none;
    position: fixed;
    right: 56px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 90;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.scroll-top-btn {
    display: none;
    position: fixed;
    right: 16px;
    bottom: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient);
    color: #fff;
    border: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(168, 85, 247, 0.4);
    z-index: 95;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    cursor: pointer;
}

.scroll-top-btn.visible {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.social-rail-item {
    position: relative;
}

.social-rail-tooltip {
    position: absolute;
    top: 50%;
    right: 54px;
    transform: translateY(-50%);
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease;
    pointer-events: none;
}

.social-rail-item:hover .social-rail-tooltip {
    opacity: 1;
    visibility: visible;
}

.social-rail-item a {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1.3px solid var(--purple);
    box-shadow: 0 0 16px rgba(168, 85, 247, 0.12);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.social-rail-item a:hover {
    transform: scale(1.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.social-rail-item a svg {
    position: relative;
    z-index: 1;
    border-radius: 50%;
}

@media (max-width: 899px) {
    .social-rail {
        display: none;
    }
}

.product-gallery-thumb {
    width: calc(25% - 6px);
    max-width: 64px;
    aspect-ratio: 1 / 1;
    height: auto;
    border-radius: 8px;
    border: 2px solid var(--border);
    background: var(--bg-soft);
    overflow: hidden;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.product-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-gallery-thumb.active {
    border-color: var(--purple);
}

.product-gallery-video-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: auto;
    min-width: 0;
    padding: 12px;
    margin-bottom: 4px;
    border-radius: var(--radius);
    border: 1px solid var(--purple);
    background: var(--gradient-soft);
    color: var(--text);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-gallery-video-bar:hover {
    background: var(--gradient);
    color: #fff;
}

.video-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 300;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.video-modal-overlay.open {
    display: flex;
    animation: videoOverlayFade 0.18s ease;
}

@keyframes videoOverlayFade {
    from { opacity: 0; }
    to { opacity: 1; }
}

.video-modal-box {
    position: relative;
    width: 100%;
    max-width: 560px;
    background: var(--bg-card);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 16px;
    padding: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(168, 85, 247, 0.15);
    animation: videoBoxPop 0.2s ease;
}

@keyframes videoBoxPop {
    from { opacity: 0; transform: scale(0.94); }
    to { opacity: 1; transform: scale(1); }
}

.video-modal-close {
    position: absolute;
    top: -14px;
    right: -14px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid rgba(168, 85, 247, 0.4);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
}

.video-modal-close:hover {
    background: var(--gradient);
    color: #fff;
    border-color: transparent;
}

.image-lightbox-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 300;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.image-lightbox-overlay.open {
    display: flex;
    animation: videoOverlayFade 0.18s ease;
}

.image-lightbox-img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    animation: videoBoxPop 0.2s ease;
    display: block;
}

.image-lightbox-box {
    position: relative;
    max-width: 100%;
    max-height: 85vh;
}

.video-modal-media {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 10px;
    overflow: hidden;
    background: #000;
}

.video-modal-media video,
.video-modal-media iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: none;
}

.video-modal-spinner {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 34px;
    height: 34px;
    margin: -17px 0 0 -17px;
    border: 3px solid rgba(168, 85, 247, 0.25);
    border-top-color: var(--purple);
    border-radius: 50%;
    animation: videoSpinnerSpin 0.7s linear infinite;
    z-index: 1;
}

@keyframes videoSpinnerSpin {
    to { transform: rotate(360deg); }
}

.product-feature-list {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.product-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.product-feature-icon {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    border-radius: 10px;
    background: var(--gradient-soft);
    color: var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-feature strong {
    display: block;
    font-size: 13px;
    margin-bottom: 2px;
}

.product-feature p {
    color: var(--text-muted);
    font-size: 12px;
    margin: 0;
}

.qty-stepper {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.qty-btn {
    width: 38px;
    height: 44px;
    background: var(--bg-soft);
    border: none;
    color: var(--text);
    font-size: 18px;
    cursor: pointer;
}

.qty-stepper-sm .qty-btn {
    width: 30px;
    height: 32px;
    font-size: 15px;
}

.qty-input {
    width: 46px;
    height: 44px;
    text-align: center;
    background: var(--bg-card);
    border: none;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    color: var(--text);
    font-weight: 700;
    -moz-appearance: textfield;
}

.qty-stepper-sm .qty-input {
    height: 32px;
    width: 38px;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.cart-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.cart-row:last-child {
    border-bottom: none;
}

.cart-row-image {
    width: 54px;
    height: 54px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.cart-row-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.cart-row-delivery {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 600;
}

.cart-row-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    flex-shrink: 0;
}

.cart-row-right .price {
    background: none;
    padding: 0;
    border-radius: 0;
    margin-left: auto;
    align-self: flex-end;
}

.checkout-spec-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.checkout-spec-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 600;
}

.checkout-spec-badge svg {
    color: var(--purple);
    flex-shrink: 0;
}

.checkout-price-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 13px;
    color: var(--text-muted);
}

.checkout-specs-box {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 4px 16px;
    margin-bottom: 14px;
}

.checkout-specs-box .info-row:last-child {
    border-bottom: none;
}

.checkout-total-box {
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 10px 16px;
}

.checkout-price-line-total {
    padding-top: 10px;
    margin-top: 8px;
    border-top: 1px solid var(--border);
    color: var(--text);
    font-size: 14px;
    font-weight: 700;
}

.checkout-summary-box {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 16px 16px;
    margin-bottom: 4px;
}

.checkout-summary-box .cart-row:first-child {
    padding-top: 0;
}

.checkout-total-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 8px 16px;
    margin-top: 16px;
    margin-bottom: 0;
}

.checkout-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.checkout-feature-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.checkout-feature-row p {
    color: var(--text-muted);
    margin: 0;
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.topup-preset-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.topup-preset-btn {
    padding: 12px 8px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--bg-soft);
    color: var(--text);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: border-color 0.15s ease, background 0.15s ease;
}

.topup-preset-btn:hover {
    border-color: var(--purple);
}

.topup-preset-btn.active {
    border-color: var(--purple);
    background: var(--gradient-soft);
    color: var(--purple);
}

.topup-balance-inner-card {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 10px 14px 10px 10px;
    margin-bottom: 18px !important;
}

.topup-balance-inner-card .icon-box {
    background: none !important;
    width: auto !important;
    height: auto !important;
    color: var(--purple);
}

.topup-balance-inner-card strong {
    color: var(--text);
    font-size: 14px;
    white-space: nowrap;
    font-weight: 700;
}

.topup-balance-inner-amount {
    margin-left: auto;
    color: var(--success);
    font-weight: 800;
    font-size: 15px;
}

.topup-history-card {
    margin-top: 18px;
}

.topup-history-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.topup-history-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: var(--radius);
    background: var(--bg-soft);
    border: 1px solid var(--border);
    font-size: 13px;
}

.topup-history-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    display: flex;
}

.topup-history-icon svg,
.topup-history-icon img {
    width: 100%;
    height: 100%;
}

.topup-history-amount {
    font-weight: 700;
    color: var(--text);
}

.topup-history-date {
    color: var(--text-muted);
    flex: 1;
}

.topup-left-wrap {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

@media (max-width: 899px) {
    .topup-left-wrap {
        display: contents;
    }

    .topup-amount-card {
        order: 1;
    }

    .topup-payment-card {
        order: 2;
    }

    .topup-history-card {
        order: 3;
    }
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--bg-soft);
    cursor: pointer;
}

.payment-option.active {
    border-color: var(--purple);
    background: var(--gradient-soft);
}

.payment-option-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.payment-option-group {
    display: flex;
    flex-direction: column;
    position: relative;
}

.icon-picker {
    position: relative;
}

.icon-picker-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 10px 12px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--bg-soft);
    color: var(--text);
    cursor: pointer;
    font-size: 13px;
    text-align: left;
}

.icon-picker-toggle svg:last-child {
    margin-left: auto;
    flex-shrink: 0;
    color: var(--text-muted);
}

.icon-picker-swatch {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: var(--gradient-soft);
    color: var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-picker-list {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    z-index: 40;
    max-height: 260px;
    overflow-y: auto;
    padding: 6px;
    border-radius: var(--radius);
    border: 1px solid rgba(168, 85, 247, 0.25);
    background: var(--bg-card);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.55);
}

.icon-picker-list.open {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.icon-picker-item {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 8px 10px;
    border-radius: 8px;
    border: none;
    background: transparent;
    color: var(--text);
    cursor: pointer;
    font-size: 13px;
    text-align: left;
}

.icon-picker-item:hover {
    background: var(--bg-soft);
}

.icon-picker-item.active {
    background: var(--gradient-soft);
    color: var(--purple);
}

.other-crypto-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: absolute;
    bottom: calc(100% + 8px);
    top: auto;
    left: 0;
    right: 0;
    padding: 10px;
    border-radius: var(--radius);
    border: 1px solid rgba(168, 85, 247, 0.25);
    background: var(--bg-card);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.55);
    z-index: 30;
    max-height: 320px;
    overflow-y: auto;
}

.other-crypto-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 10px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--bg-soft);
    cursor: pointer;
    text-align: left;
    width: 100%;
    font-family: inherit;
}

.other-crypto-item:hover {
    border-color: var(--purple);
}

.other-crypto-item-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.other-crypto-item-info strong {
    font-size: 13px;
    color: var(--text);
}

.other-crypto-item-info span {
    font-size: 11px;
    color: var(--text-muted);
}

.other-crypto-item-amount {
    font-size: 12px;
    font-weight: 700;
    color: var(--text);
    flex-shrink: 0;
}

.payment-radio {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid var(--border);
    flex-shrink: 0;
    position: relative;
}

.payment-option.active .payment-radio {
    border-color: var(--purple);
}

.payment-option.active .payment-radio::after {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: var(--purple);
}

.payment-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.payment-info span {
    font-size: 12px;
    color: var(--text-muted);
}

.payment-amount {
    font-weight: 800;
    font-size: 14px;
    color: var(--text);
    white-space: nowrap;
}

.checkout-pay-btn {
    justify-content: center;
    gap: 10px;
}

@media (min-width: 900px) {
    .checkout-grid {
        flex-direction: row;
        align-items: stretch;
    }

    .checkout-grid > .card {
        flex: 1;
        min-width: 0;
    }

    .rdp-side-col {
        flex: 1;
        min-width: 0;
    }

    .rdp-summary-card {
        position: sticky;
        top: 90px;
    }
}

.badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.badge-pending {
    background: rgba(255, 193, 7, 0.15);
    color: #ffc107;
}

.badge-confirmed {
    background: rgba(52, 211, 153, 0.15);
    color: var(--success);
}

.badge-cancelled {
    background: rgba(229, 57, 53, 0.15);
    color: var(--danger);
}

.badge-progress {
    background: rgba(79, 70, 229, 0.18);
    color: #818cf8;
}

.badge-closed {
    background: rgba(168, 85, 247, 0.15);
    color: var(--purple);
}

.ticket-shortcut {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.help-banner {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.help-banner-icon {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: var(--gradient-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple);
    flex-shrink: 0;
    box-shadow: 0 0 40px rgba(168, 85, 247, 0.25);
}

.help-banner-body {
    flex: 1;
    min-width: 240px;
}

.help-banner-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.ticket-filter-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.ticket-filter-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

@media (max-width: 640px) {
    .ticket-filter-tabs {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .ticket-filter-tab {
        justify-content: center;
    }
}

.ticket-filter-tab {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    color: var(--text-muted);
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s ease;
}

.ticket-filter-tab:hover {
    border-color: var(--purple);
}

.ticket-filter-tab.active {
    background: var(--bg-card);
    border-color: var(--purple);
    color: var(--text);
}

.ticket-filter-count {
    background: var(--bg-card);
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 700;
    padding: 1px 7px;
    border-radius: 10px;
}

.ticket-sort-select {
    padding: 8px 12px;
    font-size: 13px;
}

.badge-dot {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}

.ticket-list {
    display: flex;
    flex-direction: column;
}

.ticket-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 6px;
    border-bottom: 1px solid var(--border);
    color: inherit;
}

.ticket-row:last-child {
    border-bottom: none;
}

.ticket-row:hover {
    background: var(--bg-soft);
    border-radius: 10px;
}

.ticket-row-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--gradient-soft);
    color: var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ticket-row-body {
    flex: 1;
    min-width: 0;
}

.ticket-row-title {
    display: block;
    font-weight: 700;
    font-size: 14px;
}

.ticket-row-meta {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 3px;
}

.ticket-row-status {
    text-align: right;
    flex-shrink: 0;
}

.ticket-row-reply {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 6px;
}

.order-countdown {
    display: block;
    font-size: 11px;
    color: var(--purple);
    font-family: monospace;
    margin-top: 4px;
    text-align: right;
}

.ticket-row-chevron {
    color: var(--text-muted);
    flex-shrink: 0;
    display: flex;
}

.ticket-thread-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.chat-thread {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-height: 460px;
    overflow-y: auto;
    padding: 4px 4px 12px;
}

.chat-bubble {
    max-width: 75%;
    padding: 12px 16px;
    border-radius: 14px;
    font-size: 14px;
    line-height: 1.55;
}

.chat-bubble.from-user {
    align-self: flex-end;
    background: var(--gradient);
    color: #fff;
    border-bottom-right-radius: 4px;
}

.chat-bubble.from-admin {
    align-self: flex-start;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-bottom-left-radius: 4px;
}

.chat-bubble-time {
    display: block;
    font-size: 11px;
    opacity: 0.75;
    margin-top: 8px;
}

.ticket-attachments {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.ticket-attachment-thumb {
    display: block;
    width: 90px;
    height: 90px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-card);
}

.ticket-attachment-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ticket-attachment-file {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--bg-card);
    font-size: 12px;
    color: var(--text);
    text-decoration: none;
}

.ticket-attachment-file:hover,
.ticket-attachment-thumb:hover {
    border-color: var(--purple);
}

.chat-reply-form {
    display: flex;
    gap: 10px;
    margin-top: 18px;
    align-items: flex-end;
}

.chat-reply-form textarea {
    flex: 1;
    resize: none;
}

@media (max-width: 640px) {
    .help-banner {
        text-align: center;
        justify-content: center;
    }

    .help-banner-body {
        min-width: 0;
    }

    .help-banner-actions {
        justify-content: center;
    }

    .ticket-row {
        flex-wrap: wrap;
        align-items: flex-start;
    }

    .ticket-row-body {
        flex: 1 1 calc(100% - 54px);
        min-width: 0;
    }

    .ticket-row-chevron {
        display: none;
    }

    .ticket-row-status {
        flex: 1 1 100%;
        width: 100%;
        text-align: left;
        margin-left: 54px;
        margin-top: 8px;
    }
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
}

.activity-scroll {
    max-height: 340px;
    overflow-y: auto;
}

.orders-scroll {
    max-height: 300px;
    overflow-y: auto;
}

.plans-products-scroll {
    max-height: 300px;
    overflow-y: auto;
}

.plans-products-scroll table thead th {
    position: sticky;
    top: 0;
    background: var(--bg-card);
    z-index: 1;
}

.payment-history-scroll {
    max-height: 320px;
    overflow-y: auto;
}

@media (max-width: 640px) {
    .payment-history-scroll {
        overflow-x: auto;
    }

    .payment-history-scroll .ticket-row {
        flex-wrap: nowrap;
        min-width: 480px;
    }

    .payment-history-scroll .ticket-row-status {
        text-align: right;
        margin-left: 0;
    }
}

.admin-table-scroll {
    max-height: 480px;
    overflow-y: auto;
}

.admin-table-scroll-5 {
    max-height: 272px;
    overflow-y: auto;
}

.admin-table-scroll-5 thead th {
    position: sticky;
    top: 0;
    background: var(--bg-card);
    z-index: 1;
}

.admin-table-scroll thead th,
.admin-orders-scroll thead th {
    position: sticky;
    top: 0;
    background: var(--bg-card);
    z-index: 1;
}

.admin-orders-scroll {
    max-height: 620px;
    overflow-y: auto;
}

.admin-tickets-scroll thead th {
    position: sticky;
    top: 0;
    background: var(--bg-card);
    z-index: 1;
}

.admin-tickets-scroll {
    max-height: 560px;
    overflow-y: auto;
}

.user-cell {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--gradient);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.12);
}

.user-cell-id {
    font-weight: 700;
    font-size: 13px;
}

.user-token-pill {
    font-family: monospace;
    font-size: 12px;
    color: var(--purple);
    background: var(--gradient-soft);
    padding: 5px 10px;
    border-radius: 8px;
    letter-spacing: 0.3px;
}

.user-ip-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-family: monospace;
    color: var(--blue);
    background: rgba(79, 70, 229, 0.12);
    padding: 5px 10px;
    border-radius: 8px;
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

th, td {
    padding: 12px 14px;
    text-align: left;
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
}

th {
    color: var(--text-muted);
    font-weight: 600;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin: 20px 0;
    font-size: 13px;
}

.breadcrumb-item {
    color: var(--text-muted);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.breadcrumb-item:hover {
    color: var(--purple);
}

.breadcrumb-home {
    color: var(--text-muted);
}

.breadcrumb-sep {
    color: var(--border);
}

.breadcrumb-current {
    color: var(--text);
    font-weight: 600;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.pill-badge {
    display: inline-block;
    background: var(--gradient-soft);
    border: 1px solid var(--border);
    color: var(--purple);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 22px;
}

.login-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

.login-hero {
    padding-top: 16px;
}

.login-hero h1 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.15;
}

.login-hero > p {
    color: var(--text-muted);
    margin-bottom: 32px;
    font-size: 16px;
}

.feature-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--gradient-soft);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple);
}

.feature-row h3 {
    font-size: 17px;
    margin-bottom: 3px;
}

.feature-row p {
    font-size: 14px;
    color: var(--text-muted);
}

.login-graphic {
    display: none;
    position: relative;
    width: 240px;
    height: 240px;
}

.graphic-square {
    position: absolute;
    top: 30px;
    left: 20px;
    width: 170px;
    height: 170px;
    border-radius: 28px;
    background: linear-gradient(145deg, #14101f, #1c1330);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 60px rgba(168, 85, 247, 0.35);
}

.graphic-square span {
    font-size: 34px;
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.graphic-shield {
    position: absolute;
    bottom: 10px;
    right: 0;
    width: 90px;
    height: 100px;
    border-radius: 18px;
    background: linear-gradient(145deg, #1c1330, #14101f);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple);
    box-shadow: 0 0 40px rgba(79, 70, 229, 0.35);
}

.graphic-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--purple);
    opacity: 0.6;
}

#loginNoCopy {
    user-select: none;
    -webkit-user-select: none;
}

#generatedToken {
    user-select: text;
    -webkit-user-select: text;
}

.login-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--gradient-soft);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple);
    margin-bottom: 16px;
}

.account-layout {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (max-width: 899px) {
    .account-help-col {
        order: 2;
    }

    .account-main {
        order: 1;
    }
}

.account-sidebar {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 6px;
    margin-top: 8px;
}

@media (min-width: 700px) {
    .account-sidebar {
        margin-top: 40px;
    }
}

.account-sidebar a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: var(--radius);
    font-size: 14px;
    color: var(--text-muted);
    white-space: nowrap;
    border: 1px solid transparent;
}

.account-sidebar a.active {
    background: var(--gradient);
    color: #fff;
}

.account-sidebar a.logout-link {
    color: var(--danger);
}

.account-main {
    display: flex;
    flex-direction: column;
    gap: 30px;
    min-width: 0;
    flex: 1;
}

.account-help-col {
    width: 100%;
}

.help-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
}

.help-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--gradient-soft);
    color: var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.25);
}

.help-card-title {
    font-size: 17px;
    margin-bottom: 8px;
}

.help-card-text {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.help-card .btn {
    width: 100%;
}

.help-card-link {
    display: block;
    margin-top: 14px;
    font-size: 13px;
    color: var(--text-muted);
}

.help-card-link:hover {
    color: var(--purple);
}

.help-card-watermark {
    flex: 1;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.18;
    margin-top: 10px;
}

/* Contact page */
.contact-info-card,
.contact-form-card {
    box-sizing: border-box;
}

.contact-layout-v2 {
    align-items: stretch;
}

.contact-info-card-v2 {
    display: flex;
    flex-direction: column;
}

.contact-v2-hero-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 22px;
}

.contact-v2-art {
    position: relative;
    width: 90px;
    height: 90px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-v2-glow {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.35), transparent 70%);
    filter: blur(6px);
}

.contact-v2-subheading {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
}

.contact-v2-info-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.contact-v2-info-row {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 12px 14px;
    text-decoration: none;
    color: var(--text);
    cursor: pointer;
    transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}

.contact-v2-info-row:hover {
    border-color: var(--purple);
    background: rgba(168, 85, 247, 0.08);
    transform: translateY(-1px);
}

.contact-v2-info-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.contact-v2-info-icon-plain {
    background: none;
    width: 44px;
    height: 44px;
}

.contact-v2-icon-purple {
    background: var(--gradient);
}

.contact-v2-icon-blue {
    background: #2aabee;
}

.contact-v2-icon-green {
    background: #25d366;
}

.contact-v2-icon-signal {
    background: #3a76f0;
}

.contact-v2-go-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--gradient);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.contact-v2-info-text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-v2-info-text strong {
    font-size: 13px;
}

.contact-v2-info-text span {
    color: var(--text-muted);
    font-size: 11px;
}

.contact-v2-info-value {
    font-size: 12px;
    font-weight: 700;
    color: var(--text);
    flex-shrink: 0;
    white-space: nowrap;
}

.contact-v2-satisfaction {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--gradient-soft);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: var(--radius);
    padding: 14px;
    margin-top: auto;
}

.contact-v2-check {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-dropzone {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    text-align: center;
    border: 1.5px dashed var(--border);
    border-radius: var(--radius);
    padding: 22px 14px;
    color: var(--text-muted);
    font-size: 13px;
    cursor: pointer;
    transition: border-color 0.15s ease, background 0.15s ease;
}

.contact-dropzone:hover,
.contact-dropzone-active {
    border-color: var(--purple);
    background: var(--gradient-soft);
}

.contact-v2-strip {
    margin-top: 20px;
}

.contact-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto 32px;
    flex-wrap: wrap;
}

.contact-hero-text {
    flex: 1 1 380px;
    text-align: left;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--gradient-soft);
    color: var(--purple);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 18px;
}

.contact-hero .contact-heading {
    font-size: 34px;
}

.contact-hero-text .contact-lede {
    max-width: 460px;
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}

.contact-trust-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 6px;
}

.contact-trust-pills span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--purple);
    font-size: 13px;
    font-weight: 600;
}

.contact-hero-art {
    position: relative;
    flex: 1 1 280px;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero-glow {
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.35), rgba(79, 70, 229, 0.08) 60%, transparent 75%);
    filter: blur(4px);
}

.contact-hero-icon {
    position: relative;
    z-index: 1;
}

.contact-hero-bubble {
    position: absolute;
    z-index: 2;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.contact-hero-bubble-left {
    top: 12%;
    left: 6%;
    background: #4f46e5;
    transform: rotate(-8deg);
}

.contact-hero-bubble-right {
    bottom: 14%;
    right: 4%;
    background: var(--purple);
    transform: rotate(8deg);
}

.contact-channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-bottom: 22px;
}

.contact-channel-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px;
    text-decoration: none;
    color: var(--text);
    transition: transform 0.15s ease, border-color 0.15s ease;
}

.contact-channel-card:hover {
    transform: translateY(-3px);
}

.contact-channel-card h3 {
    font-size: 18px;
    margin: 4px 0 4px;
}

.contact-channel-card > p {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 16px;
}

.contact-channel-icon {
    width: 66px;
    height: 66px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.contact-channel-jump {
    position: absolute;
    top: 18px;
    right: 18px;
    color: var(--text-muted);
}

.contact-channel-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.contact-channel-stat strong {
    display: block;
    color: var(--text);
    font-size: 13px;
    margin-top: 2px;
}

.contact-channel-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: var(--radius);
    padding: 11px 16px;
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    margin-top: auto;
}

.contact-channel-telegram {
    border-color: rgba(42, 171, 238, 0.35);
    box-shadow: 0 0 0 1px rgba(42, 171, 238, 0.08);
}

.contact-channel-telegram .contact-channel-icon {
    background: rgba(42, 171, 238, 0.15);
}

.contact-channel-btn-telegram {
    background: #2aabee;
}

.contact-channel-signal {
    border-color: rgba(168, 85, 247, 0.35);
    box-shadow: 0 0 0 1px rgba(168, 85, 247, 0.08);
}

.contact-channel-signal .contact-channel-icon {
    background: var(--purple);
}

.contact-channel-btn-signal {
    background: var(--gradient);
}

.contact-channel-whatsapp {
    border-color: rgba(37, 211, 102, 0.35);
    box-shadow: 0 0 0 1px rgba(37, 211, 102, 0.08);
}

.contact-channel-whatsapp .contact-channel-icon {
    background: rgba(37, 211, 102, 0.15);
}

.contact-channel-btn-whatsapp {
    background: #25d366;
}

.contact-bottom-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px;
}

.contact-strip-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-strip-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--gradient-soft);
    color: var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-strip-icon-blue {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

.contact-strip-icon-purple {
    background: rgba(168, 85, 247, 0.15);
    color: var(--purple);
}

.contact-strip-icon-green {
    background: rgba(52, 211, 153, 0.15);
    color: var(--success);
}

.contact-strip-body strong {
    display: block;
    font-size: 13px;
    margin-bottom: 2px;
}

.contact-strip-body p {
    color: var(--text-muted);
    font-size: 12px;
    margin: 0;
}

.cart-layout {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-main {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 0;
    flex: 1;
}

.cart-area-title {
    display: flex;    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.cart-area-help {
    width: 100%;
}

.cart-inner-divider {
    border-top: 1px solid var(--border);
    margin: 20px 0;
}

@media (max-width: 899px) {
    .cart-area-help {
        order: 2;
    }

    .cart-main {
        order: 1;
    }
}

@media (min-width: 900px) {
    .cart-layout {
        flex-direction: row;
        align-items: stretch;
    }

    .cart-main {
        max-width: calc(100% - 306px);
    }

    .cart-area-help {
        width: 230px;
        flex-shrink: 0;
        margin-top: 20px;
        padding: 16px;
        align-self: stretch;
        height: auto;
    }

    .cart-inner-row {
        display: flex;
        flex-direction: column;
        gap: 20px;
        max-width: 700px;
    }

    .cart-area-items {
        min-width: 0;
    }

    .cart-area-summary {
        min-width: 0;
    }

    .cart-area-help .help-card-icon {
        width: 46px;
        height: 46px;
        margin-bottom: 10px;
    }

    .cart-area-help .help-card-icon svg {
        width: 20px;
        height: 20px;
    }

    .cart-area-help .help-card-title {
        font-size: 15px;
    }

    .cart-area-help .help-card-text {
        font-size: 12px;
    }
}

.help-card-horizontal-top {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.help-card-horizontal-text {
    flex: 1;
    min-width: 180px;
}

.help-card-trust-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.help-card-trust-row .contact-strip-item {
    flex: 1 1 160px;
}

.cart-promo-checkout-row {
    display: flex;
    gap: 10px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.cart-promo-form {
    flex: 1 1 200px;
    display: flex;
    gap: 8px;
}

.cart-promo-form .form-control {
    flex: 1;
    min-width: 0;
}

.cart-promo-checkout-row #proceedCheckoutBtn {
    flex: 1 1 200px;
    justify-content: center;
    white-space: nowrap;
    padding-top: 8px;
    padding-bottom: 8px;
}

.coupon-applied-card {
    flex: 1 1 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 7px 14px;
    border: 1px solid rgba(168, 85, 247, 0.35);
    border-radius: var(--radius);
    background: rgba(168, 85, 247, 0.08);
}

@media (min-width: 900px) {
    .coupon-applied-card {
        flex: 1 1 200px;
    }
}

.coupon-applied-icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-soft);
    color: var(--purple);
}

.coupon-applied-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.coupon-applied-title {
    color: var(--success);
    font-size: 14px;
    font-weight: 700;
}

.coupon-applied-sub {
    color: var(--text-muted);
    font-size: 12px;
}

.coupon-applied-avatar {
    position: relative;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gradient);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coupon-applied-check {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--success);
    border: 2px solid var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
}

.coupon-applied-remove {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.coupon-applied-remove:hover {
    color: var(--danger);
    border-color: var(--danger);
}

.contact-strip-help {
    flex-wrap: wrap;
}

.contact-strip-help .btn {
    margin-left: auto;
}

@media (max-width: 640px) {
    .contact-strip-help .btn {
        margin-left: 0;
        width: 100%;
        justify-content: center;
    }
}

.contact-heading {
    font-size: clamp(20px, 6.5vw, 32px);
    font-weight: 800;
    margin-bottom: 12px;
    white-space: nowrap;
}

.contact-heading-underline {
    position: relative;
    display: inline-block;
}

.contact-heading-underline::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
}

.contact-lede {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 26px;
}

.contact-subheading {
    font-size: 15px;
    margin-bottom: 14px;
}

.contact-info-list {
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 6px 16px;
    margin-bottom: 20px;
}

.contact-info-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.contact-info-row:last-child {
    border-bottom: none;
}

.contact-info-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--gradient-soft);
    color: var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.contact-info-title {
    font-size: 13px;
    font-weight: 700;
}

.contact-info-sub {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
}

.contact-info-value {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}

.copy-icon-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 2px;
}

.copy-icon-btn:hover {
    color: var(--purple);
}

.contact-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--success);
}

.contact-info-icon-brand {
    background: var(--bg-card);
    border: 1px solid var(--border);
}

.contact-satisfaction {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--gradient-soft);
    border: 1px solid rgba(168, 85, 247, 0.25);
    border-radius: var(--radius);
    padding: 16px;
    margin-top: auto;
}

.contact-satisfaction-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--bg-card);
    color: var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-satisfaction-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.contact-satisfaction-check {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--gradient);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-form-heading {
    font-size: 20px;
    margin-bottom: 6px;
}

.contact-form-sub {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 22px;
}

.contact-success {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(52, 211, 153, 0.1);
    border: 1px solid rgba(52, 211, 153, 0.3);
    color: var(--success);
    font-size: 13px;
    font-weight: 700;
    padding: 12px 16px;
    border-radius: var(--radius);
    margin-bottom: 18px;
}

.input-icon-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon-wrap svg {
    position: absolute;
    left: 14px;
    color: var(--text-muted);
    pointer-events: none;
}

.input-icon-wrap .form-control {
    padding-left: 40px;
}

.btn-spinner {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: #fff;
    animation: btn-spin 0.5s linear infinite;
    display: inline-block;
}

@keyframes btn-spin {
    to { transform: rotate(360deg); }
}

.checkout-pay-btn.is-loading,
#loginSubmitBtn.is-loading {
    opacity: 0.85;
    cursor: not-allowed;
}

.pay-cancel-link {
    background: none;
    border: none;
    color: var(--danger);
    text-decoration: underline;
    font-size: 13px;
    cursor: pointer;
    padding: 0;
}

.pay-cancel-link:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    text-decoration: none;
}

@media (min-width: 900px) {
    .account-help-col {
        width: 230px;
        flex-shrink: 0;
        margin-top: 20px;
    }
}

.account-top-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.cards-grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: stretch;
}

.cards-grid-3 .card {
    display: flex;
    flex-direction: column;
    height: 100%;
    margin-top: 0;
    min-width: 0;
}

.icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple);
    flex-shrink: 0;
}

.card-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.card-heading .icon-box {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: var(--gradient-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple);
    flex-shrink: 0;
}

.card-heading h3 {
    font-size: 15px;
}

.info-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}

.info-row:last-child {
    border-bottom: none;
}

.info-row .label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
}

.info-row .value.success {
    color: var(--success);
}

.info-row .value {
    text-align: right;
    word-break: break-word;
}

.empty-state {
    text-align: center;
    padding: 30px 10px;
    color: var(--text-muted);
}

.empty-state .empty-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: var(--bg-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.actions-cell {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.actions-cell > form {
    display: inline-flex;
    align-items: center;
    margin: 0;
}

.actions-cell .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    line-height: 1;
    white-space: nowrap;
}

.btn-sm {
    padding: 8px 14px;
    font-size: 13px;
}

.btn-icon {
    padding: 8px;
    width: 34px;
    height: 34px;
}

@media (min-width: 640px) {
    .two-col {
        flex-direction: row;
        align-items: stretch;
    }

    .two-col > .card {
        flex: 1;
        min-width: 0;
    }

    .cards-grid-3 {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .grid-products {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .page-title {
        font-size: 30px;
    }

    .navbar-inner {
        flex-wrap: nowrap;
    }

    .nav-links-wrap {
        order: 2;
        width: auto;
        flex: 1 1 auto;
        min-width: 0;
        margin-left: 20px;
        margin-right: 20px;
        padding-top: 0;
        margin-top: 0;
        justify-content: center;
    }

    .nav-links-wrap::before {
        display: none;
    }

    .nav-utility {
        order: 3;
    }

    .nav-links-wrap .nav-links {
        flex: 1 1 auto;
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        min-width: 0;
        gap: 18px;
    }

    .account-switch-trigger {
        padding: 7px 14px;
    }

    .account-switch-trigger svg:not(.chev) {
        width: 15px !important;
        height: 15px !important;
    }

    .lang-current {
        padding: 7px 12px;
    }

    .lang-current svg {
        width: 15px !important;
        height: 15px !important;
    }

    .nav-utility {
        order: 3;
        margin-left: auto;
    }

    .login-layout {
        grid-template-columns: 1fr 1fr;
    }

    .login-graphic {
        display: block;
        margin-top: -15px;
        width: 260px;
        height: 260px;
    }

    .cards-grid-3 {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .grid-products {
        grid-template-columns: repeat(3, 1fr);
    }

    .account-layout {
        flex-direction: row;
        align-items: stretch;
    }

    .account-sidebar {
        flex-direction: column;
        width: 220px;
        flex-shrink: 0;
        overflow-x: visible;
    }

    .form-row-2 {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1200px) {
    .grid-products {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hero-section {
    display: flex;
    flex-direction: column-reverse;
    gap: 32px;
    align-items: center;
    margin-bottom: 36px;
    padding: 4px 0 20px;
}

.hero-text {
    margin-top: 20px;
}

.hero-text h1 {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.15;
    margin: 16px 0;
}

.hero-text > p {
    color: var(--text-muted);
    margin-bottom: 24px;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-buttons .btn {
    border-radius: 999px;
}

.hero-image {
    flex-shrink: 0;
    width: 100%;
    max-width: 580px;
    position: relative;
}

@media (min-width: 900px) {
    .hero-image {
        transform: translateX(-56px);
    }
}

.hero-image::before {
    content: '';
    position: absolute;
    inset: -30px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.35), rgba(79, 70, 229, 0.15) 55%, transparent 75%);
    filter: blur(20px);
    z-index: -1;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    -webkit-mask-image:
        radial-gradient(ellipse 78% 78% at 50% 50%, #000 52%, transparent 92%);
    mask-image:
        radial-gradient(ellipse 78% 78% at 50% 50%, #000 52%, transparent 92%);
}

.hero-image::before {
    content: '';
    position: absolute;
    inset: 4%;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(140, 70, 240, 0.22), transparent 68%);
    filter: blur(38px);
    pointer-events: none;
    z-index: -1;
}

.hero-image-placeholder {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: var(--radius);
    background: var(--gradient-soft);
    border: 1px dashed var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 26px;
}

.category-link {
    padding: 8px 18px;
    border-radius: 30px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

.category-link:hover {
    color: var(--text);
}

.category-link.active {
    background: var(--gradient);
    color: #fff;
    border-color: transparent;
}

@media (min-width: 900px) {
    .hero-section {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .hero-text {
        margin-top: -76px;
    }

    .hero-image {
        max-width: 560px;
    }
}

.admin-body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.admin-topbar {
    background: var(--bg-soft);
    border-bottom: 1px solid var(--border);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.admin-wrapper {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.admin-sidebar {
    background: var(--bg-soft);
    border-bottom: 1px solid var(--border);
    padding: 10px 14px;
    display: flex;
    gap: 6px;
    overflow-x: auto;
}

.admin-nav-link {
    padding: 10px 14px;
    border-radius: var(--radius);
    font-size: 14px;
    color: var(--text-muted);
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border-bottom: 1px solid var(--border);
}

.admin-nav-link:last-child {
    border-bottom: none;
}

.admin-nav-link.active {
    border-bottom-color: transparent;
}

.admin-nav-link-label {
    display: flex;
    align-items: center;
    gap: 10px;
}

.admin-nav-link-icon {
    display: flex;
    flex-shrink: 0;
    opacity: 0.85;
}

.admin-sidebar-watermark {
    display: none;
}

.admin-nav-badge {
    background: var(--danger);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    min-width: 20px;
    height: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    flex-shrink: 0;
}

.admin-nav-link.active .admin-nav-badge,
.admin-nav-link:hover .admin-nav-badge {
    background: rgba(255, 255, 255, 0.25);
}

.payment-details-card {
    max-width: 100%;
}

.payment-timer {
    background: var(--gradient-soft);
    color: var(--purple);
    font-weight: 800;
    font-size: 14px;
    padding: 6px 14px;
    border-radius: 20px;
    font-family: monospace;
}

.payment-timer-expired {
    background: rgba(229, 57, 53, 0.15);
    color: var(--danger);
}

.payment-details-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

.payment-qr-box {
    background: #fff;
    padding: 16px;
    border-radius: 14px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-details-info {
    width: 100%;
    text-align: center;
}

.payment-crypto-amount {
    font-size: 24px;
    font-weight: 800;
    color: var(--success);
    margin-bottom: 4px;
}

@media (min-width: 700px) {
    .payment-details-grid {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
    }

    .payment-details-info {
        text-align: left;
    }
}

.pay-single-wrap {
    display: flex;
    justify-content: center;
}

.pay-single-card {
    max-width: 460px;
    width: 100%;
    padding: 18px;
}

.pay-wide-card {
    max-width: 880px;
    margin: 0 auto;
    padding: 26px;
}

.pay-wide-columns {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.pay-col-left {
    min-width: 0;
}

.pay-col-right {
    min-width: 0;
}

@media (min-width: 800px) {
    .pay-wide-columns {
        flex-direction: row;
    }

    .pay-col-left {
        flex: 1.3;
    }

    .pay-col-right {
        flex: 1;
        border-left: 1px solid var(--border);
        padding-left: 26px;
    }
}

.pay-divider {
    height: 1px;
    background: var(--border);
    margin: 18px 0;
}

.pay-order-badge {
    display: inline-block;
    background: var(--gradient-soft);
    color: var(--purple);
    font-size: 12px;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.pay-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 6px;
}

.pay-subtitle {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.pay-amount-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: nowrap;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 18px;
    margin-bottom: 18px;
    min-width: 0;
}

.pay-amount-row > div:first-child {
    min-width: 0;
    flex-shrink: 1;
}

.pay-amount-row > div {
    min-width: 0;
}

.pay-label {
    color: var(--text-muted);
    font-size: 12px;
    margin-bottom: 6px;
    white-space: nowrap;
}

.pay-amount {
    font-size: clamp(16px, 6vw, 28px);
    font-weight: 800;
    color: var(--success);
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.pay-amount-usd {
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px;
    white-space: nowrap;
}

.pay-timer-box {
    background: var(--gradient-soft);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: var(--radius);
    padding: 8px 10px;
    text-align: center;
    flex-shrink: 0;
    max-width: 45%;
}

.pay-timer-box .pay-label {
    white-space: nowrap;
}

.pay-timer {
    font-family: monospace;
    font-size: clamp(11px, 3.6vw, 20px);
    font-weight: 800;
    color: var(--purple);
    white-space: nowrap;
}

.pay-timer.payment-timer-expired {
    color: var(--danger);
}

.pay-method-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 12px 16px;
    margin-bottom: 22px;
}

.pay-method-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 13px;
}

.pay-method-value {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 14px;
}

.pay-method-icon {
    width: 22px;
    height: 22px;
    display: inline-flex;
    flex-shrink: 0;
}

.pay-change-link {
    color: var(--purple);
    font-size: 13px;
    font-weight: 700;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.pay-method-switch {
    position: relative;
}

.pay-method-menu {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    background: var(--bg-card);
    border: 1px solid rgba(168, 85, 247, 0.25);
    border-radius: 14px;
    overflow: hidden;
    min-width: 240px;
    z-index: 20;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4), 0 0 30px rgba(168, 85, 247, 0.1);
    padding: 6px;
}

.pay-method-switch.open .pay-method-menu {
    display: block;
}

.pay-method-menu-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 10px;
    border-radius: 10px;
    color: var(--text);
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

.pay-method-menu-item:hover {
    background: var(--bg-soft);
}

.pay-method-menu-item.active {
    color: var(--purple);
}

.pay-method-menu-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: flex;
}

.pay-method-check-badge {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pay-change-link:hover {
    text-decoration: underline;
}

.pay-section-label {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 12px;
}

.pay-qr-box {
    background: #fff;
    padding: 16px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin: 0 auto;
}

.pay-warning-box {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(255, 193, 7, 0.08);
    border: 1px solid rgba(255, 193, 7, 0.3);
    color: #ffc107;
    font-size: 12px;
    line-height: 1.6;
    padding: 12px 14px;
    border-radius: var(--radius);
    margin-top: 14px;
}

.pay-warning-box svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.pay-step-highlight {
    color: var(--success);
}

.pay-refresh-btn {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
}

.pay-refresh-btn:hover {
    color: var(--purple);
    border-color: rgba(168, 85, 247, 0.4);
}

.pay-refresh-btn.is-spinning svg {
    animation: btn-spin 0.6s linear;
}

.pay-confirm-btn {
    margin-top: 4px;
}

.pay-status-step {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    position: relative;
}

.pay-status-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 26px;
    bottom: -4px;
    width: 1px;
    background: var(--border);
}

.pay-status-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--border);
    margin-top: 4px;
    flex-shrink: 0;
}

.pay-status-active .pay-status-dot {
    background: var(--purple);
    box-shadow: 0 0 0 4px rgba(168, 85, 247, 0.2);
}

.pay-status-title {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
}

.pay-status-active .pay-status-title {
    color: var(--purple);
}

.pay-status-text {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
}

.pay-status-done .pay-status-dot {
    background: var(--success);
}

.pay-status-done .pay-status-title {
    color: var(--success);
}

.pay-status-cancelled .pay-status-dot {
    background: var(--danger);
    box-shadow: 0 0 0 4px rgba(229, 57, 53, 0.2);
}

.pay-status-cancelled .pay-status-title {
    color: var(--danger);
}

.admin-nav-link.active,
.admin-nav-link:hover {
    background: var(--gradient);
    color: #fff;
}

.admin-content {
    flex: 1;
    padding: 24px 20px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-bottom: 26px;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
    border-color: rgba(168, 85, 247, 0.35);
}

.stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.stat-icon-purple {
    background: rgba(168, 85, 247, 0.15);
    color: var(--purple);
}

.stat-icon-blue {
    background: rgba(79, 70, 229, 0.15);
    color: #818cf8;
}

.stat-icon-yellow {
    background: rgba(255, 193, 7, 0.15);
    color: #ffc107;
}

.stat-icon-green {
    background: rgba(52, 211, 153, 0.15);
    color: var(--success);
}

.stat-icon-orange {
    background: rgba(249, 115, 22, 0.15);
    color: #f97316;
}

.stat-value-yellow {
    color: #ffc107;
}

.stat-value-green {
    color: var(--success);
}

.stat-value-orange {
    color: #f97316;
}

.stat-value-blue {
    color: #818cf8;
}

.stat-value-purple {
    color: var(--purple);
}

.toggle-link {
    color: var(--purple);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border-bottom: 1px dashed var(--purple);
    padding-bottom: 2px;
    user-select: none;
}

.toggle-link:hover {
    color: #fff;
    border-bottom-color: #fff;
}

.stat-card .stat-value {
    font-size: 26px;
    font-weight: 800;
    margin-top: 6px;
}

.stat-card .stat-label {
    font-size: 13px;
    color: var(--text-muted);
}

@media (min-width: 700px) {
    .admin-wrapper {
        flex-direction: row;
    }

    .admin-sidebar {
        flex-direction: column;
        width: 220px;
        border-bottom: none;
        border-right: 1px solid var(--border);
        overflow-x: visible;
    }

    .admin-sidebar-watermark {
        display: flex;
        flex: 1;
        align-items: center;
        justify-content: center;
        opacity: 0.15;
        margin-top: 10px;
    }
}


.plan-hero-card {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    padding: 40px 40px 18px;
    max-width: 1040px;
    margin-left: auto;
    margin-right: auto;
}

.plan-hero-text {
    flex: 1 1 360px;
    min-width: 0;
    padding-left: 36px;
    border-left: 1px solid var(--border);
}

.plan-hero-title {
    font-size: 24px;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
    background: linear-gradient(90deg, var(--purple), #fff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.plan-hero-desc {
    color: var(--text-muted);
    font-size: 12.5px;
    line-height: 1.7;
    max-width: 430px;
    margin-bottom: 20px;
}

.plan-hero-image-col {
    flex: 1 1 320px;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.plan-hero-image {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-soft);
    height: 280px;
}

.plan-hero-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center;
}

.plan-hero-highlights {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.plan-hero-highlight-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}

.plan-hero-highlight-row:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.plan-hero-highlight-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: var(--gradient-soft);
    color: var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
}

.plan-hero-highlight-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.plan-hero-highlight-text strong {
    font-size: 12.5px;
    color: var(--text);
}

.plan-hero-highlight-text span {
    font-size: 11px;
    color: var(--text-muted);
}

.plans-section-intro {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 30px;
}

.plans-section-title {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 8px;
    background: linear-gradient(90deg, var(--purple), #fff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.plans-section-subtitle {
    color: var(--text-muted);
    font-size: 12.5px;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
    padding-top: 10px;
    max-width: 1040px;
    margin-left: auto;
    margin-right: auto;
}

.plan-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 30px 26px;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.plan-card-featured {
    border: 1px solid var(--purple);
    box-shadow: 0 0 0 1px var(--purple), 0 0 60px rgba(168, 85, 247, 0.4), 0 30px 60px rgba(0, 0, 0, 0.5);
    transform: translateY(-14px);
    z-index: 1;
}

@media (min-width: 900px) {
    .plan-card-featured {
        padding-top: 44px;
        padding-bottom: 44px;
        margin-bottom: -28px;
    }
}

.plan-card-badge {
    position: absolute;
    z-index: 2;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.05em;
    padding: 6px 18px;
    border-radius: 999px;
    white-space: nowrap;
    box-shadow: 0 8px 18px rgba(168, 85, 247, 0.45);
}

.plan-card-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    text-align: center;
}

.plan-card-name {
    font-size: 21px;
    font-weight: 800;
    color: var(--text);
}

.plan-card-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--gradient-soft);
    color: var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
}

.plan-card-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
    margin: 18px 0 26px;
}

.plan-card-price-amount {
    font-size: 34px;
    font-weight: 800;
    color: var(--success);
    line-height: 1;
}

.plan-card-price-period {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
}

.plan-card-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    margin-bottom: 28px;
    flex: 1;
}

.plan-card-features li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-size: 13.5px;
    color: var(--text);
    padding: 13px 0;
    border-bottom: 1px solid var(--border);
}

.plan-card-features li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.plan-card-features li:first-child {
    padding-top: 0;
}

.plan-feature-left {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.plan-feature-check {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plan-feature-check-yes {
    background: var(--gradient);
}

.plan-feature-check-no {
    color: var(--text-muted);
    background: transparent;
}

.plan-card-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 14px 20px;
    border-radius: 12px;
}

.plan-card-btn-outline {
    background: transparent;
    color: var(--purple);
    border: 1px solid var(--purple);
}

@media (max-width: 899px) {
    .plans-grid {
        grid-template-columns: 1fr;
    }
    .plan-card-featured {
        transform: none;
    }
    .plan-hero-card {
        flex-direction: column;
        align-items: stretch;
        padding: 24px 24px 12px;
    }
    .plan-hero-image-col {
        width: 100%;
        max-width: 100%;
        flex-basis: auto;
    }
    .plan-hero-image {
        width: 100%;
    }
    .plan-hero-text {
        padding-left: 0;
        border-left: none;
        padding-top: 24px;
        border-top: 1px solid var(--border);
        order: 1;
    }
    .plan-hero-card .plan-hero-image-col {
        order: 2;
    }
    .plans-section-title {
        font-size: 22px;
    }
}

.rdp-region-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 12px;
}

.rdp-region-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    padding: 12px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--bg-soft);
    cursor: pointer;
    text-align: left;
    color: var(--text);
}

.rdp-region-card.active {
    border-color: var(--purple);
    background: var(--gradient-soft);
}

.rdp-region-check {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--purple);
    display: none;
    align-items: center;
    justify-content: center;
}

.rdp-region-card.active .rdp-region-check {
    display: flex;
}

.rdp-region-flag {
    font-size: 22px;
    line-height: 1;
}

.rdp-region-card strong {
    font-size: 13px;
}

.rdp-region-latency {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: var(--text-muted);
    background: var(--bg-card);
    padding: 3px 8px;
    border-radius: 999px;
}

.rdp-latency-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #f0b90b;
}

.rdp-image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 12px;
}

.rdp-image-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 18px 10px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--bg-soft);
    cursor: pointer;
    color: var(--text);
}

.rdp-image-card.active {
    border-color: var(--purple);
    background: var(--gradient-soft);
}

.rdp-image-check {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--purple);
    display: none;
    align-items: center;
    justify-content: center;
}

.rdp-image-card.active .rdp-image-check {
    display: flex;
}

.rdp-image-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
}

.rdp-image-card strong {
    font-size: 12.5px;
}

.rdp-image-tabs {
    display: inline-flex;
    gap: 4px;
    padding: 4px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--bg-soft);
    margin-bottom: 16px;
}

.rdp-image-tab {
    padding: 8px 16px;
    border-radius: 999px;
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

.rdp-image-tab.active {
    background: var(--bg-card);
    color: var(--text);
    box-shadow: 0 0 0 1px var(--border);
}

.rdp-image-empty {
    padding: 30px;
    text-align: center;
    color: var(--text-muted);
    font-size: 13px;
    border: 1px dashed var(--border);
    border-radius: var(--radius);
}

.rdp-marketplace-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 10px;
}

.rdp-marketplace-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--bg-soft);
    cursor: pointer;
    text-align: left;
    color: var(--text);
}

.rdp-marketplace-item.active {
    border-color: var(--purple);
    background: var(--gradient-soft);
}

.rdp-marketplace-item-check {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--purple);
    display: none;
    align-items: center;
    justify-content: center;
}

.rdp-marketplace-item.active .rdp-marketplace-item-check {
    display: flex;
}

.rdp-marketplace-icon {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 9px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rdp-marketplace-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
    padding-right: 20px;
}

.rdp-marketplace-info strong {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13.5px;
}

.rdp-marketplace-info span {
    font-size: 11.5px;
    color: var(--text-muted);
}

.rdp-version-card {
    margin-top: 20px;
    padding: 16px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--bg-soft);
}

.rdp-billing-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rdp-billing-title {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--purple);
}

.rdp-billing-title div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.rdp-billing-title strong {
    color: var(--text);
    font-size: 14px;
}

.rdp-billing-title span {
    font-size: 12px;
    color: var(--text-muted);
}

.rdp-version-card label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.rdp-version-picker {
    position: relative;
}

.rdp-version-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    padding: 11px 14px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--bg-soft);
    color: var(--text);
    font-size: 13.5px;
    cursor: pointer;
}

.rdp-version-toggle svg {
    flex-shrink: 0;
    color: var(--text-muted);
    transition: transform 0.2s;
}

.rdp-version-list {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    z-index: 30;
    max-height: 220px;
    overflow-y: auto;
    padding: 6px;
    border-radius: var(--radius);
    border: 1px solid rgba(168, 85, 247, 0.25);
    background: var(--bg-card);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.55);
}

.rdp-version-list.open {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.rdp-version-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    padding: 9px 10px;
    border-radius: 8px;
    border: none;
    background: transparent;
    color: var(--text);
    cursor: pointer;
    font-size: 13.5px;
    text-align: left;
}

.rdp-version-item:hover {
    background: var(--bg-soft);
}

.rdp-version-item.active {
    background: var(--gradient-soft);
    color: var(--purple);
    font-weight: 700;
}

.rdp-version-item-check {
    flex-shrink: 0;
    color: var(--purple);
    display: flex;
}

.rdp-size-table {
    display: flex;
    flex-direction: column;
    gap: 6px;
    overflow-x: auto;
}

.rdp-size-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr;
    gap: 10px;
    align-items: center;
    min-width: 560px;
    padding: 12px 14px;
}

.rdp-size-header {
    color: var(--text-muted);
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.rdp-size-option {
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--bg-soft);
    color: var(--text);
    cursor: pointer;
    font-size: 13px;
    text-align: left;
}

.rdp-size-option.active {
    border-color: var(--purple);
    background: var(--gradient-soft);
}

.rdp-size-disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.rdp-size-name {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

.rdp-size-radio {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid var(--border);
    position: relative;
}

.rdp-size-option.active .rdp-size-radio {
    border-color: var(--purple);
}

.rdp-size-option.active .rdp-size-radio::after {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: var(--purple);
}

.rdp-size-price {
    font-weight: 800;
    color: var(--success);
}

.rdp-size-specs {
    display: contents;
}

.rdp-size-mobile-label {
    display: none;
}

.rdp-deploy-disabled {
    opacity: 0.5;
    pointer-events: none;
}

.rdp-included-outer {
    background: var(--bg-soft);
}

.rdp-included-stack {
    display: flex;
    flex-direction: row;
    gap: 14px;
}

@media (max-width: 700px) {
    .rdp-included-stack {
        flex-direction: column;
    }
}

.rdp-included-card {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    padding: 16px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--bg-card);
}

.rdp-included-header {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 14px;
}

.rdp-included-card strong {
    font-size: 14.5px;
}

.rdp-included-subtitle {
    color: var(--text-muted);
    font-size: 12.5px;
}

.rdp-included-value {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding: 10px 12px;
    border-radius: 10px;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    font-size: 13px;
    font-weight: 600;
}

.rdp-included-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--success);
    flex-shrink: 0;
}

.rdp-included-badge {
    margin-left: auto;
    color: var(--success);
    font-size: 12px;
    font-weight: 700;
}

@media (max-width: 700px) {
    .rdp-size-row {
        min-width: 460px;
    }
}

.invoice-card-narrow {
    max-width: 620px;
}

.invoice-card-narrow .payment-options {
    margin-top: 4px;
}

.invoice-summary-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
    padding: 22px 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg-soft);
    margin-top: 18px;
}

.invoice-summary-desc {
    color: var(--text);
    font-size: 14px;
}

.invoice-summary-amount {
    color: var(--success);
    font-size: 34px;
    font-weight: 900;
    letter-spacing: -0.5px;
}

.invoice-summary-expiry {
    color: var(--text-muted);
    font-size: 12px;
}

.invoice-method-grid {
    margin-top: 12px;
}

.invoice-method-option {
    text-decoration: none;
    cursor: pointer;
}

.invoice-receipt {
    max-width: 520px;
    margin: 0 auto;
    padding: 26px 4px 8px;
    text-align: center;
}

.invoice-receipt-icon {
    width: 66px;
    height: 66px;
    margin: 0 auto 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(52, 211, 153, 0.12);
    border: 1px solid rgba(52, 211, 153, 0.35);
    color: var(--success);
}

.invoice-receipt-icon-wait {
    background: rgba(168, 85, 247, 0.12);
    border-color: rgba(168, 85, 247, 0.35);
    color: var(--purple);
}

.invoice-receipt-icon-dead {
    background: rgba(229, 57, 53, 0.1);
    border-color: rgba(229, 57, 53, 0.3);
    color: var(--danger);
}

.invoice-receipt-title {
    font-size: 22px;
    font-weight: 800;
    margin: 0 0 6px;
    color: var(--text);
}

.invoice-receipt-sub {
    color: var(--text-muted);
    font-size: 13px;
    margin: 0 0 18px;
}

.invoice-receipt-amount {
    color: var(--success);
    font-size: 36px;
    font-weight: 900;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
}

.invoice-receipt-rows {
    text-align: left;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 4px 16px;
    background: var(--bg-soft);
}

.invoice-receipt-note {
    color: var(--text-muted);
    font-size: 12px;
    margin: 14px 0 0;
}

.notice-box {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    border-radius: var(--radius);
    padding: 12px 14px;
    margin-bottom: 16px;
}

.notice-box svg {
    flex-shrink: 0;
    margin-top: 1px;
}

.notice-box p {
    font-size: 13px;
    margin: 0;
}

.notice-box-warning {
    background: rgba(255, 193, 7, 0.08);
    border: 1px solid rgba(255, 193, 7, 0.25);
}

.notice-box-warning svg {
    stroke: #ffc107;
}

.notice-box-warning p {
    color: #ffc107;
}

.notice-box-error {
    background: rgba(229, 57, 53, 0.1);
    border: 1px solid rgba(229, 57, 53, 0.3);
}

.notice-box-error svg {
    stroke: var(--danger);
}

.notice-box-error p {
    color: var(--danger);
    font-weight: 700;
}

.contact-error-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(229, 57, 53, 0.1);
    border: 1px solid rgba(229, 57, 53, 0.3);
    color: var(--danger);
    font-size: 13px;
    font-weight: 700;
    padding: 12px 16px;
    border-radius: var(--radius);
}


.checkout-pay-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.checkout-pay-btn > * {
    flex: 0 0 auto;
    margin-left: 0;
    margin-right: 0;
}

.rdp-modal {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.rdp-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
}

.rdp-modal-box {
    position: relative;
    width: 100%;
    max-width: 420px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.rdp-modal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px;
    border-bottom: 1px solid var(--border);
}

.rdp-modal-head h3 {
    margin: 0;
    font-size: 15px;
    color: var(--text);
}

.rdp-modal-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    padding: 0 4px;
}

.rdp-modal-close:hover {
    color: var(--text);
}

.rdp-modal-body {
    padding: 6px 18px 18px;
}

.rdp-modal-body .value {
    user-select: all;
    word-break: break-all;
}

.rdp-modal-heading {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.rdp-modal-ref {
    font-size: 12px;
    color: var(--purple);
    font-weight: 700;
    letter-spacing: 0.3px;
}

.rdp-modal-actions {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.rdp-modal-actions .btn {
    flex: 1;
    justify-content: center;
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: 13px;
}

.order-name-line {
    display: block;
    color: var(--text);
}

.order-ref-chip {
    display: inline-block;
    margin-top: 5px;
    padding: 2px 8px;
    border-radius: 999px;
    background: rgba(139, 92, 246, 0.12);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: var(--purple);
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
}

.download-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 12px;
}

.download-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg-soft);
}

.download-item-name {
    font-size: 13px;
    color: var(--text);
    word-break: break-word;
}

.download-item .btn {
    flex-shrink: 0;
}

.download-empty {
    color: var(--text-muted);
    font-size: 13px;
    text-align: center;
    margin: 12px 0;
}

.rdp-access-row td {
    background: var(--bg-soft);
}

.row-actions-row td {
    background: var(--bg-soft);
    border-top: none;
    box-shadow: inset 3px 0 0 var(--purple);
}

.row-actions-toggle.active {
    background: var(--gradient);
    border-color: transparent;
    color: #fff;
}

.rdp-copy-value {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.rdp-copy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-muted);
    padding: 4px 8px;
    font-size: 11px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.rdp-copy-btn:hover {
    color: var(--purple);
    border-color: var(--purple);
}

.rdp-copy-btn.is-copied {
    color: var(--success);
    border-color: rgba(52, 211, 153, 0.5);
    background: rgba(52, 211, 153, 0.12);
}

.plan-hero-title-lg {
    font-size: 34px;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 14px;
}

.plan-hero-title-lg .gradient-text {
    display: block;
}

.plan-hero-lede {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
    max-width: 460px;
    margin-bottom: 22px;
}

.plan-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 22px;
}

.plan-hero-actions .btn {
    border-radius: 999px;
    padding-top: 9px;
    padding-bottom: 9px;
}

.plan-hero-checks {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.plan-hero-check {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--text);
    font-size: 13px;
    font-weight: 700;
}

.plan-hero-check svg {
    color: var(--purple);
    flex-shrink: 0;
}

.plan-cta-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 28px;
    padding: 22px 24px;
    border: 1px solid rgba(168, 85, 247, 0.35);
    border-radius: var(--radius);
    background: var(--gradient-soft);
}

.plan-cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 14px;
    background: var(--gradient);
    color: #fff;
}

.plan-cta-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.plan-cta-eyebrow {
    color: var(--purple);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.plan-cta-text strong {
    color: var(--text);
    font-size: 19px;
}

.plan-cta-btn {
    border-radius: 999px;
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .plan-hero-title-lg {
        font-size: 26px;
    }

    .plan-cta-banner {
        flex-direction: column;
        align-items: flex-start;
    }

    .plan-cta-btn {
        width: 100%;
    }
}

.admin-nav-link-icon {
    color: var(--purple);
    opacity: 1;
}

.admin-nav-link.active .admin-nav-link-icon {
    color: #fff;
}

.admin-nav-link-danger .admin-nav-link-label {
    color: var(--danger);
}

.admin-nav-link-danger .admin-nav-link-icon {
    color: var(--danger);
}

.admin-nav-link-danger:hover .admin-nav-link-label,
.admin-nav-link-danger:hover .admin-nav-link-icon {
    color: #fff;
}

.admin-nav-link-danger.active {
    background: var(--danger);
}

.admin-nav-link-danger.active .admin-nav-link-label,
.admin-nav-link-danger.active .admin-nav-link-icon {
    color: #fff;
}

.plan-hero-landing {
    background: none;
    border: none;
    box-shadow: none;
    max-width: 1180px;
    padding: 24px 0 8px;
    gap: 48px;
    align-items: center;
    flex-direction: row-reverse;
}

.plan-hero-landing .plan-hero-text {
    flex: 1 1 380px;
    padding-left: 0;
    border-left: none;
}

.plan-hero-landing .plan-hero-image-col {
    flex: 1.35 1 460px;
    max-width: none;
}

.plan-hero-landing .plan-hero-image {
    height: auto;
    aspect-ratio: 16 / 10;
    border-color: rgba(168, 85, 247, 0.28);
    box-shadow: 0 24px 60px rgba(124, 58, 237, 0.28);
    background: var(--bg-card);
}

.plan-hero-landing .plan-hero-image img {
    object-fit: cover;
}

.plan-hero-landing .plan-hero-title-lg {
    font-size: 42px;
    padding-bottom: 0;
    border-bottom: none;
}

.plan-hero-landing .plan-hero-lede {
    max-width: 480px;
    font-size: 16px;
}

@media (max-width: 899px) {
    .plan-hero-landing {
        flex-direction: column;
        gap: 28px;
        padding-top: 8px;
    }

    .plan-hero-landing .plan-hero-image-col,
    .plan-hero-landing .plan-hero-text {
        flex: 1 1 100%;
        width: 100%;
    }

    .plan-hero-landing .plan-hero-title-lg {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .plan-hero-landing .plan-hero-title-lg {
        font-size: 25px;
    }
}

.plans-section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    padding: 7px 18px;
    border-radius: 999px;
    border: 1px solid rgba(168, 85, 247, 0.35);
    background: rgba(168, 85, 247, 0.1);
    color: var(--purple);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: none;
}

.plans-section-eyebrow::before,
.plans-section-eyebrow::after {
    content: '';
    width: 18px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--purple));
    flex-shrink: 0;
}

.plans-section-eyebrow::after {
    background: linear-gradient(90deg, var(--purple), transparent);
}

.plans-grid {
    align-items: stretch;
}

.plan-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(120% 80% at 50% 0%, rgba(168, 85, 247, 0.16), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.plan-card:hover::before {
    opacity: 1;
}

.plan-card:hover {
    transform: translateY(-8px);
    border-color: rgba(168, 85, 247, 0.55);
    box-shadow: 0 0 40px rgba(168, 85, 247, 0.22), 0 24px 50px rgba(0, 0, 0, 0.45);
}

.plan-card-featured::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(135deg, var(--purple), #e879f9, #6366f1, var(--purple));
    background-size: 300% 300%;
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    animation: planGlowShift 6s ease infinite;
    pointer-events: none;
}

@keyframes planGlowShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.plan-card-featured:hover {
    transform: translateY(-20px);
    box-shadow: 0 0 0 1px var(--purple), 0 0 80px rgba(168, 85, 247, 0.5), 0 36px 70px rgba(0, 0, 0, 0.55);
}

.plan-card-icon {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.plan-card:hover .plan-card-icon {
    transform: scale(1.08);
    box-shadow: 0 0 22px rgba(168, 85, 247, 0.45);
}

@media (max-width: 899px) {
    .plan-card-featured {
        margin-bottom: 0;
    }

    .plan-card:hover,
    .plan-card-featured:hover {
        transform: none;
    }
}

.plan-card-colored .plan-card-name {
    background: linear-gradient(90deg, var(--plan-from), var(--plan-to));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.plan-card-colored .plan-card-icon {
    background: linear-gradient(135deg, rgba(var(--plan-glow), 0.22), rgba(var(--plan-glow), 0.08));
    color: var(--plan-from);
    box-shadow: inset 0 0 0 1px rgba(var(--plan-glow), 0.3);
}

.plan-card-colored:hover {
    border-color: rgba(var(--plan-glow), 0.6);
    box-shadow: 0 0 40px rgba(var(--plan-glow), 0.25), 0 24px 50px rgba(0, 0, 0, 0.45);
}

.plan-card-colored:hover::before {
    background: radial-gradient(120% 80% at 50% 0%, rgba(var(--plan-glow), 0.18), transparent 70%);
}

.plan-card-colored:hover .plan-card-icon {
    box-shadow: 0 0 22px rgba(var(--plan-glow), 0.45), inset 0 0 0 1px rgba(var(--plan-glow), 0.4);
}

.plan-card-colored.plan-card-featured {
    border-color: rgba(var(--plan-glow), 0.7);
    box-shadow: 0 0 0 1px rgba(var(--plan-glow), 0.7), 0 0 60px rgba(var(--plan-glow), 0.35), 0 30px 60px rgba(0, 0, 0, 0.5);
}

.plan-card-colored.plan-card-featured::after {
    background: linear-gradient(135deg, var(--plan-from), var(--plan-to), var(--plan-from));
    background-size: 300% 300%;
}

.plan-card-colored .plan-card-badge {
    background: linear-gradient(135deg, var(--plan-from), var(--plan-to));
    box-shadow: 0 8px 18px rgba(var(--plan-glow), 0.45);
}
.leads-hero {
    display: grid;
    grid-template-columns: 1fr 1.08fr;
    gap: 52px;
    align-items: center;
    padding: 66px 0 10px;
}

.leads-pill {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(52, 211, 153, 0.09);
    border: 1px solid rgba(52, 211, 153, 0.3);
    color: var(--success);
    font-size: 12.5px;
    font-weight: 700;
    margin-bottom: 24px;
}

.leads-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--success);
    animation: leadsPulse 2s infinite;
}

@keyframes leadsPulse {
    0% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.5); }
    70% { box-shadow: 0 0 0 9px rgba(52, 211, 153, 0); }
    100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}

.leads-h1 {
    font-size: 52px;
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -2.2px;
    margin-bottom: 20px;
}

.leads-sub {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.75;
    max-width: 520px;
    margin-bottom: 34px;
}

.leads-hstats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    padding-top: 28px;
    position: relative;
}

.leads-hstats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, var(--purple), transparent);
}

.leads-hstats b {
    display: block;
    font-size: 27px;
    font-weight: 900;
    letter-spacing: -1.1px;
    line-height: 1.2;
}

.leads-hstats span {
    color: var(--text-muted);
    font-size: 12px;
}

.leads-dash {
    position: relative;
}

.leads-win {
    background: linear-gradient(180deg, #12122a, #0c0c1a);
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.6);
    position: relative;
}

.leads-scan {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.85), transparent);
    animation: leadsScan 4s linear infinite;
    z-index: 3;
}

@keyframes leadsScan {
    0% { top: 52px; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

.leads-wtop {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 14px 18px;
    border-bottom: 1px solid var(--border);
    position: relative;
}

.leads-wtop i {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #2a2a44;
}

.leads-wtop i:nth-child(1) { background: #ff5f57; }
.leads-wtop i:nth-child(2) { background: #febc2e; }
.leads-wtop i:nth-child(3) { background: #28c840; }

.leads-wtop span {
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
}

.leads-wnums {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.leads-wnums div {
    padding: 18px 8px;
    text-align: center;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.leads-wnums div:last-child {
    border-right: none;
}

.leads-wnums b {
    display: block;
    font-size: 19px;
    font-weight: 900;
    letter-spacing: -0.7px;
}

.leads-wnums span {
    font-size: 9px;
    color: var(--text-muted);
    font-weight: 700;
    letter-spacing: 0.8px;
}

.leads-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12.5px;
}

.leads-table th {
    text-align: left;
    padding: 12px 18px;
    color: var(--text-muted);
    font-size: 9.5px;
    font-weight: 800;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--border);
}

.leads-table td {
    padding: 13px 18px;
    border-bottom: 1px solid rgba(34, 34, 58, 0.55);
}

.leads-table tbody tr:last-child td {
    border-bottom: none;
}

.leads-mu {
    color: var(--text-muted);
}

.leads-vf {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: 99px;
    font-size: 10.5px;
    font-weight: 800;
    background: rgba(52, 211, 153, 0.1);
    color: var(--success);
    white-space: nowrap;
}

.leads-ck {
    background: rgba(251, 191, 36, 0.1);
    color: #fbbf24;
}

.leads-float {
    position: absolute;
    background: rgba(18, 18, 38, 0.94);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 13px 17px;
    display: flex;
    align-items: center;
    gap: 11px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.6);
    z-index: 4;
}

.leads-float-1 {
    top: -24px;
    right: -18px;
    animation: leadsFloat 5s ease-in-out infinite;
}

.leads-float-2 {
    bottom: 64px;
    left: -34px;
    animation: leadsFloat 5s ease-in-out infinite 0.9s;
}

@keyframes leadsFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-9px); }
}

.leads-float b {
    font-size: 15px;
    font-weight: 900;
    display: block;
    line-height: 1.2;
}

.leads-float small {
    font-size: 10.5px;
    color: var(--text-muted);
}

.leads-ring {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: conic-gradient(var(--success) 0 95%, rgba(255, 255, 255, 0.07) 95% 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.leads-ring i {
    width: 29px;
    height: 29px;
    border-radius: 50%;
    background: #12122a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-style: normal;
}

.leads-sect {
    padding: 70px 0 0;
    text-align: center;
}

.leads-sect h2 {
    font-size: 32px;
    font-weight: 900;
    letter-spacing: -1.3px;
    margin-bottom: 9px;
}

.leads-sect p {
    color: var(--text-muted);
    font-size: 14px;
}

@media (max-width: 980px) {
    .leads-hero { grid-template-columns: 1fr; gap: 44px; }
    .leads-h1 { font-size: 36px; letter-spacing: -1.4px; }
    .leads-float-1 { right: -6px; top: -16px; }
    .leads-float-2 { left: -6px; }
}

@media (max-width: 980px) {
    .leads-hero-text { order: 1; }
    .leads-dash { order: 2; }
}

@media (max-width: 620px) {
    .leads-h1 { font-size: 29px; }
    .leads-two { grid-template-columns: 1fr; }
    .leads-big { font-size: 50px; letter-spacing: -2.4px; }
    .leads-wnums { grid-template-columns: 1fr 1fr; }
    .leads-wnums div:nth-child(2) { border-right: none; }
    .leads-hstats { gap: 24px; }
    .leads-float { display: none; }
    .leads-hide-sm { display: none; }

    .leads-table {
        table-layout: fixed;
        width: 100%;
    }

    .leads-table th,
    .leads-table td {
        padding: 12px 12px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .leads-table th:nth-child(2),
    .leads-table td:nth-child(2) {
        width: 58%;
    }

    .leads-table th:nth-child(4),
    .leads-table td:nth-child(4) {
        width: 42%;
        text-align: right;
    }

    .leads-vf {
        font-size: 10px;
        padding: 4px 8px;
    }
}

.leads-flag {
    border-radius: 2px;
    flex-shrink: 0;
    object-fit: cover;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.09);
}

.leads-flag-fallback {
    width: 17px;
    height: 13px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.08);
    display: inline-block;
    flex-shrink: 0;
}

.leads-fico,
.leads-bico svg,
.leads-ring i svg {
    color: #fff;
}

.leads-fico {
    color: var(--purple);
    display: flex;
    align-items: center;
}

.leads-ring i svg {
    color: var(--success);
}

.leads-foot svg {
    vertical-align: -2px;
    opacity: 0.75;
}

.leads-why {
    padding: 88px 0 20px;
}

.leads-why-head {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 34px;
}

.leads-why-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--purple);
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.leads-why-eyebrow i {
    display: block;
    width: 26px;
    height: 2px;
    border-radius: 9px;
    background: var(--gradient);
}

.leads-why-head h2 {
    font-size: 34px;
    font-weight: 900;
    letter-spacing: -1.4px;
    line-height: 1.2;
    margin-bottom: 16px;
}

.leads-why-head p {
    color: var(--text-muted);
    font-size: 14.5px;
    line-height: 1.8;
}

.leads-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.leads-why-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 28px;
    transition: 0.18s;
}

.leads-why-card:hover {
    border-color: var(--purple);
    transform: translateY(-3px);
}

.leads-why-ico {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.18), rgba(168, 85, 247, 0.18));
    border: 1px solid rgba(168, 85, 247, 0.3);
    color: var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

.leads-why-card h3 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.leads-why-card p {
    color: var(--text-muted);
    font-size: 13.5px;
    line-height: 1.8;
}

@media (max-width: 980px) {
    .leads-why-grid { grid-template-columns: 1fr; }
    .leads-why-head h2 { font-size: 26px; letter-spacing: -1px; }
    .leads-why { padding-top: 60px; }
}

.adm-help {
    color: var(--text-muted);
    font-size: 12.5px;
    line-height: 1.7;
    margin-bottom: 18px;
}

.adm-row {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    flex-wrap: wrap;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.adm-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: flex-end;
    flex: 1;
}

.adm-add {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
}

.adm-f {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.adm-f > label {
    font-size: 10.5px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.adm-f .form-control {
    margin: 0;
}

.adm-check {
    display: flex !important;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text);
    white-space: nowrap;
    padding: 10px 0;
}

.adm-del {
    display: flex;
    align-items: flex-end;
}

.adm-note {
    background: rgba(168, 85, 247, 0.06);
    border-left: 3px solid var(--purple);
    border-radius: 10px;
    padding: 14px 16px;
    margin-top: 18px;
    color: var(--text-muted);
    font-size: 12.5px;
    line-height: 1.85;
}

.adm-note b {
    color: var(--text);
}

.adm-tier {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
}

.leads-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    padding-top: 26px;
    margin-bottom: -30px;
}

.leads-tab {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 11px 20px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-muted);
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.16s;
}

.leads-tab:hover {
    border-color: var(--purple);
    color: var(--text);
}

.leads-tab.active {
    background: var(--gradient);
    border-color: transparent;
    color: #fff;
}

.leads-tab svg {
    flex-shrink: 0;
    opacity: 0.85;
}

.adm-kind {
    display: inline-block;
    margin-left: 8px;
    padding: 2px 8px;
    border-radius: 99px;
    background: rgba(168, 85, 247, 0.16);
    color: var(--purple);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.3px;
}

@media (max-width: 620px) {
    .leads-tabs { padding-top: 16px; margin-bottom: -20px; }
    .leads-tab { padding: 9px 15px; font-size: 12.5px; }
}

.nav-cat-drop {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.nav-cat-link-drop {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
}

.nav-cat-chev {
    flex-shrink: 0;
    opacity: 0.65;
    transition: transform 0.22s ease, opacity 0.22s ease;
}

.nav-cat-drop.open .nav-cat-chev {
    transform: rotate(180deg);
    opacity: 1;
}

.nav-cat-toggle {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
    padding: 0;
    line-height: inherit;
}

.nav-cat-menu {
    position: fixed;
    top: auto;
    left: auto;
    transform: translateX(-50%) translateY(-6px);
    min-width: 210px;
    width: max-content;
    max-width: calc(100vw - 24px);
    background: #14142a;
    border: 1px solid var(--border);
    border-radius: 13px;
    padding: 7px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    opacity: 0;
    visibility: hidden;
    transition: 0.18s ease;
    z-index: 120;
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.7);
}

.nav-cat-menu::before {
    content: '';
    position: absolute;
    top: -14px;
    left: 0;
    right: 0;
    height: 14px;
}

.nav-cat-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-cat-menu.measuring {
    visibility: hidden;
    opacity: 0;
    display: flex;
}

.nav-cat-menu::before {
    display: none;
}

.nav-cat-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 13px;
    border-radius: 9px;
    color: var(--text-muted);
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: 0.14s;
}

.nav-cat-menu a:hover {
    background: rgba(168, 85, 247, 0.12);
    color: #fff;
}

.nav-cat-menu a.active {
    color: var(--purple);
    background: rgba(168, 85, 247, 0.08);
}

.nav-cat-menu a svg {
    flex-shrink: 0;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .nav-cat-menu {
        min-width: 190px;
        padding: 8px;
        border-radius: 14px;
    }

    .nav-cat-menu a {
        padding: 13px 14px;
        font-size: 14px;
    }
}

.adm-thumb {
    width: 60px;
    height: 44px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid var(--border);
    display: block;
}

.adm-thumb-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    background: var(--bg-soft);
    font-size: 14px;
}

.leads-pk-head {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    max-width: 1080px;
    margin: 26px auto 16px;
    flex-wrap: wrap;
}

.leads-viewall {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    color: var(--text-muted);
    padding: 9px 16px;
    border-radius: 10px;
    font-size: 12.5px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.15s;
}

.leads-viewall:hover {
    border-color: var(--purple);
    color: #fff;
}

.leads-viewall.open {
    border-color: var(--purple);
    color: var(--purple);
}

.leads-viewall svg {
    transition: 0.22s;
}

.leads-pk-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1080px;
    margin: 0 auto;
}

.leads-pk {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    transition: 0.18s;
}

.leads-pk:hover {
    border-color: var(--purple);
    transform: translateY(-3px);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.45);
}

.leads-pk-hidden {
    display: none;
}

.leads-pk-open .leads-pk-hidden {
    display: flex;
}

.leads-pk-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
    padding-right: 96px;
}

.leads-pk-top h3 {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: -0.3px;
    line-height: 1.4;
}

.leads-pk-desc {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.65;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 2px;
}

.leads-pk-flag {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid var(--border);
}

.leads-pk-flag-empty {
    background: var(--bg-soft);
    display: block;
}

.leads-pk-specs {
    display: flex;
    flex-direction: column;
}

.leads-pk-specs div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    font-size: 13.5px;
}

.leads-pk-specs div:last-child {
    border-bottom: none;
}

.leads-pk-specs span {
    color: var(--text-muted);
}

.leads-pk-specs b {
    font-weight: 800;
}

.leads-pk-green {
    color: var(--success);
}

.leads-pk-prices {
    display: flex;
    align-items: center;
    gap: 11px;
    flex-wrap: wrap;
    padding: 16px 0;
    border-top: 1px solid var(--border);
    margin-top: 6px;
}

.leads-pk-prices s {
    color: var(--text-muted);
    font-size: 16px;
    font-weight: 600;
    opacity: 0.75;
}

.leads-pk-prices b {
    font-size: 34px;
    font-weight: 900;
    letter-spacing: -1.2px;
    color: var(--success);
    line-height: 1;
}

.leads-pk-off {
    background: rgba(251, 191, 36, 0.14);
    color: #fbbf24;
    font-size: 12.5px;
    font-weight: 900;
    padding: 7px 13px;
    border-radius: 999px;
    letter-spacing: 0.2px;
    white-space: nowrap;
}

.leads-pk-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin: 0 0 22px;
    padding: 0;
}

.leads-pk-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    color: var(--text);
    line-height: 1.5;
}

.leads-pk-list i {
    color: var(--success);
    font-style: normal;
    font-weight: 900;
    flex-shrink: 0;
}

.leads-pk-actions {
    margin-top: auto;
    display: flex;
    gap: 9px;
}

.leads-pk-buy,
.leads-pk-review {
    flex: 1;
    padding: 11px 12px;
    font-size: 13px;
    line-height: 1.2;
    white-space: nowrap;
}

.leads-pk-review svg {
    flex-shrink: 0;
}

.leads-sample-src {
    display: none;
}

.leads-modal {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.leads-modal.open {
    display: flex;
}

.leads-modal-back {
    position: absolute;
    inset: 0;
    background: rgba(4, 4, 12, 0.82);
    backdrop-filter: blur(4px);
}

.leads-modal-box {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 520px;
    max-height: 78vh;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7);
}

.leads-modal-head {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 22px;
    border-bottom: 1px solid var(--border);
}

.leads-modal-head h3 {
    font-size: 15.5px;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 5px;
}

.leads-modal-head span {
    color: var(--text-muted);
    font-size: 12px;
}

.leads-modal-x {
    margin-left: auto;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    padding: 0 4px;
    flex-shrink: 0;
}

.leads-modal-x:hover {
    color: #fff;
}

.leads-modal-body {
    overflow-y: auto;
    padding: 18px 22px 22px;
}

.leads-modal-body pre {
    margin: 0;
    font-family: 'SF Mono', Menlo, Consolas, monospace;
    font-size: 13px;
    line-height: 2;
    color: var(--text);
    white-space: pre-wrap;
    word-break: break-all;
}

@media (max-width: 980px) {
    .leads-pk-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
    .leads-pk-grid { grid-template-columns: 1fr; }
    .leads-hero { padding-top: 40px; }
    .leads-dash { max-width: 100%; overflow: hidden; }
    .leads-win { max-width: 100%; }
    .leads-pk-head { margin-top: 18px; }
    .leads-pk-prices b { font-size: 30px; }
}

.adm-picker {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 14px;
}

.adm-pick {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--bg-soft);
    text-decoration: none;
    transition: 0.16s;
}

.adm-pick:hover {
    border-color: var(--purple);
    transform: translateY(-2px);
}

.adm-pick-ico {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    background: var(--gradient);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.adm-pick-txt b {
    display: block;
    font-size: 15.5px;
    color: var(--text);
    margin-bottom: 3px;
}

.adm-pick-txt small {
    color: var(--text-muted);
    font-size: 12px;
}

.adm-pick-arrow {
    margin-left: auto;
    color: var(--text-muted);
    flex-shrink: 0;
}

.adm-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.adm-bar-title {
    font-size: 17px;
    font-weight: 800;
}

.adm-card {
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 18px;
    margin-bottom: 14px;
    background: var(--bg-soft);
}

.adm-card .adm-del {
    margin-top: 14px;
}

.adm-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
}

.adm-circle-empty {
    background: var(--bg-card);
    color: var(--text-muted);
    font-size: 13px;
}

.leads-pk-verify {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 0.2px;
    color: #fff;
    white-space: nowrap;
    z-index: 2;
}

.leads-pk-verify.is-yes {
    background: var(--success);
    box-shadow: 0 5px 16px rgba(52, 211, 153, 0.35);
}

.leads-pk-verify.is-no {
    background: var(--danger);
    box-shadow: 0 5px 16px rgba(229, 57, 53, 0.35);
}


.leads-modal-body img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    border: 1px solid var(--border);
    margin-bottom: 16px;
    display: block;
}

.checkout-lead-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.checkout-lead-flag {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--border);
    flex-shrink: 0;
}

.checkout-lead-top h2 {
    font-size: 17px;
    font-weight: 800;
    line-height: 1.4;
}

.checkout-lead-desc {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.65;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.checkout-lead-specs div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 9px 0;
    border-bottom: 1px solid var(--border);
    font-size: 13.5px;
}

.checkout-lead-specs div:last-child {
    border-bottom: none;
}

.checkout-lead-specs span {
    color: var(--text-muted);
}

.checkout-lead-specs b {
    font-weight: 800;
}

.checkout-lead-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 16px 0 0;
    padding: 16px 0 0;
    border-top: 1px solid var(--border);
}

.checkout-lead-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    line-height: 1.5;
}

.checkout-lead-list i {
    color: var(--success);
    font-style: normal;
    font-weight: 900;
    flex-shrink: 0;
}

.lang-stats {
    display: flex;
    gap: 26px;
    flex-wrap: wrap;
    padding: 14px 0 16px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 16px;
}

.lang-stats span {
    color: var(--text-muted);
    font-size: 12.5px;
}

.lang-stats b {
    color: var(--purple);
    font-size: 16px;
    font-weight: 900;
    margin-right: 5px;
}

.lang-toolbar {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.lang-toolbar .form-control {
    flex: 1;
    min-width: 220px;
}

.lang-card {
    padding-top: 0;
}

.lang-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 0;
}

.lang-card.open .lang-head {
    border-bottom: 2px solid var(--purple);
    margin-bottom: 4px;
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 13px;
    flex: 1;
    min-width: 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
    padding: 0;
    color: var(--text);
}

.lang-plus {
    width: 24px;
    height: 24px;
    border-radius: 8px;
    background: rgba(168, 85, 247, 0.14);
    border: 1px solid rgba(168, 85, 247, 0.3);
    position: relative;
    flex-shrink: 0;
    transition: 0.2s;
}

.lang-plus::before,
.lang-plus::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--purple);
    border-radius: 2px;
    transform: translate(-50%, -50%);
    transition: 0.2s;
}

.lang-plus::before {
    width: 11px;
    height: 2px;
}

.lang-plus::after {
    width: 2px;
    height: 11px;
}

.lang-card.open .lang-plus {
    background: var(--purple);
    border-color: var(--purple);
}

.lang-card.open .lang-plus::before,
.lang-card.open .lang-plus::after {
    background: #fff;
}

.lang-card.open .lang-plus::after {
    height: 2px;
}

.lang-head-txt b {
    display: block;
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 2px;
}

.lang-head-txt small {
    color: var(--text-muted);
    font-size: 11.5px;
    font-weight: 700;
}

.lang-body {
    display: none;
}

.lang-card.open .lang-body {
    display: block;
}

.lang-save-top {
    flex-shrink: 0;
    display: none;
}

.lang-card.open .lang-save-top {
    display: inline-flex;
}

.lang-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 10px 0 6px;
}

.lang-cols span {
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 0.7px;
    color: var(--text-muted);
}

.lang-row {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.lang-row:last-child {
    border-bottom: none;
}

.lang-key {
    font-size: 10.5px;
    color: var(--text-muted);
    font-family: 'SF Mono', Menlo, Consolas, monospace;
    margin-bottom: 7px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-key i {
    font-style: normal;
    background: rgba(168, 85, 247, 0.16);
    color: var(--purple);
    border-radius: 99px;
    padding: 2px 8px;
    font-size: 9.5px;
    font-weight: 800;
    letter-spacing: 0.3px;
}

.lang-row.is-custom .lang-key {
    color: var(--purple);
}

.lang-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.lang-pair .form-control {
    font-size: 13px;
}

.lang-foot {
    padding-top: 16px;
    margin-top: 4px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: flex-end;
}

.lang-reset {
    text-align: center;
    padding: 10px 0 30px;
}

@media (max-width: 760px) {
    .lang-pair,
    .lang-cols {
        grid-template-columns: 1fr;
    }
}

.checkout-total-lead {
    margin-top: 22px;
    padding-top: 16px;
    padding-bottom: 14px;
    border-top: 1px solid var(--border);
}

.adm-sep {
    display: block !important;
    color: var(--purple) !important;
    font-size: 10.5px !important;
    letter-spacing: 0.8px !important;
    padding-top: 14px;
    margin-top: 6px;
    border-top: 1px solid var(--border);
}

.page-head {
    margin-bottom: 26px;
}

.nav-links a svg.nav-tools-icon,
.nav-tools-icon {
    width: 17px;
    height: 17px;
    flex-shrink: 0;
    filter: none;
}

.nav-links-wrap .nav-links a:hover svg.nav-tools-icon,
.nav-links-wrap .nav-links a.active svg.nav-tools-icon {
    filter: drop-shadow(0 0 7px rgba(199, 56, 251, 0.55));
}

.admin-nav-group {
    margin-bottom: 2px;
}

.admin-nav-group-head {
    display: flex;
    align-items: center;
    gap: 11px;
    width: 100%;
    padding: 11px 12px;
    border: none;
    background: none;
    border-radius: 10px;
    color: var(--text);
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    text-align: left;
    transition: 0.15s;
}

.admin-nav-group-head:hover {
    background: rgba(255, 255, 255, 0.04);
}

.admin-nav-group-name {
    flex: 1;
    min-width: 0;
}

.admin-nav-group-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--danger);
    flex-shrink: 0;
    box-shadow: 0 0 8px rgba(229, 57, 53, 0.6);
}

.admin-nav-group-chev {
    flex-shrink: 0;
    color: var(--text-muted);
    transition: transform 0.25s ease;
}

.admin-nav-group.open .admin-nav-group-chev {
    transform: rotate(180deg);
}

.admin-nav-group.open .admin-nav-group-dot {
    display: none;
}

.admin-nav-group-body {
    display: none;
    padding: 2px 0 6px 13px;
    margin-left: 12px;
    border-left: 1px solid var(--border);
}

.admin-nav-group.open .admin-nav-group-body {
    display: block;
}

.admin-nav-group-body .admin-nav-link {
    font-size: 13px;
    padding: 9px 11px;
}

.dash-split {
    display: grid;
    grid-template-columns: 1.7fr 1fr;
    gap: 18px;
    align-items: start;
}

.dash-split .dash-breakdown {
    order: 1;
}

.dash-split .dash-country {
    order: 2;
}

.dash-alltime {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.dash-alltime .stat-card {
    padding: 16px 14px;
    min-width: 0;
}

.dash-alltime .stat-label {
    font-size: 11.5px;
    line-height: 1.4;
}

.dash-alltime .stat-value {
    font-size: 21px;
    letter-spacing: -0.8px;
    word-break: break-word;
}

@media (max-width: 1400px) {
    .dash-alltime .stat-value {
        font-size: 18px;
    }
}

.dash-split > .card {
    margin-top: 0;
    min-width: 0;
}

@media (max-width: 1100px) {
    .dash-split {
        grid-template-columns: 1fr;
    }

    .dash-alltime {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 560px) {
    .dash-alltime {
        grid-template-columns: 1fr;
    }
}

.inv-compact .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 12px;
}

.inv-compact .form-group {
    margin-bottom: 12px;
}

.inv-compact .form-row .form-group {
    margin-bottom: 0;
}

.inv-compact label {
    font-size: 12.5px;
    margin-bottom: 5px;
}

.inv-compact .form-control {
    padding: 10px 13px;
}

.inv-compact span {
    margin-top: 4px !important;
    font-size: 11.5px !important;
}

@media (max-width: 760px) {
    .inv-compact .form-row {
        grid-template-columns: 1fr;
    }
}

.disc-row {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 14px;
    align-items: end;
}

.disc-row .form-group {
    margin-bottom: 0;
}

.disc-row .btn {
    white-space: nowrap;
}

@media (max-width: 760px) {
    .disc-row {
        grid-template-columns: 1fr;
    }

    .disc-row .form-group:last-child label {
        display: none;
    }
}

.clean-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 10px;
}

.clean-head h3 {
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.clean-head code {
    background: rgba(168, 85, 247, 0.1);
    color: var(--purple);
    padding: 2px 8px;
    border-radius: 5px;
    font-size: 11.5px;
}

.clean-tag {
    background: rgba(168, 85, 247, 0.16);
    color: var(--purple);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.4px;
    padding: 3px 9px;
    border-radius: 999px;
    text-transform: uppercase;
}

.clean-tag-warn {
    background: rgba(251, 191, 36, 0.16);
    color: #fbbf24;
}

.clean-size {
    font-size: 15px;
    font-weight: 900;
    color: var(--text-muted);
    white-space: nowrap;
    flex-shrink: 0;
}

.clean-note {
    color: var(--text-muted);
    font-size: 12.5px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.clean-nums {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 14px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 14px;
}

.clean-nums b {
    display: block;
    font-size: 19px;
    font-weight: 900;
    letter-spacing: -0.5px;
    margin-bottom: 2px;
}

.clean-nums span {
    color: var(--text-muted);
    font-size: 11.5px;
}

.clean-red {
    color: var(--danger);
}

.clean-bar {
    height: 6px;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.05);
    overflow: hidden;
    margin-bottom: 7px;
}

.clean-bar span {
    display: block;
    height: 100%;
    border-radius: 99px;
    background: linear-gradient(90deg, #fbbf24, var(--danger));
}

.clean-pct {
    color: var(--text-muted);
    font-size: 11.5px;
    margin-bottom: 16px;
}

.clean-form {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}

.clean-form label,
.clean-form span {
    color: var(--text-muted);
    font-size: 13px;
}

.clean-form .form-control {
    width: 86px;
    padding: 8px 11px;
}

.clean-form .btn {
    margin-left: auto;
}

.clean-form .btn[disabled] {
    opacity: 0.4;
    cursor: not-allowed;
}

.clean-card.has-old {
    border-color: rgba(251, 191, 36, 0.28);
}

@media (max-width: 620px) {
    .clean-nums {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .clean-form .btn {
        margin-left: 0;
        width: 100%;
    }
}

.tools-hero {
    display: grid;
    grid-template-columns: 1fr 1.12fr;
    gap: 48px;
    align-items: center;
    padding-top: 40px;
    margin-bottom: 34px;
    max-width: 100%;
}

.tools-hero-left {
    min-width: 0;
}

.tools-hero-right {
    min-width: 0;
}

.tools-hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(52, 211, 153, 0.09);
    border: 1px solid rgba(52, 211, 153, 0.3);
    color: var(--success);
    font-size: 12.5px;
    font-weight: 700;
    margin-bottom: 22px;
}

.tools-hero-pill-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--success);
    animation: toolsHeroPulse 2s infinite;
}

@keyframes toolsHeroPulse {
    0% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.5); }
    70% { box-shadow: 0 0 0 9px rgba(52, 211, 153, 0); }
    100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}

.tools-hero-title {
    font-size: 44px;
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 18px;
}

.tools-hero-accent {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tools-hero-sub {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.75;
    max-width: 520px;
    margin-bottom: 30px;
}

.tools-hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-grad-hero {
    background: var(--gradient);
    color: #fff;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 11px;
}

.btn-grad-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px -8px rgba(168, 85, 247, 0.6);
}

.btn-out-hero {
    background: transparent;
    color: #fff;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 11px;
    border: 1px solid rgba(168, 85, 247, 0.45);
}

.btn-out-hero:hover {
    border-color: var(--purple);
    background: var(--gradient-soft);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.28);
}

.tools-term {
    background: #0a0a16;
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.5);
    max-width: 100%;
}

.tools-term-top {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 15px;
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.02);
}

.tools-term-top i {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    display: block;
}

.tools-term-top i:nth-child(1) { background: #ff5f57; }
.tools-term-top i:nth-child(2) { background: #febc2e; }
.tools-term-top i:nth-child(3) { background: #28c840; }

.tools-term-top span {
    margin-left: 8px;
    font-size: 12px;
    color: var(--text-muted);
}

.tools-term-body {
    padding: 18px;
    font-family: 'SF Mono', 'Courier New', monospace;
    font-size: 13.5px;
    line-height: 1.95;
}

.tools-term-line {
    opacity: 0;
    animation: toolsTermAppear 0.4s forwards;
}

.tools-term-line:nth-child(1) { animation-delay: 0.2s; }
.tools-term-line:nth-child(2) { animation-delay: 0.7s; }
.tools-term-line:nth-child(3) { animation-delay: 1.1s; }
.tools-term-line:nth-child(4) { animation-delay: 1.5s; }
.tools-term-line:nth-child(5) { animation-delay: 1.9s; }
.tools-term-line:nth-child(6) { animation-delay: 2.3s; }
.tools-term-line:nth-child(7) { animation-delay: 2.7s; }

@keyframes toolsTermAppear {
    to { opacity: 1; }
}

.tools-term .tt-prompt { color: var(--text-muted); }
.tools-term .tt-accent { color: var(--purple); }
.tools-term .tt-ok { color: var(--success); }
.tools-term .tt-muted { color: var(--text-muted); }

.tools-term-cursor {
    display: inline-block;
    width: 8px;
    height: 15px;
    background: var(--purple);
    vertical-align: middle;
    margin-left: 2px;
    animation: toolsTermBlink 1s steps(2) infinite;
}

@keyframes toolsTermBlink {
    50% { opacity: 0; }
}

.tools-term-strip {
    display: flex;
    overflow: hidden;
    border-top: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.015);
}

.tools-term-track {
    display: flex;
    gap: 10px;
    padding: 12px 18px;
    white-space: nowrap;
    animation: toolsTermMarquee 20s linear infinite;
}

@keyframes toolsTermMarquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.tools-term-chip {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    font-family: 'SF Mono', 'Courier New', monospace;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 7px;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.28);
    color: #c4b5fd;
}

.tools-term-chip-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 6px var(--success);
}

@media (max-width: 860px) {
    .tools-hero {
        grid-template-columns: 1fr;
        gap: 34px;
    }
    .tools-hero-title {
        font-size: 34px;
        letter-spacing: -1px;
    }
}

.tools-hero-divider {
    position: relative;
    height: 1px;
    margin: 8px 0 40px;
    background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.5) 30%, rgba(79, 70, 229, 0.5) 70%, transparent);
}

.tools-hero-divider span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 220px;
    height: 3px;
    transform: translate(-50%, -50%);
    border-radius: 3px;
    background: linear-gradient(90deg, transparent, var(--purple), var(--blue), transparent);
    filter: blur(2px);
    opacity: 0.8;
}

@media (max-width: 640px) {
    .tools-hero-divider {
        margin: 4px 0 30px;
    }
}

.opt-stat {
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 18px 16px;
    text-align: center;
}

.opt-stat-value {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}

.opt-stat-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-edit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    max-width: 760px;
    margin-bottom: 16px;
}

.plan-edit-grid .form-group {
    margin-bottom: 0;
}

.plan-edit-wide {
    grid-column: span 2;
}

.plan-edit-check {
    display: flex;
    align-items: flex-end;
}

.plan-edit-check-label {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    white-space: nowrap;
    padding-bottom: 11px;
}

.plan-edit-check-label input {
    width: 16px;
    height: 16px;
    accent-color: var(--purple);
}

.plan-edit-actions {
    max-width: 760px;
}

@media (max-width: 720px) {
    .plan-edit-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .plan-edit-grid {
        grid-template-columns: 1fr;
    }
    .plan-edit-wide {
        grid-column: span 1;
    }
}

.plan-edit-card {
    max-width: 820px;
}

.plan-top-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.plan-top-check {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    white-space: nowrap;
    color: var(--text);
    cursor: pointer;
}

.plan-top-check input {
    width: 16px;
    height: 16px;
    accent-color: var(--purple);
    cursor: pointer;
}

.inv-top-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
    align-items: stretch;
}

.inv-create-card {
    margin-bottom: 0;
}

.inv-stats-2x2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 14px;
}

.inv-stats-2x2 .stat-card {
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 900px) {
    .inv-top-row {
        grid-template-columns: 1fr;
    }
}

.sl-card { max-width: 720px; }
.sl-row { display: flex; align-items: center; gap: 14px; padding: 16px; border: 1px solid var(--border); border-radius: 12px; margin-bottom: 12px; background: var(--bg); transition: border-color 0.2s ease; }
.sl-row:hover { border-color: var(--purple); }
.sl-ico { width: 44px; height: 44px; flex: 0 0 auto; border-radius: 11px; display: grid; place-items: center; }
.sl-ico svg { width: 22px; height: 22px; }
.sl-ico.li-tg { background: #229ed2; }
.sl-ico.li-wa { background: #25d366; }
.sl-ico.li-sig { background: #3a76f0; }
.sl-ico.li-grp { background: #8b5cf6; }
.sl-ico.li-em { background: #f59e0b; }
.sl-body { flex: 1; min-width: 0; }
.sl-lbl { font-size: 13px; font-weight: 700; margin-bottom: 5px; }
.sl-hint { font-size: 11px; color: var(--text-muted); font-weight: 400; margin-left: 4px; }
.sl-body input { width: 100%; background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px; padding: 9px 12px; color: #fff; font-size: 13.5px; outline: none; transition: border-color 0.2s ease; }
.sl-body input:focus { border-color: var(--purple); }
.sl-tgl { position: relative; width: 44px; height: 24px; flex: 0 0 auto; cursor: pointer; }
.sl-tgl input { opacity: 0; width: 0; height: 0; position: absolute; }
.sl-track { position: absolute; inset: 0; background: var(--border); border-radius: 12px; transition: background 0.2s ease; }
.sl-track::before { content: ""; position: absolute; width: 18px; height: 18px; left: 3px; top: 3px; background: #fff; border-radius: 50%; transition: transform 0.2s ease; }
.sl-tgl input:checked + .sl-track { background: var(--success); }
.sl-tgl input:checked + .sl-track::before { transform: translateX(20px); }
.sl-save { display: flex; justify-content: flex-end; margin-top: 8px; }