@charset "UTF-8";
/* =========================================================================
   ZACKAOV — MEMBER UI  ·  iOS 26 "Liquid Glass" Design System
   Single stylesheet for the member (client) frontend.
   Includes: reset · grid/utilities · components · plugin overrides.
   ========================================================================= */

/* ----------------------------------------------------------------- TOKENS */
:root {
    --font: "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        "Helvetica Neue", Arial, sans-serif;

    /* surfaces */
    --glass: rgba(255, 255, 255, .62);
    --glass-strong: rgba(255, 255, 255, .82);
    --glass-soft: rgba(255, 255, 255, .45);
    --stroke: rgba(255, 255, 255, .7);
    --hairline: rgba(15, 23, 42, .07);

    /* text */
    --text: #0b1224;
    --text-2: #56607a;
    --text-3: #8a93a8;

    /* brand */
    --accent: #6b5bff;
    --accent-2: #8a7bff;
    --accent-blue: #0a84ff;
    --accent-grad: linear-gradient(135deg, #0a84ff 0%, #8a7bff 55%, #6b5bff 100%);
    --green: #16a34a;
    --red: #ef4444;
    --amber: #f59e0b;

    /* shape & depth */
    --r-sm: 14px;
    --r: 20px;
    --r-lg: 28px;
    --r-pill: 999px;
    --blur: saturate(180%) blur(22px);
    --shadow: 0 8px 30px rgba(15, 23, 42, .10), 0 2px 6px rgba(15, 23, 42, .05);
    --shadow-lg: 0 24px 60px rgba(15, 23, 42, .16), 0 6px 16px rgba(15, 23, 42, .08);
    --shadow-inset: inset 0 1px 0 rgba(255, 255, 255, .65);
    --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ------------------------------------------------------------------- BASE */
*, *::before, *::after { box-sizing: border-box; }
* { scrollbar-width: none; -ms-overflow-style: none; -webkit-tap-highlight-color: transparent; }
*::-webkit-scrollbar { display: none !important; }

a, button, input, select, textarea, label, [role="button"], .zackaov-tab {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body, body.zackaov-light {
    margin: 0;
    min-height: 100vh;
    font-family: var(--font);
    font-size: 15px;
    line-height: 1.6;
    color: var(--text);
    background: #fff;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; transition: color .2s var(--ease); }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4, h5, h6 { margin: 0 0 .4em; font-weight: 700; letter-spacing: -.01em; }
p { margin: 0 0 .8em; }

/* ----------------------------------------------------------- LAYOUT GRID */
.container, .custom-container, .container-fluid {
    width: 100%;
    margin: 0 auto;
    padding: 0 16px;
}
.container, .custom-container { max-width: 1200px; }
.container-fluid { max-width: 100%; }

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -12px;
}
.row > [class*="col-"] { padding: 0 12px; width: 100%; }

.col-12 { width: 100%; }
.col-6 { width: 50%; }
.col-sm-12 { width: 100%; }

@media (min-width: 768px) {
    .col-md-6 { width: 50%; }
    .col-md-8 { width: 66.6667%; }
}
@media (min-width: 992px) {
    .col-lg-4 { width: 33.3333%; }
    .col-lg-5 { width: 41.6667%; }
    .col-lg-6 { width: 50%; }
    .col-lg-7 { width: 58.3333%; }
}
@media (min-width: 1200px) {
    .col-xl-4 { width: 33.3333%; }
    .col-xl-5 { width: 41.6667%; }
}

/* ----------------------------------------------------------- UTILITIES */
.d-none { display: none !important; }
.d-block { display: block !important; }
.d-flex { display: flex !important; }
.justify-content-center { justify-content: center !important; }
.align-items-center { align-items: center !important; }
.w-100 { width: 100% !important; }
.text-center { text-align: center !important; }
.text-uppercase { text-transform: uppercase !important; }
.text-light { color: #fff !important; }
.relative { position: relative; }
.absolute { position: absolute; }
.inset-0 { inset: 0; }
.inline-block { display: inline-block; }

@media (min-width: 992px) {
    .d-lg-none { display: none !important; }
    .d-lg-flex { display: flex !important; }
    .d-lg-block { display: block !important; }
}
@media (max-width: 991.98px) {
    .d-none.d-lg-flex, .d-none.d-lg-block { display: none !important; }
}

/* spacing scale (px values mirror legacy markup) */
.mt-1 { margin-top: 4px; }    .mt-3 { margin-top: 12px; }
.mt-10 { margin-top: 10px; }  .mt-15 { margin-top: 15px; }
.mt-20 { margin-top: 20px; }  .mt-25 { margin-top: 25px; }
.mt-30 { margin-top: 30px; }  .mt-50 { margin-top: 50px; }
.mb-2 { margin-bottom: 8px; } .mb-3 { margin-bottom: 12px; }
.mb-4 { margin-bottom: 16px; }.mb-5 { margin-bottom: 24px; }
.mb-20 { margin-bottom: 20px; }.mb-25 { margin-bottom: 25px; }
.mb-30 { margin-bottom: 30px; }
.pt-25 { padding-top: 25px; } .pt-50 { padding-top: 50px; }
.pb-10 { padding-bottom: 10px; } .pb-40 { padding-bottom: 40px; }
.pb-50 { padding-bottom: 50px; }

/* glass helper */
.glass {
    background: var(--glass);
    -webkit-backdrop-filter: var(--blur);
    backdrop-filter: var(--blur);
    border: 1px solid var(--stroke);
    box-shadow: var(--shadow), var(--shadow-inset);
}

/* ----------------------------------------------------------- PRELOADER */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(238, 241, 248, .85);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}
.lds-ripple { position: relative; width: 64px; height: 64px; }
.lds-ripple .lds-pos {
    position: absolute;
    border: 4px solid var(--accent);
    opacity: 1;
    border-radius: 50%;
    animation: lds-ripple 1.1s var(--ease) infinite;
}
.lds-ripple .lds-pos:nth-child(2) { animation-delay: -.55s; border-color: var(--accent-blue); }
@keyframes lds-ripple {
    0% { top: 28px; left: 28px; width: 0; height: 0; opacity: 0; }
    5% { top: 28px; left: 28px; width: 0; height: 0; opacity: 1; }
    100% { top: -1px; left: -1px; width: 58px; height: 58px; opacity: 0; }
}

/* =====================================================================
   HEADER · NAVIGATION (desktop)
   ===================================================================== */
/* Header ngoài tự nổi khi cuộn bằng CSS sticky chuẩn — mượt, không giật.
   Không dùng JS toggle position:fixed của theme (đó là nguyên nhân gây lỗi dính/giật cũ). */
.third-header-bg {
    position: sticky;
    /* Khoảng cách nổi 12px để ở đây thay vì margin-top của #sticky-header —
       margin bị mất khi phần tử dính sát mép trên (top:0), làm mất khoảng trống
       lúc cuộn. Đặt trực tiếp vào top thì khoảng cách được giữ nguyên mọi lúc. */
    top: 12px;
    z-index: 900;
}
#sticky-header {
    margin: 0 auto;
    max-width: 1240px;
    transition: box-shadow .25s ease;
}
/* Theme JS vẫn tự thêm class này khi cuộn quá 245px — vô hiệu hoá để nó không
   tự ý fixed chồng lên lớp sticky ở trên, tránh lặp lại lỗi giật/dính cũ. */
#sticky-header.sticky-menu {
    position: static !important;
    top: auto !important;
    left: auto !important;
    width: auto !important;
    margin: 0 auto !important;
    background-image: none !important;
    animation: none !important;
}
.zackaov-header-bottom-bg { height: 0; }

.main-menu nav {
    margin: 0;
    padding: 8px 18px;
    border-radius: var(--r-pill);
    /* Bỏ backdrop-filter ở đây — kết hợp với position:sticky của khung ngoài
       gây lỗi Chrome để lại vệt mờ khi cuộn (layer-promotion không sửa được
       triệt để). Tăng độ đục nền để bù lại phần hiệu ứng kính mờ đã bỏ. */
    background: rgba(255, 255, 255, .94);
    border: 1px solid var(--stroke);
    box-shadow: var(--shadow), var(--shadow-inset);
}
.navbar-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.navbar-wrap > ul {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.navbar-wrap > ul > li { position: relative; }
.navbar-wrap > ul > li > a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 16px;
    border-radius: var(--r-pill);
    font-weight: 600;
    font-size: 14px;
    color: var(--text-2);
    transition: all .25s var(--ease);
}
.navbar-wrap > ul > li > a:hover {
    color: var(--text);
    background: var(--glass-soft);
}
.navbar-wrap .right .zackaov-header-top-login-2 > ul {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.navbar-wrap .right a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 18px;
    border-radius: var(--r-pill);
    font-weight: 600;
    font-size: 14px;
    color: var(--text-2);
    transition: all .25s var(--ease);
}
.zackaov-header-top-login-2 > ul > li:last-child > a {
    color: #fff;
    background: var(--accent-grad);
    box-shadow: 0 6px 16px rgba(107, 91, 255, .35);
}
.zackaov-header-top-login-2 > ul > li:last-child > a:hover { }
.zackaov-header-top-login-2 > ul > li.zackaov-info-user > a {
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent) !important;
    box-shadow: none;
}
.zackaov-header-top-login-2 > ul > li.zackaov-info-user > a:hover { background: rgba(107, 91, 255, .08); }

/* submenus */
.submenu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    min-width: 230px;
    margin: 0;
    padding: 8px;
    list-style: none;
    border-radius: var(--r);
    background: var(--glass-strong);
    -webkit-backdrop-filter: var(--blur);
    backdrop-filter: var(--blur);
    border: 1px solid var(--stroke);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(.98);
    transform-origin: top;
    transition: all .26s var(--ease);
    z-index: 950;
}
.zackaov-info-user .submenu { left: auto; right: 0; }
.navbar-wrap li:hover > .submenu { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.submenu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: var(--r-sm);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-2);
}
.submenu li a:hover { background: rgba(107, 91, 255, .10); color: var(--accent); }
.zackaov-log-out { color: var(--red) !important; }

/* =====================================================================
   MOBILE HEADER · SIDEBAR
   ===================================================================== */
.zackaov-mobile-header-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1040;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 16px;
    padding-top: calc(10px + env(safe-area-inset-top, 0px));
    background: var(--glass-strong);
    -webkit-backdrop-filter: var(--blur);
    backdrop-filter: var(--blur);
    border-bottom: 1px solid var(--stroke);
    box-shadow: 0 2px 16px rgba(0, 0, 0, .08);
}
.zackaov-mobile-header-logo img { height: 32px; width: auto; }
.zackaov-mobile-header-right { display: flex; align-items: center; gap: 10px; }
.zackaov-mobile-menu-btn {
    -webkit-appearance: none;
    appearance: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    color: var(--text);
    flex-shrink: 0;
    outline: none;
    box-shadow: none;
    -webkit-tap-highlight-color: transparent;
}
.zackaov-mobile-menu-btn:focus,
.zackaov-mobile-menu-btn:focus-visible,
.zackaov-mobile-menu-btn:active {
    background: transparent;
    outline: none;
    box-shadow: none;
}
.zackaov-bar-icon { display: block; flex-shrink: 0; }
.zackaov-bar-icon rect {
    transform-origin: center;
    transition: transform .25s var(--ease), opacity .2s var(--ease);
}
/* hamburger morphs into an X while the sidebar is open (tap outside to close) */
.zackaov-mobile-menu-btn.active .zackaov-bar-icon rect:nth-child(1) { transform: translateY(5.75px) rotate(45deg); }
.zackaov-mobile-menu-btn.active .zackaov-bar-icon rect:nth-child(2) { opacity: 0; }
.zackaov-mobile-menu-btn.active .zackaov-bar-icon rect:nth-child(3) { transform: translateY(-5.75px) rotate(-45deg); }

/* off-canvas drawer — slides in from the left, dims the page behind it */
.zackaov-mobile-sidebar-overlay {
    position: fixed;
    inset: 0;
    z-index: 1100;
    background: rgba(0, 0, 0, .4);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .28s cubic-bezier(.4, 0, .2, 1);
}
.zackaov-mobile-sidebar-overlay.active { opacity: 1; pointer-events: all; }
.zackaov-mobile-sidebar {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 1200;
    width: min(82vw, 280px);
    padding: 18px;
    background: var(--glass-strong);
    -webkit-backdrop-filter: var(--blur);
    backdrop-filter: var(--blur);
    border-right: 1px solid var(--stroke);
    box-shadow: 4px 0 24px rgba(15, 23, 42, .12);
    transform: translateX(-100%);
    transition: transform .28s cubic-bezier(.4, 0, .2, 1);
    overflow-y: auto;
}
.zackaov-mobile-sidebar.active { transform: translateX(0); }
.zackaov-mobile-sidebar-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: -18px -18px 0;
    padding: 18px 18px 16px;
    border-bottom: 1px solid var(--hairline);
}
.zackaov-mobile-sidebar-logo img { height: 30px; width: auto; }
.zackaov-mobile-sidebar-menu { list-style: none; margin: 0 -18px; padding: 0; }
.zackaov-mobile-sidebar-menu > li { margin-bottom: 0; border-bottom: 1px solid var(--hairline); }
.zackaov-mobile-sidebar-menu a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    border-radius: 0;
    border-left: 4px solid transparent;
    font-weight: 500;
    font-size: 18px;
    color: var(--text-2);
    transition: background .15s var(--ease), color .15s var(--ease);
}
.zackaov-mobile-sidebar-menu a i { width: 24px; text-align: center; font-size: 19px; opacity: .65; transition: opacity .15s var(--ease); }
.zackaov-mobile-sidebar-menu a:hover { background: rgba(0, 0, 0, .04); }
/* leaf items (no submenu): active = two-tone accent wash + left accent bar */
.zackaov-mobile-sidebar-menu > li.active:not(.zackaov-has-submenu) > a {
    background: linear-gradient(135deg, rgba(107, 91, 255, .1), rgba(138, 123, 255, .1));
    border-left-color: var(--accent);
    color: var(--accent);
    font-weight: 700;
}
.zackaov-mobile-sidebar-menu > li.active:not(.zackaov-has-submenu) > a i { opacity: 1; color: var(--accent); }
/* the "Nạp Tiền" toggle row: expanded = plain neutral wash, no accent bar */
.zackaov-has-submenu.active > a { background: rgba(0, 0, 0, .04); }
.zackaov-submenu-arrow { margin-left: auto; font-size: 13px; opacity: .5; transition: transform .25s var(--ease); }
.zackaov-has-submenu.active .zackaov-submenu-arrow { transform: rotate(180deg); }
.zackaov-mobile-submenu {
    list-style: none;
    margin: 0;
    padding-left: 0;
    background: rgba(0, 0, 0, .02);
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s cubic-bezier(.4, 0, .2, 1);
}
.zackaov-has-submenu.active .zackaov-mobile-submenu { max-height: 160px; }
.zackaov-mobile-submenu a { padding: 14px 14px 14px 52px; border-left: 4px solid transparent; font-size: 18px; }
.zackaov-mobile-submenu a i { width: 24px; font-size: 19px; }
.zackaov-mobile-submenu li.active > a {
    background: linear-gradient(135deg, rgba(107, 91, 255, .1), rgba(138, 123, 255, .1));
    border-left-color: var(--accent);
    color: var(--accent);
    font-weight: 700;
}
.zackaov-logout-link { color: var(--red) !important; }
.zackaov-logout-link:hover { background: rgba(239, 68, 68, .08) !important; }

/* =====================================================================
   PAGE SECTIONS · TITLES
   ===================================================================== */
main { display: block; }
.third-about-area { position: relative; padding-top: 26px; }

.third-section-title h3 {
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 800;
    letter-spacing: -.02em;
    text-transform: uppercase;
    color: var(--text);
}
.third-section-title h3 span {
    background: var(--accent-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.zackaov-see-my-info-wrap { color: var(--text); }

/* =====================================================================
   CARDS — HOME CATEGORY GRID
   ===================================================================== */
.zackaov-hack-category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
@media (max-width: 767.98px) {
    .zackaov-hack-category-grid { grid-template-columns: repeat(auto-fill, minmax(min(250px, 100%), 1fr)); }
}
.zackaov-hack-card {
    display: flex;
    flex-direction: column;
    border-radius: var(--r-lg);
    overflow: hidden;
    background: var(--glass);
    -webkit-backdrop-filter: var(--blur);
    backdrop-filter: var(--blur);
    border: 1px solid var(--stroke);
    box-shadow: var(--shadow), var(--shadow-inset);
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.zackaov-hack-card:hover { box-shadow: var(--shadow-lg); }

/* Image full-bleed with fade + title overlay */
.zackaov-hack-card-image-wrapper {
    position: relative;
    overflow: hidden;
}
.zackaov-hack-card-image-link { display: block; width: 100%; height: 100%; }
.zackaov-hack-card-image {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    -webkit-mask-image: linear-gradient(to bottom, black 30%, transparent 85%);
    mask-image: linear-gradient(to bottom, black 30%, transparent 85%);
}
.zackaov-hack-card-image-wrapper::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10,10,20,.55) 20%, rgba(10,10,20,.1) 55%, transparent 100%);
    pointer-events: none;
    -webkit-mask-image: linear-gradient(to bottom, black 30%, transparent 85%);
    mask-image: linear-gradient(to bottom, black 30%, transparent 85%);
}
.zackaov-hack-card-img-title {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    z-index: 2;
    padding: 12px 14px 13px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.zackaov-hack-card-title {
    font-size: 17px;
    font-weight: 800;
    color: var(--text);
    margin: 0;
    width: 100%;
    text-align: center;
    line-height: 1.25;
}
.zackaov-hack-card-footer {
    margin-top: -8%;
    padding: 0 14px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 17px;
    position: relative;
    z-index: 2;
}
.zackaov-hack-view-link { display: block; width: 50%; }
.zackaov-hack-view-button {
    text-align: center;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--r-pill);
    font-weight: 800;
    font-size: 15px;
    color: #fff;
    background: var(--accent-grad);
    box-shadow: 0 6px 18px rgba(107,91,255,.32), inset 0 1px 0 rgba(255,255,255,.28);
    -webkit-backdrop-filter: var(--blur);
    backdrop-filter: var(--blur);
    transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}
.zackaov-hack-view-link:hover .zackaov-hack-view-button {
    box-shadow: 0 12px 28px rgba(107,91,255,.44), inset 0 1px 0 rgba(255,255,255,.32);
}

/* Homepage category card title — gradient underline */
.zackaov-hack-card-title { position: relative; padding-bottom: 12px; width: auto; align-self: center; }
.zackaov-hack-card-title::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 70%;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent 0%, rgba(107,139,255,.75) 28%, rgba(139,92,246,.95) 50%, rgba(214,51,132,.75) 72%, transparent 100%);
}

/* =====================================================================
   CARDS — GROUPS / PRODUCT ITEMS (buy key)
   ===================================================================== */
.zackaov-hack-items-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
@media (max-width: 767.98px) {
    .zackaov-hack-items-grid { grid-template-columns: repeat(auto-fill, minmax(min(260px, 100%), 1fr)); }
}
.zackaov-hack-item-box {
    display: flex;
    flex-direction: column;
    border-radius: var(--r-lg);
    overflow: hidden;
    background: var(--glass);
    -webkit-backdrop-filter: var(--blur);
    backdrop-filter: var(--blur);
    border: 1px solid var(--stroke);
    box-shadow: var(--shadow), var(--shadow-inset);
    color: var(--text);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.zackaov-hack-item-box:hover { box-shadow: var(--shadow-lg); }

/* Image — plain full bleed, no overlay */
.zackaov-hack-img-container {
    position: relative;
    aspect-ratio: 3 / 2;
    overflow: hidden;
}
.zackaov-hack-img-container img {
    width: 100%; height: 100%; object-fit: cover;
    display: block;
}
.zackaov-hack-name-title {
    position: relative;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -.01em;
    margin: 0;
    width: fit-content;
    max-width: 100%;
    align-self: center;
    color: var(--text);
    text-align: center;
    line-height: 1.3;
    padding-bottom: 12px;
}
.zackaov-hack-name-title::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 70%;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent 0%, rgba(107,139,255,.75) 28%, rgba(139,92,246,.95) 50%, rgba(214,51,132,.75) 72%, transparent 100%);
}

/* Status badge — solid pill, top-right of image */
.zackaov-hack-status { position: absolute; top: 10px; right: 10px; z-index: 3; }
.zackaov-hack-status span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: var(--r-pill);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .01em;
    line-height: 1;
    box-shadow: 0 4px 12px rgba(15, 23, 42, .18);
}
.zackaov-hack-status .active   { color: #16a34a; background: rgba(34, 197, 94, .16); border: 1px solid rgba(34, 197, 94, .35); }
.zackaov-hack-status .maintain { color: #dc2626; background: rgba(239, 68, 68, .16); border: 1px solid rgba(239, 68, 68, .35); }

/* Info area below image */
.zackaov-hack-info-area {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 14px 14px 16px;
}
.zackaov-hack-meta { display: flex; align-items: center; justify-content: space-between; gap: 16px; font-size: 12.5px; color: var(--text-3); }
.zackaov-hack-meta span { display: inline-flex; align-items: center; gap: 6px; }
.zackaov-hack-meta i { color: var(--text-3); }
.zackaov-hack-order-zone { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.zackaov-hack-bottom-row { display: flex; align-items: center; gap: 10px; }
.zackaov-hack-price { display: flex; flex-direction: column; margin-right: auto; line-height: 1.1; }
.zackaov-hack-price-label { font-size: 11px; color: var(--text-3); }
.zackaov-hack-price-value { font-size: 19px; font-weight: 800; color: var(--text); }
.zackaov-hack-guide-btn {
    display: grid;
    place-items: center;
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 10px;
    color: var(--text-2);
    background: var(--glass-soft);
    border: 1px solid var(--hairline);
    transition: .2s var(--ease);
}
.zackaov-hack-guide-btn:active { transform: scale(.98); }

/* Buy button — bottom row, next to price + guide icon */
.zackaov-hack-purchase-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    flex-shrink: 0;
    padding: 0 20px;
    height: 46px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 15px;
    letter-spacing: .01em;
    color: var(--text-2);
    background: var(--glass-soft);
    border: 1px solid var(--hairline);
    transition: .2s var(--ease);
    cursor: pointer;
}
.zackaov-hack-purchase-btn:active { transform: scale(.98); }

/* =====================================================================
   FORMS · INPUTS · SELECTS
   ===================================================================== */
main label { display: block; margin-bottom: 7px; font-size: 13px; font-weight: 600; color: var(--text-2); }

.zackaov-input-nice,
.zackaov-info-field input,
.zackaov-hack-package-dropdown,
select.zackaov-input-nice,
input[type="text"]:not([class*="dataTable"]),
input[type="email"],
input[type="password"],
input[type="number"],
input[type="search"],
input[type="tel"],
select,
textarea {
    width: 100%;
    height: 48px;
    padding: 0 16px;
    font-size: 16px;
    color: var(--text);
    background: var(--glass-soft);
    border: 1px solid var(--hairline);
    border-radius: var(--r-sm);
    outline: none;
    transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
    -webkit-appearance: none;
    appearance: none;
}
textarea { height: auto; min-height: 120px; padding: 12px 16px; line-height: 1.5; resize: vertical; }
select.zackaov-input-nice,
.zackaov-hack-package-dropdown {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2356607a' viewBox='0 0 16 16'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}
.zackaov-input-nice:focus,
.zackaov-info-field input:focus,
input:focus, select:focus, textarea:focus {
    border-color: var(--accent);
    background: var(--glass-strong);
    box-shadow: 0 0 0 4px rgba(107, 91, 255, .15);
}
input::placeholder { color: var(--text-3); }

.zackaov-password-wrapper { position: relative; }
.zackaov-password-wrapper input { padding-right: 35px; }
.zackaov-toggle-password {
    position: absolute;
    top: 50%;
    right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: var(--text-3);
    cursor: pointer;
    transition: .2s var(--ease);
    transform:translateY(-50%);
}
.zackaov-toggle-password:hover { color: var(--accent); background: rgba(107, 91, 255, .08); }
.zackaov-no-highlight { -webkit-tap-highlight-color: transparent; user-select: none; }
label.error { color: var(--red); font-size: 12px; font-weight: 600; margin-top: 6px; }
input.error, select.error { border-color: var(--red); }

/* =====================================================================
   BUTTONS
   ===================================================================== */
.zackaov-btn-users,
.zackaov-info-btn-submit,
.zackaov-btn-submit {
    width: 100%;
    height: 50px;
    border: none;
    border-radius: var(--r-pill);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .02em;
    color: #fff;
    background: var(--accent-grad);
    box-shadow: 0 8px 24px rgba(107,91,255,.32), inset 0 1px 0 rgba(255,255,255,.28);
    -webkit-backdrop-filter: var(--blur);
    backdrop-filter: var(--blur);
    transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.zackaov-btn-users:hover,
.zackaov-info-btn-submit:hover,
.zackaov-btn-submit:hover { box-shadow: 0 14px 32px rgba(107,91,255,.42), inset 0 1px 0 rgba(255,255,255,.32); }
.zackaov-btn-users:active,
.zackaov-info-btn-submit:active,
.zackaov-btn-submit:active { transform: scale(.98); }
.zackaov-info-btn-submit { width: auto; min-width: 180px; padding: 0 28px; display: block; margin-left: auto; }

.zackaov-info-logout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 52px;
    border-radius: var(--r-pill);
    font-weight: 800;
    font-size: 15px;
    color: var(--red) !important;
    background: var(--glass);
    border: 1px solid var(--stroke);
    -webkit-backdrop-filter: var(--blur);
    backdrop-filter: var(--blur);
    box-shadow: var(--shadow), var(--shadow-inset);
    transition: .22s var(--ease);
}
.zackaov-info-logout-btn:hover { background: rgba(239,68,68,.08); }

.zackaov-view-hack {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 12px 18px;
    border-radius: var(--r-pill);
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    background: var(--accent-grad);
    box-shadow: 0 8px 18px rgba(107,91,255,.3), inset 0 1px 0 rgba(255,255,255,.28);
    -webkit-backdrop-filter: var(--blur);
    backdrop-filter: var(--blur);
    transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.zackaov-view-hack:hover { box-shadow: 0 14px 28px rgba(107,91,255,.42), inset 0 1px 0 rgba(255,255,255,.32); }
.zackaov-view-hack-wrap { margin-top: 14px; }

/* =====================================================================
   GLASS PANEL — generic card / history / forms wrapper
   ===================================================================== */
.zackaov-info-card,
.zackaov-login-box,
.card.history,
.history,
.zackaov-nap-the,
.zackaov-qr-bank {
    background: var(--glass);
    -webkit-backdrop-filter: var(--blur);
    backdrop-filter: var(--blur);
    border: 1px solid var(--stroke);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow), var(--shadow-inset);
}
.zackaov-info-card { padding: 26px; }
.zackaov-vti-info-card { display: block; }
.zackaov-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
    gap: 16px;
}
.zackaov-info-grid-tk { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
.zackaov-info-grid-email { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (max-width: 767.98px) {
    .zackaov-info-grid-tk { grid-template-columns: 1fr; }
}
.zackaov-info-field input[readonly] { background: rgba(15, 23, 42, .03); color: var(--text-2); cursor: default; }

/* =====================================================================
   NẠP THẺ (card recharge)
   ===================================================================== */
.zackaov-nap-the { padding: 24px; }
.zackaov-box-submit {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 6px;
    padding: 0 12px;
}
.zackaov-note-warning {
    margin-bottom: 12px;
    font-size: 13px;
    color: var(--text-2);
    padding: 12px 14px;
    border-radius: var(--r-sm);
    background: rgba(245, 158, 11, .10);
    border: 1px solid rgba(245, 158, 11, .25);
}
.zackaov-note-star { color: var(--amber); font-weight: 700; }

/* =====================================================================
   QR BANK / CRYPTO
   ===================================================================== */
.zackaov-qr-bank { padding: 22px; text-align: center; height: 100%; }
.zackaov-qr-bank h5 { font-size: 14px; font-weight: 600; color: var(--text-2); }
.zackaov-qr-code { display: flex; justify-content: center; margin: 8px 0 4px; }
.zackaov-qr-container { padding: 12px; border-radius: var(--r); background: #fff; box-shadow: var(--shadow); }
.zackaov-qr-container img { width: 190px; height: 190px; border-radius: 10px; }
.zackaov-qr-scan {
    border-radius: var(--r);
    background: linear-gradient(180deg, transparent, rgba(107, 91, 255, .25), transparent);
    background-size: 100% 50%;
    background-repeat: no-repeat;
    animation: zk-scan 2.4s var(--ease) infinite;
    pointer-events: none;
}
@keyframes zk-scan { 0% { background-position: 0 -100%; } 100% { background-position: 0 200%; } }
.zackaov-qr-corners .corner {
    position: absolute;
    width: 22px;
    height: 22px;
    border: 3px solid var(--accent);
}
.corner.tl { top: 6px; left: 6px; border-right: 0; border-bottom: 0; border-top-left-radius: 8px; }
.corner.tr { top: 6px; right: 6px; border-left: 0; border-bottom: 0; border-top-right-radius: 8px; }
.corner.bl { bottom: 6px; left: 6px; border-right: 0; border-top: 0; border-bottom-left-radius: 8px; }
.corner.br { bottom: 6px; right: 6px; border-left: 0; border-top: 0; border-bottom-right-radius: 8px; }
.zackaov-qr-info { text-align: left; }
.zackaov-qr-info p {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
    padding-bottom: 8px;
    font-size: 14px;
    color: var(--text-2);
    border-bottom: 1px dashed var(--hairline);
}
.zackaov-qr-info p:last-child { border-bottom: 0; }
.zackaov-copy-btn {
    display: inline-grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 9px;
    color: var(--accent);
    background: rgba(107, 91, 255, .12);
    transition: .2s var(--ease);
}
.zackaov-copy-btn:hover { background: var(--accent); color: #fff; }

/* =====================================================================
   TABLES + DATATABLES
   ===================================================================== */
.card.history, .history { padding: 14px; overflow: hidden; }
.history .row { margin: 0 !important; }
table.table, table#lichsu-giaodich, table#datatable, table#datatable-usdt {
    width: 100% !important;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 14px;
}
table.table thead th {
    padding: 13px 14px;
    text-align: left;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .03em;
    color: #fff;
    background: var(--accent-grad);
    white-space: nowrap;
    border: none;
}
table.table thead tr th:first-child { border-radius: var(--r-sm) 0 0 var(--r-sm); }
table.table thead tr th:last-child { border-radius: 0 var(--r-sm) var(--r-sm) 0; }
table.table tbody td {
    padding: 13px 14px;
    color: var(--text-2);
    border-bottom: 1px solid var(--hairline);
    white-space: nowrap;
}
table.table tbody tr:hover td { background: rgba(107, 91, 255, .05); }
.zackaov-nowrap-table { white-space: nowrap; }
.zackaov-custom-scroll { display: block; overflow-x: auto; }
.badge {
    display: inline-block;
    padding: 5px 10px;
    border-radius: var(--r-pill);
    font-size: 12px;
    font-weight: 600;
}
.badge-dark { background: rgba(15, 23, 42, .08); color: var(--text-2); }

/* DataTables controls */
.dataTables_wrapper { padding: 4px; width: 100%; max-width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter { margin-bottom: 12px; font-size: 13px; color: var(--text-2); }
.dataTables_wrapper .dataTables_filter input,
.dataTables_wrapper .dataTables_length select {
    height: 38px;
    padding: 0 12px;
    border: 1px solid var(--hairline);
    border-radius: var(--r-sm);
    background: var(--glass-soft);
    color: var(--text);
}
.dataTables_wrapper .dataTables_info { margin-top: 12px; font-size: 13px; color: var(--text-3); }
.dataTables_wrapper .dataTables_paginate { margin-top: 12px; display: flex; gap: 6px; flex-wrap: wrap; justify-content: flex-end; }
.dataTables_wrapper .dataTables_paginate .paginate_button {
    padding: 8px 14px !important;
    border-radius: var(--r-sm) !important;
    border: 1px solid var(--hairline) !important;
    background: var(--glass-soft) !important;
    color: var(--text-2) !important;
    font-weight: 600;
    cursor: pointer;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.current {
    background: var(--accent-grad) !important;
    color: #fff !important;
    border-color: transparent !important;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled { opacity: .45; }

/* =====================================================================
   LICENSE HISTORY CARDS
   ===================================================================== */
.zackaov-history-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
    gap: 20px;
}
.zackaov-card-history {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 18px;
    border-radius: var(--r-lg);
    background: var(--glass);
    -webkit-backdrop-filter: var(--blur);
    backdrop-filter: var(--blur);
    border: 1px solid var(--stroke);
    box-shadow: var(--shadow), var(--shadow-inset);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.zackaov-card-history:hover { box-shadow: var(--shadow-lg); }
.zackaov-card-header-history { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.zackaov-key-label-history {
    font-weight: 800;
    font-size: 14px;
    color: var(--accent);
}
.zackaov-link-btn-history {
    padding: 7px 14px;
    border-radius: var(--r-pill);
    font-size: 12px;
    font-weight: 700;
    color: var(--accent);
    background: transparent;
    border: 1.5px solid var(--accent);
}
.zackaov-key-box-history {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 14px;
    border-radius: var(--r-sm);
    background: rgba(15, 23, 42, .04);
    border: 1px dashed var(--hairline);
    word-break: break-all;
    overflow-wrap: anywhere;
    cursor: pointer;
    font-family: var(--font);
    font-weight: 600;
    font-size: 13px;
    color: var(--text);
}
.zackaov-key-box-history span { min-width: 0; overflow-wrap: anywhere; word-break: break-all; }
.zackaov-copy-btn-history {
    flex-shrink: 0;
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 10px;
    color: var(--accent);
    background: rgba(107, 91, 255, .12);
    transition: .2s var(--ease);
}
.zackaov-copy-btn-history:hover { background: var(--accent); color: #fff; }
.zackaov-info-history { display: grid; gap: 6px; }
.zackaov-info-history p { display: flex; align-items: center; flex-wrap: wrap; gap: 4px 8px; margin: 0; font-size: 13.5px; color: var(--text-2); overflow: hidden; }
.zackaov-info-history p b { min-width: 0; word-break: break-all; overflow-wrap: anywhere; }
.zackaov-info-history i { color: var(--accent); width: 16px; flex-shrink: 0; text-align: center; }
.zackaov-info-label { color: var(--text-3); flex-shrink: 0; }

.zackaov-no-data {
    padding: 40px;
    text-align: center;
    font-weight: 600;
    color: var(--text-3);
    border-radius: var(--r-lg);
    background: var(--glass-soft);
    border: 1px dashed var(--hairline);
}

/* pagination */
.zackaov-pagination-number {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 28px;
    flex-wrap: wrap;
}
.zackaov-page-btn, .zackaov-page-num {
    display: grid;
    place-items: center;
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    border-radius: var(--r-sm);
    font-weight: 700;
    font-size: 14px;
    color: var(--text-2);
    background: var(--glass);
    border: 1px solid var(--stroke);
    -webkit-backdrop-filter: var(--blur);
    backdrop-filter: var(--blur);
    transition: .2s var(--ease);
}
.zackaov-page-num.active { background: var(--accent-grad); color: #fff; border-color: transparent; }
.zackaov-page-btn:hover:not(.disabled), .zackaov-page-num:hover { color: var(--accent); }
.zackaov-page-num.active:hover { color: #fff; }
.zackaov-page-btn.disabled { opacity: .45; pointer-events: none; }
.zackaov-dots { color: var(--text-3); padding: 0 4px; }

/* =====================================================================
   LOGIN · REGISTER · FORGOT BOX
   ===================================================================== */
.zackaov-login-box {
    width: 100%;
    max-width: 560px;
    margin: 6vh auto;
    padding: 8px;
}
.zackaov-login-box-body, .zackaov-box-custom { padding: 26px; color: var(--text); }
.zackaov-input-forms { margin-top: 12px; }
.zackaov-captcha-center { display: flex; justify-content: center; width: 100%; margin-top: 12px; }
.cf-turnstile { display: inline-block; }
#form-register-login small, #form-register-login p { font-size: 13.5px; color: var(--text-2); }
#form-register-login a { color: var(--accent); font-weight: 600; }
#form-register-login a:hover { text-decoration: underline; }

/* =====================================================================
   BLOG
   ===================================================================== */
.zackaov-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(290px, 100%), 1fr));
    gap: 24px;
}
.zackaov-blog-card {
    display: flex;
    flex-direction: column;
    border-radius: var(--r-lg);
    overflow: hidden;
    background: var(--glass);
    -webkit-backdrop-filter: var(--blur);
    backdrop-filter: var(--blur);
    border: 1px solid var(--stroke);
    box-shadow: var(--shadow), var(--shadow-inset);
    transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.zackaov-blog-card:hover { box-shadow: var(--shadow-lg); }
.zackaov-blog-image-wrapper { aspect-ratio: 16 / 9; overflow: hidden; }
.zackaov-blog-image { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.zackaov-blog-card:hover .zackaov-blog-image { transform: scale(1.06); }
.zackaov-blog-content { display: flex; flex-direction: column; gap: 10px; padding: 18px; }
.zackaov-blog-meta { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px; }
.zackaov-blog-icon { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; color: var(--text-3); }
.zackaov-blog-icon i { color: var(--accent); }
.zackaov-blog-title { font-size: 18px; font-weight: 700; margin: 0; }
.zackaov-blog-title a { color: var(--text); }
.zackaov-blog-title a:hover { color: var(--accent); }
.zackaov-blog-excerpt {
    margin: 0;
    font-size: 14px;
    color: var(--text-2);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.zackaov-blog-overlay { display: flex; justify-content: flex-end; margin-top: auto; }
.zackaov-read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    border-radius: var(--r-pill);
    font-weight: 700;
    font-size: 13px;
    color: var(--accent);
    background: rgba(107, 91, 255, .10);
    transition: .25s var(--ease);
}
.zackaov-read-more-btn:hover { background: var(--accent); color: #fff; }

/* blog detail */
.zackaov-vti-blog-card {
    padding: 28px;
    border-radius: var(--r-lg);
    background: var(--glass);
    -webkit-backdrop-filter: var(--blur);
    backdrop-filter: var(--blur);
    border: 1px solid var(--stroke);
    box-shadow: var(--shadow), var(--shadow-inset);
}
.zackaov-badge-rating { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.zackaov-badge-trending {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .04em;
    color: #fff;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.zackaov-rating-stars { color: var(--amber); font-size: 14px; }
.zackaov-vti-blog-title { font-size: clamp(22px, 3vw, 30px); font-weight: 800; color: var(--text); }
.zackaov-vti-blog-desc { margin-top: 16px; font-size: 18px; line-height: 1.6; color: var(--text-2); }
.zackaov-vti-blog-content { color: var(--text); line-height: 1.8; }
.zackaov-vti-blog-content img { border-radius: var(--r); margin: 14px 0; }
.zackaov-share-blog {
    display: flex;
    width: fit-content;
    margin-left: auto;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 10px 18px;
    border-radius: var(--r-pill);
    font-weight: 700;
    font-size: 14px;
    color: var(--accent);
    background: rgba(107, 91, 255, .10);
    cursor: pointer;
    transition: .25s var(--ease);
}
.zackaov-share-blog:hover { background: var(--accent); color: #fff; }

/* view hack guide */
.zackaov-title-video {
    display: inline-block;
    width: fit-content;
    font-size: 16px;
    font-weight: 800;
    color: var(--text);
    margin: 18px 0 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--hairline);
}
.zackaov-title-video:first-child { margin-top: 0; }
#video-huongdan, .zackaov-info-list-details {
    height: 100%;
    padding: 20px;
    border-radius: var(--r-lg);
    background: var(--glass);
    -webkit-backdrop-filter: var(--blur);
    backdrop-filter: var(--blur);
    border: 1px solid var(--stroke);
    box-shadow: var(--shadow), var(--shadow-inset);
}
#video-huongdan iframe, #video-huongdan video { width: 100%; border-radius: var(--r); aspect-ratio: 16/9; border: 0; }

/* =====================================================================
   ALERTS
   ===================================================================== */
.alert {
    padding: 14px 18px;
    border-radius: var(--r-sm);
    font-weight: 600;
}
.alert-warning { background: rgba(245, 158, 11, .12); border: 1px solid rgba(245, 158, 11, .3); color: #92600c; }

/* =====================================================================
   POPUP (custom overlay)
   ===================================================================== */
.zackaov-popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 1300;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(11, 18, 36, .4);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    transition: opacity .25s var(--ease);
}
.zackaov-popup-overlay.hide { opacity: 0; }
.zackaov-popup-container {
    width: 100%;
    max-width: 440px;
    border-radius: var(--r-lg);
    overflow: hidden;
    background: var(--glass-strong);
    -webkit-backdrop-filter: var(--blur);
    backdrop-filter: var(--blur);
    border: 1px solid var(--stroke);
    box-shadow: var(--shadow-lg);
    animation: zk-pop .4s var(--ease);
}
@keyframes zk-pop { from { opacity: 0; transform: scale(.92) translateY(12px); } to { opacity: 1; transform: none; } }
.zackaov-popup-header { padding: 20px 22px 0; }
.zackaov-popup-title { display: flex; align-items: center; gap: 8px; font-size: 19px; font-weight: 800; color: var(--text); }
.zackaov-verify { width: 22px; height: 22px; }
.zackaov-popup-body { padding: 14px 22px; color: var(--text-2); font-size: 14.5px; }
.zackaov-popup-buttons { display: flex; gap: 10px; padding: 0 22px 22px; }
.zackaov-popup-buttons .btn:only-child { flex: 0 1 auto; min-width: 150px; padding-left: 32px; padding-right: 32px; margin-inline: auto; }
.zackaov-popup-buttons .btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    height: 46px;
    border: none;
    border-radius: var(--r-sm);
    font-weight: 700;
    font-size: 14px;
    transition: transform .25s var(--ease);
}
.zackaov-popup-buttons .btn:hover { }
.zackaov-popup-buttons .close { color: #fff; background: var(--accent-grad); box-shadow: 0 8px 18px rgba(107, 91, 255, .3); }
.zackaov-popup-buttons .close1 { color: var(--text-2); background: var(--glass-soft); border: 1px solid var(--hairline); }

/* =====================================================================
   BOOTSTRAP MODAL (fallback for #payment etc.)
   ===================================================================== */
.modal { position: fixed; inset: 0; z-index: 1350; display: none; }
.modal.show, .modal.in { display: block; }
.modal-backdrop { position: fixed; inset: 0; background: rgba(11, 18, 36, .4); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
.modal-dialog { position: relative; max-width: 500px; margin: 8vh auto; padding: 0 16px; z-index: 1; }
.modal-content {
    border-radius: var(--r-lg);
    background: var(--glass-strong);
    -webkit-backdrop-filter: var(--blur);
    backdrop-filter: var(--blur);
    border: 1px solid var(--stroke);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}
.modal-header, .modal-footer { padding: 18px 22px; }
.modal-header { border-bottom: 1px solid var(--hairline); }
.modal-body { padding: 20px 22px; }
.modal-footer { border-top: 1px solid var(--hairline); display: flex; gap: 10px; justify-content: flex-end; }

/* =====================================================================
   SWEETALERT2 + TOASTR theming
   ===================================================================== */
.swal2-popup.custom_modal {
    border-radius: var(--r-lg) !important;
    background: var(--glass-strong) !important;
    -webkit-backdrop-filter: var(--blur) !important;
    backdrop-filter: var(--blur) !important;
    border: 1px solid var(--stroke) !important;
    box-shadow: var(--shadow-lg) !important;
}
.swal2-popup { border-radius: var(--r-lg) !important; }
/* keep ALL swal text on the same SF Pro / system font as the rest of the UI */
.swal2-popup,
.swal2-popup.custom_modal,
.swal2-title,
.swal2-html-container,
.swal2-styled { font-family: var(--font) !important; }
.swal2-styled.swal2-confirm {
    border-radius: var(--r-sm) !important;
    background: var(--accent-grad) !important;
    box-shadow: 0 8px 18px rgba(107, 91, 255, .3) !important;
}
.swal2-styled.swal2-cancel { border-radius: var(--r-sm) !important; }
.swal2-title { color: var(--text) !important; font-weight: 800 !important; letter-spacing: -.01em; font-size: 18px !important; }
.swal2-input { box-sizing: border-box !important; width: calc(100% - 2rem) !important; margin: 12px auto !important; height: 48px !important; padding: 0 14px !important; font-size: 16px !important; line-height: 48px !important; border-radius: var(--r-sm) !important; border: 1.5px solid rgba(107,91,255,.35) !important; background: #fff !important; color: var(--text) !important; }

/* ---- fix success/error/etc. icon rings on the glass popup ----
   swal2 paints the masking wedges with the popup background colour, which on
   our translucent glass surface leaves an ugly white "broken ring". Force the
   masks transparent and keep the icon strokes/rings on brand colours.        */
.swal2-icon { border: .25em solid transparent !important; }
.swal2-icon.swal2-success {
    border-color: rgba(22, 163, 74, .25) !important;
    color: var(--green) !important;
}
.swal2-icon.swal2-success .swal2-success-circular-line-left,
.swal2-icon.swal2-success .swal2-success-circular-line-right,
.swal2-icon.swal2-success .swal2-success-fix { background-color: transparent !important; }
.swal2-icon.swal2-success .swal2-success-ring { border-color: rgba(22, 163, 74, .30) !important; }
.swal2-icon.swal2-success .swal2-success-line-tip,
.swal2-icon.swal2-success .swal2-success-line-long { background-color: var(--green) !important; }
.swal2-icon.swal2-error {
    border-color: rgba(239, 68, 68, .25) !important;
    color: var(--red) !important;
}
.swal2-icon.swal2-error .swal2-x-mark-line-left,
.swal2-icon.swal2-error .swal2-x-mark-line-right { background-color: var(--red) !important; }
.swal2-icon.swal2-warning { border-color: rgba(245, 158, 11, .30) !important; color: var(--amber) !important; }
.swal2-icon.swal2-info    { border-color: rgba(10, 132, 255, .30) !important; color: var(--accent-blue) !important; }
.swal2-icon.swal2-question{ border-color: rgba(107, 91, 255, .30) !important; color: var(--accent) !important; }

/* toastr core (folded in so member.css is the only stylesheet needed) */
#toast-container { position: fixed; z-index: 1400; pointer-events: none; }
#toast-container.toast-top-right { top: 16px; right: 16px; }
#toast-container.toast-top-center { top: 16px; left: 50%; transform: translateX(-50%); }
#toast-container.toast-bottom-right { bottom: 16px; right: 16px; }
#toast-container > div {
    position: relative;
    width: 320px;
    max-width: calc(100vw - 32px);
    margin: 0 0 10px;
    padding: 14px 18px 14px 46px;
    color: #fff;
    border-radius: var(--r-sm) !important;
    box-shadow: var(--shadow-lg) !important;
    opacity: 1 !important;
    pointer-events: auto;
    background-repeat: no-repeat;
    background-position: 14px center;
    background-size: 20px;
}
#toast-container > .toast-success { background-color: var(--green); }
#toast-container > .toast-error   { background-color: var(--red); }
#toast-container > .toast-info    { background-color: var(--accent-blue); }
#toast-container > .toast-warning { background-color: var(--amber); }
#toast-container .toast-title { font-weight: 700; margin-bottom: 2px; }
#toast-container .toast-message { font-size: 13.5px; }
.toast-close-button { position: absolute; top: 8px; right: 10px; color: #fff; opacity: .8; font-size: 18px; background: none; border: 0; }
.toast-progress { position: absolute; left: 0; bottom: 0; height: 3px; background: rgba(255, 255, 255, .5); }

/* =====================================================================
   FOOTER  ·  floating glass card (iOS 26)
   ===================================================================== */
.zackaov-site-footer { margin-top: 64px; padding-bottom: 28px; border-top: 1px solid var(--hairline); }
.zackaov-footer-card { position: relative; padding: 40px clamp(20px, 4vw, 48px) 0; }
.zackaov-footer-grid {
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    padding-bottom: 34px;
}
.zackaov-footer-cols { display: grid; grid-template-columns: 1fr 1fr; column-gap: 80px; row-gap: 12px; }
.zackaov-footer-logo-img { height: 46px; width: auto; margin-bottom: 14px; }
.zackaov-footer-desc { font-size: 14px; color: var(--text-2); max-width: 340px; }
.zackaov-footer-social { display: flex; gap: 10px; margin-top: 16px; }
.zackaov-social-link {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    font-size: 18px;
    color: var(--text-2);
    background: var(--glass-soft);
    border: 1px solid var(--hairline);
    transition: .28s var(--ease);
}
.zackaov-social-link:hover { color: #fff; box-shadow: 0 10px 22px rgba(15, 23, 42, .18); }
.zackaov-social-yt:hover { background: #ff0033; border-color: transparent; }
.zackaov-social-tt:hover { background: #000; border-color: transparent; }
.zackaov-social-tg:hover { background: #229ed9; border-color: transparent; }
.zackaov-footer-heading {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--text);
    margin: 0 0 6px;
}
.zackaov-footer-cols a { display: inline-flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 500; color: var(--text-2); }
.zackaov-footer-cols a i { font-size: 13px; width: 14px; text-align: center; color: var(--accent); transition: transform .25s var(--ease); }
.zackaov-footer-cols a:hover { color: var(--accent); }
.zackaov-footer-cols a:hover i { transform: translateX(4px); }
.zackaov-footer-bottom {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 12px;
    flex-wrap: wrap;
    padding: 20px 0;
    border-top: 1px solid var(--hairline);
}
.zackaov-copyright p { margin: 0; font-size: 13px; color: var(--text-3); }
.zackaov-footer-legal { display: flex; align-items: center; gap: 12px; font-size: 13px; }
.zackaov-footer-legal a { color: var(--text-2); font-weight: 500; }
.zackaov-footer-legal a:hover { color: var(--accent); }
.zackaov-footer-divider { color: var(--text-3); }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 991.98px) {
    .third-about-area { padding-top: 16px; }
}
@media (max-width: 575.98px) {
    .zackaov-info-card { padding: 18px; }
    .zackaov-hack-purchase-btn { height: 46px; }
    .zackaov-popup-buttons { flex-direction: column-reverse; }
}

/* =====================================================================
   POLISH & FIXES — equal-height grids, banners, misc wrappers
   ===================================================================== */

/* home category grid: real grid item is .zackaov-hack-card-col */
.zackaov-hack-card-col { display: flex; }
.zackaov-hack-card-col > .zackaov-hack-card { width: 100%; }
.zackaov-hack-card-image-link { display: block; height: 100%; }
.zackaov-hack-game { width: 100%; }
.zackaov-hack-main-container { width: 100%; }

/* generic wrappers used as plain blocks */
.info { width: 100%; }
.logo img { width: auto; }
.mt-2 { margin-top: 8px; }

/* desktop nav logo (shown only < lg via d-lg-none) */
#sticky-header .logo img { max-height: 40px; }

/* admin notice banner (home) */
.zackaov-tb-admin {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 18px 0 0;
    padding: 14px 18px;
    border-radius: var(--r);
    background: var(--glass);
    -webkit-backdrop-filter: var(--blur);
    backdrop-filter: var(--blur);
    border: 1px solid var(--stroke);
    box-shadow: var(--shadow), var(--shadow-inset);
}
.zackaov-tb-admin > i {
    flex-shrink: 0;
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    color: #fff;
    background: var(--accent-grad);
    animation: zk-bell 2.6s var(--ease) infinite;
}
@keyframes zk-bell {
    0%, 92%, 100% { transform: rotate(0); }
    94% { transform: rotate(12deg); }
    96% { transform: rotate(-10deg); }
    98% { transform: rotate(6deg); }
}
.zackaov-tb-text { font-size: 14px; color: var(--text-2); }
.zackaov-tb-text a { color: var(--accent); font-weight: 700; }

/* log table helper cells */
.text-sm { font-size: 13px; }
.text-gray-800 { color: var(--text-2); }

/* footer brand column tweaks */
.zackaov-footer-brand { max-width: 380px; }
.zackaov-footer-logo-link { display: inline-block; }

/* legacy header containers (neutralize old theme rules) */
.home-six-header, .menu-style-two, .main-menu { background: transparent; }

/* ---- single header per breakpoint (kill duplicate bars) ---- */
/* desktop logo inside nav is legacy/duplicate — never show it */
#sticky-header .logo.d-lg-none { display: none !important; }

@media (max-width: 991.98px) {
    /* hide the desktop nav pill entirely on mobile; custom bar handles it */
    .main-menu { display: none !important; }
}
@media (min-width: 992px) {
    /* hide mobile-only chrome on desktop */
    .zackaov-mobile-header-bar,
    .zackaov-mobile-sidebar,
    .zackaov-mobile-sidebar-overlay { display: none !important; }
}

/* meanmenu output from legacy main.js — fully neutralized */
.mean-bar, .mean-nav, a.meanmenu-reveal, .mean-container { display: none !important; }
.main-menu nav { position: static !important; }

/* meanmenu (mobile menu generated by main.js) — keep hidden, we use our own sidebar */
.zackaov-mobile-menu { display: none !important; }

/* selects render native arrow off + custom one already added; normalize option color */
select option { color: #000; }

/* tables inside .history get rounded clipping */
.card.history, .history { border-radius: var(--r-lg); }

/* SweetAlert spacing nicety */
.swal2-html-container { color: var(--text-2) !important; }

/* smooth focus-visible accessibility ring */
a:focus-visible, button:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
    border-radius: 8px;
}

/* page enter animation for main sections */
main > section { animation: zk-fade .5s var(--ease) both; }
@keyframes zk-fade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* =====================================================================
   MOBILE BOTTOM TAB BAR (iOS 26 floating glass dock)
   ===================================================================== */
.zackaov-tabbar {
    position: fixed;
    left: 12px;
    right: 12px;
    width: auto;
    max-width: 460px;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    /* no translateX needed — left+right anchoring avoids iOS layout-width bug */
    margin: 0 auto;
    z-index: 1050;
    display: flex;
    align-items: stretch;
    gap: 2px;
    padding: 7px;
    border-radius: var(--r-pill);
    background: var(--glass-strong);
    -webkit-backdrop-filter: var(--blur);
    backdrop-filter: var(--blur);
    border: 1px solid var(--stroke);
    box-shadow: var(--shadow-lg), var(--shadow-inset);
}
.zackaov-tab {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 8px 2px;
    border: none;
    background: transparent;
    border-radius: 16px;
    color: var(--text-3);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: -.01em;
    line-height: 1;
    text-align: center;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    transition: color .28s var(--ease), background .28s var(--ease), transform .15s var(--ease);
}
.zackaov-tab i { font-size: 18px; line-height: 1; transition: transform .28s var(--ease); }
.zackaov-tab span { width: 100%; white-space: nowrap; font-size: 11px; }
.zackaov-tab:hover { color: var(--text-2); }
.zackaov-tab.active { color: var(--accent); background: rgba(107, 91, 255, .12); }
.zackaov-tab.active i { transform: translateY(-1px); }
.zackaov-tab:active { transform: scale(.93); }

/* slim glass top bar: balance pill (logged-in) */
.zackaov-mobile-balance {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: var(--r-pill);
    background: rgba(22, 163, 74, .12);
    color: var(--green);
    font-weight: 700;
    font-size: 13px;
    white-space: nowrap;
}
.zackaov-mobile-balance i { font-size: 13px; }

/* bottom dock retired in favor of the header hamburger + sidebar above */
.zackaov-tabbar { display: none !important; }

@media (max-width: 991.98px) {
    /* leave room for the fixed top bar only (no floating dock anymore) */
    body { padding-top: calc(62px + env(safe-area-inset-top, 0px)); padding-bottom: env(safe-area-inset-bottom, 0px); }
    /* never let a wide child force the page wider than the viewport
       (this is what protects the off-canvas sidebar from the iOS zoom-out bug) */
    html, body { overflow-x: hidden; max-width: 100%; }
    .zackaov-site-footer { margin-bottom: 8px; }
}
@media (min-width: 992px) {
    .zackaov-tabbar,
    .zackaov-mobile-header-bar,
    .zackaov-mobile-balance { display: none !important; }
}

/* ===== 666Pay nạp Bank ===== */
.pay666-card{max-width:520px;margin:0 auto 30px;background:#fff;border:1px solid #eef0f5;border-radius:20px;padding:22px;box-shadow:0 10px 30px rgba(80,90,160,.08);}
.pay666-head{display:flex;align-items:center;justify-content:space-between;gap:10px;flex-wrap:wrap;margin-bottom:18px;}
.pay666-head .ttl{font-weight:800;color:#1e293b;font-size:17px;display:flex;align-items:center;gap:8px;}
.pay666-head .ttl i{color:#6366f1;}
.pay666-km{font-weight:700;color:#15803d;background:#dcfce7;padding:6px 12px;border-radius:999px;font-size:12.5px;white-space:nowrap;}
.pay666-label{display:block;font-weight:600;color:#475569;margin-bottom:8px;font-size:14px;}
.pay666-input-wrap{position:relative;margin-bottom:16px;}
.pay666-input-wrap input{width:100%;height:58px;border:2px solid #e2e8f0;border-radius:14px;padding:0 46px 0 16px;font-size:20px;font-weight:500;color:#0f172a;background:#f8fafc;transition:.2s;outline:none;}
.pay666-input-wrap input:focus{border-color:#6366f1;background:#fff;box-shadow:0 0 0 4px rgba(99,102,241,.12);}
.pay666-input-wrap input::placeholder{font-weight:500;color:#cbd5e1;font-size:16px;}
.pay666-suffix{position:absolute;right:16px;top:50%;transform:translateY(-50%);font-size:18px;font-weight:400;color:#94a3b8;pointer-events:none;}
.pay666-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:10px;margin-bottom:16px;}
.pay666-quick{border:2px solid #e2e8f0;background:#fff;border-radius:12px;padding:13px 6px;font-weight:700;font-size:15px;color:#334155;cursor:pointer;transition:.15s;-webkit-tap-highlight-color:transparent;}
.pay666-quick:hover{border-color:#c7d2fe;background:#f5f7ff;}
.pay666-quick.active{border-color:transparent;background:linear-gradient(135deg,#6366f1,#8b5cf6);color:#fff;box-shadow:0 6px 16px rgba(99,102,241,.35);}
.pay666-summary{background:#f8fafc;border:1px dashed #d8dee9;border-radius:14px;padding:10px 16px;margin-bottom:16px;}
.pay666-summary .r{display:flex;justify-content:space-between;align-items:center;padding:5px 0;font-size:14px;color:#64748b;}
.pay666-summary .r b{color:#0f172a;font-weight:700;}
.pay666-summary .tot{border-top:1px solid #e6eaf2;margin-top:4px;padding-top:9px;}
.pay666-summary .tot b{color:#6d28d9;font-size:18px;}
.pay666-submit{width:100%;height:54px;border:none;border-radius:14px;background:linear-gradient(135deg,#6366f1,#8b5cf6);color:#fff;font-weight:800;font-size:16px;letter-spacing:.5px;cursor:pointer;transition:.2s;box-shadow:0 8px 20px rgba(99,102,241,.35);display:flex;align-items:center;justify-content:center;gap:8px;}
.pay666-submit:hover{filter:brightness(1.06);}
.pay666-submit:disabled{opacity:.7;cursor:not-allowed;transform:none;}
@media(max-width:480px){.pay666-grid{grid-template-columns:repeat(2,1fr);}.pay666-input-wrap input{font-size:20px;height:54px;}}
.pay666-guide{max-width:520px;margin:0 auto 30px;background:#fff;border:1px solid #eef0f5;border-radius:18px;overflow:hidden;box-shadow:0 10px 30px rgba(80,90,160,.08);}
.pay666-guide-head{background:linear-gradient(135deg,#f59e0b,#f97316);color:#fff;font-weight:800;font-size:16px;padding:12px 20px;}
.pay666-guide-body{padding:18px 20px;}
.pay666-guide-body ul{margin:0 0 14px;padding-left:18px;}
.pay666-guide-body li{font-size:14px;color:#334155;line-height:1.7;margin-bottom:8px;}
.pay666-note{background:#eff6ff;border:1px solid #dbeafe;border-radius:12px;padding:12px 14px;font-size:13.5px;color:#1e3a8a;line-height:1.6;}
.pay666-warn{margin:14px 0 0;font-size:13.5px;font-weight:700;color:#dc2626;line-height:1.6;}
.pay666-warn a{color:#2563eb;text-decoration:underline;word-break:break-all;}
.pay666-warncard{max-width:520px;margin:0 auto 30px;background:rgba(255,241,242,.55);backdrop-filter:blur(22px) saturate(180%);-webkit-backdrop-filter:blur(22px) saturate(180%);border:1px solid rgba(255,255,255,.55);border-radius:22px;padding:16px 20px;color:#dc2626;font-weight:700;font-size:14px;line-height:1.55;text-align:center;box-shadow:0 8px 32px rgba(220,38,38,.12),inset 0 1px 0 rgba(255,255,255,.85),inset 0 -1px 0 rgba(220,38,38,.06);}
.pay666-warncard i{margin-right:4px;}
#datatable666 thead th{color:#fff !important;background:linear-gradient(135deg,#6366f1,#8b5cf6) !important;}
.p6-btn{border:none;border-radius:8px;padding:6px 12px;font-size:13px;font-weight:700;cursor:pointer;text-decoration:none;display:inline-block;white-space:nowrap;transition:.15s;}
.p6-pay{background:linear-gradient(135deg,#6366f1,#8b5cf6);color:#fff;}
.p6-pay:hover{filter:brightness(1.07);color:#fff;}
.p6-check{background:#eef2ff;color:#4f46e5;}
.p6-check:hover{background:#e0e7ff;color:#4f46e5;}
.p6-check:disabled{opacity:.6;cursor:not-allowed;}

/* ===== ACC LIÊN QUÂN (bán acc) ===== */
/* Trang chủ: chia 2 bên key | acc */
.zackaov-home-side { margin-bottom: 30px; }
@media (min-width: 992px) {
    .zackaov-home-key { padding-right: 28px; }
    .zackaov-home-acc { padding-left: 28px; }
}
/* Trang nhóm acc /view-acc: giá + kho + nút mua + nút lưu ý */
.zackaov-acc-meta { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin: 4px 0 10px; }
.zackaov-acc-price { color: #e3342f; font-weight: 800; font-size: 18px; margin: 0; line-height: 1; }
.zackaov-acc-stock { font-size: 13px; font-weight: 600; color: #16a34a; background: rgba(22,163,74,.10); padding: 5px 12px; border-radius: 999px; margin: 0; white-space: nowrap; line-height: 1; }
.zackaov-acc-stock b { color: #16a34a; font-weight: 800; }
.zackaov-acc-actions { display: flex; gap: 8px; align-items: stretch; }
.zackaov-acc-note-btn { flex: 0 0 auto; height: 48px; padding: 0 18px; border: none; border-radius: 10px; font-weight: 800; font-size: 14px; letter-spacing: .01em; color: #fff; cursor: pointer; white-space: nowrap; background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 45%, #f97316 100%); box-shadow: 0 6px 18px rgba(245,158,11,.34), inset 0 1px 0 rgba(255,255,255,.30); -webkit-backdrop-filter: var(--blur); backdrop-filter: var(--blur); transition: transform .22s var(--ease), box-shadow .22s var(--ease); }
.zackaov-acc-note-btn:hover { box-shadow: 0 12px 28px rgba(245,158,11,.46), inset 0 1px 0 rgba(255,255,255,.34); }
.zackaov-acc-note-btn:active { transform: scale(.98); }
.zackaov-acc-note-btn i { margin-right: 6px; }
.zackaov-btn-buy-acc { flex: 1 1 auto; width: auto; }
.zackaov-btn-buy-acc:hover { transform: none; }
.zackaov-btn-buy-acc:disabled { background: #9ca3af !important; box-shadow: none !important; cursor: not-allowed; transform: none; }
.zackaov-acc-note-popup { text-align: left; color: #374151; line-height: 1.6; }
.zackaov-acc-note-popup img { max-width: 100%; height: auto; border-radius: 6px; }
.zackaov-download-acc-btn { display: inline-flex; align-items: center; gap: 8px; padding: 11px 22px; border-radius: 10px; font-weight: 700; font-size: 14px; color: #fff; text-decoration: none; background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%); box-shadow: 0 6px 18px rgba(22,163,74,.30), inset 0 1px 0 rgba(255,255,255,.28); -webkit-backdrop-filter: var(--blur); backdrop-filter: var(--blur); transition: box-shadow .22s var(--ease), filter .22s var(--ease); }
.zackaov-download-acc-btn:hover { color: #fff; filter: brightness(1.05); box-shadow: 0 10px 26px rgba(22,163,74,.42), inset 0 1px 0 rgba(255,255,255,.32); }
.zackaov-download-acc-btn i { font-size: 15px; }
.zackaov-download-acc-order { width: 100%; justify-content: center; }
.zackaov-order-qty { font-size: 12px; font-weight: 700; color: #16a34a; background: rgba(22,163,74,.12); padding: 3px 10px; border-radius: 999px; }
.zackaov-order-actions { display: flex; gap: 8px; align-items: stretch; }
.zackaov-order-actions .zackaov-download-acc-order { flex: 1; width: auto; }
.zackaov-order-view-btn { flex: 0 0 auto; display: inline-flex; align-items: center; gap: 6px; padding: 11px 18px; border: none; border-radius: 10px; font-weight: 700; font-size: 14px; color: #fff; cursor: pointer; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); box-shadow: 0 6px 18px rgba(107,91,255,.30), inset 0 1px 0 rgba(255,255,255,.28); -webkit-backdrop-filter: var(--blur); backdrop-filter: var(--blur); }
.zackaov-order-view-btn i { font-size: 14px; }
.zackaov-popup-acc { display: grid; gap: 14px; text-align: left; max-height: 50vh; overflow-y: auto; -webkit-overflow-scrolling: touch; padding-right: 4px; }
.zackaov-popup-acc-item { display: grid; gap: 8px; }
.zackaov-popup-acc-no { font-weight: 800; color: var(--accent); font-size: 13px; }
.zackaov-key-box-history.copied { border-color: #16a34a !important; background: rgba(22,163,74,.12) !important; }
.zackaov-acc-fields { display: grid; gap: 8px; }
.zackaov-acc-field-text { min-width: 0; overflow-wrap: anywhere; word-break: break-all; }
.zackaov-acc-field-label { color: #6b7280; font-weight: 700; margin-right: 4px; }
