/* ============================================================
   NEXZOPAY — Dashboard Global CSS (Clean v2)
   Cleaned: 2026-09-11
   Duplicate sections removed: coin-float-up (4→1), progress-bar (4→1)
   ------------------------------------------------------------
   Compatible: Chrome, Safari (iOS+macOS), Edge, Firefox, Android Chrome
   iOS + Android + Web compatible
   ============================================================ */

/* ============================================================
   1. ROOT VARIABLES
============================================================ */
:root {
    --tl-brand: #54F39A;
    --tl-brand-2: #2ecc71;
    --tl-brand-light: #7dffb8;
    --tl-brand-dark: #0a2e1f;
    --tl-brand-soft: rgba(84, 243, 154, 0.12);
    --tl-brand-border: rgba(84, 243, 154, 0.25);
    --tl-brand-glow: rgba(84, 243, 154, 0.5);
    --tl-bg: #0b0f17;
    --tl-bg-2: #0f1420;
    --tl-bg-3: #0a1724;
    --tl-text: #f1f5f9;
    --tl-text-muted: #94a3b8;
    --tl-line: rgba(84, 243, 154, 0.08);

    --safe-top: env(safe-area-inset-top, 0px);
    --safe-bottom: env(safe-area-inset-bottom, 0px);
    --safe-left: env(safe-area-inset-left, 0px);
    --safe-right: env(safe-area-inset-right, 0px);
}

/* ============================================================
   2. GLOBAL RESET / iOS FIXES
============================================================ */
*, *::before, *::after {
    -webkit-tap-highlight-color: transparent;
}

html, body {
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -webkit-overflow-scrolling: touch;
}

input, textarea, select, .form-control {
    font-size: 16px;
}

@media (max-width: 767.98px) {
    input, textarea, select, .form-control {
        font-size: 16px !important;
    }
}

a, button, .btn, .nav-link, .menu-link, .nv-item {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

/* ============================================================
   3. ANIMATIONS — Unique Keyframes Only
============================================================ */
@keyframes tl-btn-shine {
    0%   { transform: translateX(-120%) skewX(-25deg); }
    100% { transform: translateX(220%) skewX(-25deg); }
}
@keyframes tl-pulse {
    0%   { box-shadow: 0 0 0 0 var(--tl-brand-glow); }
    70%  { box-shadow: 0 0 0 10px rgba(84, 243, 154, 0); }
    100% { box-shadow: 0 0 0 0 rgba(84, 243, 154, 0); }
}
@keyframes tl-progress-shimmer {
    0%   { transform: translateX(-100%); }
    100% { transform: translateX(200%); }
}
@keyframes tl-fade-up {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes coin-float-up {
    0%   { opacity: 0; transform: translateX(-50%) translateY(0) scale(0.7); }
    15%  { opacity: 1; transform: translateX(-50%) translateY(-8px) scale(1.1); }
    70%  { opacity: 1; transform: translateX(-50%) translateY(-32px) scale(1); }
    100% { opacity: 0; transform: translateX(-50%) translateY(-48px) scale(0.85); }
}
@keyframes coin-icon-bounce {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
    20%      { transform: translateY(-5px) rotate(-12deg) scale(1.15); }
    50%      { transform: translateY(-2px) rotate(0deg) scale(1.05); }
    80%      { transform: translateY(-3px) rotate(10deg) scale(1.1); }
}
@keyframes coin-number-glow {
    0%   { color: inherit; text-shadow: none; transform: scale(1); }
    25%  { color: #54F39A; text-shadow: 0 0 18px rgba(84, 243, 154, 0.95); transform: scale(1.08); }
    60%  { color: #54F39A; text-shadow: 0 0 12px rgba(84, 243, 154, 0.6); transform: scale(1.04); }
    100% { color: inherit; text-shadow: none; transform: scale(1); }
}
@keyframes coin-sparkle-burst {
    0%   { opacity: 1; transform: translate(-50%, -50%) scale(0) rotate(0deg); }
    40%  { opacity: 1; transform: translate(-50%, -50%) scale(1.3) rotate(140deg); }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(0) rotate(360deg); }
}
@keyframes ripple-grow {
    to { transform: scale(4); opacity: 0; }
}
@keyframes bell-shake {
    0%, 100% { transform: rotate(0deg); }
    10%      { transform: rotate(-15deg); }
    20%      { transform: rotate(15deg); }
    30%      { transform: rotate(-10deg); }
    40%      { transform: rotate(10deg); }
    50%      { transform: rotate(0deg); }
}
@keyframes bell-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
    70%  { box-shadow: 0 0 0 8px rgba(239, 68, 68, 0); }
    100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}
@keyframes skeleton-shimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
@keyframes empty-float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}
@keyframes nx-btn-shine {
    0%   { transform: translateX(-150%) skewX(-25deg); }
    100% { transform: translateX(250%) skewX(-25deg); }
}
@keyframes nx-heart-beat {
    0%, 100% { transform: scale(1); }
    25%      { transform: scale(1.2); }
    50%      { transform: scale(1); }
    75%      { transform: scale(1.15); }
}

/* ============================================================
   4. SIDEBAR
============================================================ */
.layout-menu.menu-vertical {
    background: linear-gradient(180deg, #0f1420 0%, #0a1724 100%) !important;
    border-right: 1px solid rgba(84, 243, 154, 0.08) !important;
    box-shadow: 0 0 40px -20px rgba(84, 243, 154, 0.15);
    -webkit-overflow-scrolling: touch;
}
.layout-menu .app-brand {
    padding: 20px !important;
    border-bottom: 1px solid rgba(84, 243, 154, 0.08) !important;
    background: linear-gradient(180deg, rgba(84, 243, 154, 0.04), transparent) !important;
}
.layout-menu .app-brand img,
.layout-menu .app-brand svg {
    -webkit-filter: drop-shadow(0 0 8px rgba(84, 243, 154, 0.3));
            filter: drop-shadow(0 0 8px rgba(84, 243, 154, 0.3));
    transition: filter 0.3s ease;
}
.layout-menu .app-brand:hover img,
.layout-menu .app-brand:hover svg {
    -webkit-filter: drop-shadow(0 0 14px rgba(84, 243, 154, 0.55));
            filter: drop-shadow(0 0 14px rgba(84, 243, 154, 0.55));
}
.layout-menu .menu-header-text {
    color: rgba(148, 163, 184, 0.7) !important;
    font-size: 0.68rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.14em !important;
    text-transform: uppercase !important;
}
.layout-menu .menu-item { margin: 4px 0; position: relative; }
.layout-menu .menu-link {
    color: rgba(255, 255, 255, 0.7) !important;
    font-weight: 500 !important;
    font-size: 13.5px !important;
    min-height: 44px;
    padding: 10px 16px !important;
    margin: 0 12px !important;
    border-radius: 12px !important;
    border: 1px solid transparent !important;
    position: relative;
    overflow: hidden;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}
.layout-menu .menu-link .menu-icon,
.layout-menu .menu-link svg.menu-icon {
    color: rgba(255, 255, 255, 0.6) !important;
    width: 22px !important;
    height: 22px !important;
    font-size: 22px;
    transition: color 0.25s ease, transform 0.25s ease;
    flex-shrink: 0;
}
.layout-menu .menu-link:hover {
    color: #ffffff !important;
    background: rgba(84, 243, 154, 0.08) !important;
    border-color: rgba(84, 243, 154, 0.15) !important;
    transform: translateX(3px);
}
.layout-menu .menu-link:hover .menu-icon,
.layout-menu .menu-link:hover svg.menu-icon {
    color: #54F39A !important;
    transform: scale(1.1);
}
.layout-menu .menu-item.active > .menu-link {
    color: #54F39A !important;
    background: linear-gradient(90deg,
        rgba(84, 243, 154, 0.18) 0%,
        rgba(84, 243, 154, 0.06) 70%,
        rgba(84, 243, 154, 0.02) 100%) !important;
    border-color: rgba(84, 243, 154, 0.3) !important;
    font-weight: 700 !important;
    box-shadow: inset 3px 0 0 #54F39A, 0 6px 20px -8px rgba(84, 243, 154, 0.5);
}
.layout-menu .menu-item.active > .menu-link .menu-icon,
.layout-menu .menu-item.active > .menu-link svg.menu-icon {
    color: #54F39A !important;
    -webkit-filter: drop-shadow(0 0 6px rgba(84, 243, 154, 0.6));
            filter: drop-shadow(0 0 6px rgba(84, 243, 154, 0.6));
}
.layout-menu .menu-item.active > .menu-link::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 45%; height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.15) 50%, transparent 100%);
    transform: translateX(-150%) skewX(-25deg);
    animation: tl-btn-shine 3.5s ease-in-out infinite;
    pointer-events: none;
    border-radius: 12px;
}
.layout-menu .menu-item.active > .menu-link::before {
    content: '';
    position: absolute;
    top: 20%; left: 0;
    width: 3px; height: 60%;
    background: #54F39A;
    border-radius: 0 4px 4px 0;
    box-shadow: 0 0 12px rgba(84, 243, 154, 0.8);
}
.layout-menu .menu-sub {
    background: rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    margin: 6px 12px 6px 24px;
    padding: 6px 0;
    border-left: 1px solid rgba(84, 243, 154, 0.1);
}
.layout-menu .menu-sub .menu-link {
    min-height: 38px;
    padding: 8px 14px !important;
    margin: 2px 8px !important;
    font-size: 13px !important;
    border-radius: 10px !important;
}
.layout-menu .menu-sub .menu-item.active > .menu-link {
    background: rgba(84, 243, 154, 0.12) !important;
    border-color: rgba(84, 243, 154, 0.25) !important;
    box-shadow: inset 2px 0 0 #54F39A, 0 4px 12px -6px rgba(84, 243, 154, 0.4);
}
.layout-menu .menu-sub .menu-item.active > .menu-link::after,
.layout-menu .menu-sub .menu-item.active > .menu-link::before { display: none; }
.layout-menu .menu-link .badge {
    background: linear-gradient(135deg, #54F39A, #2ecc71) !important;
    color: #0a2e1f !important;
    font-weight: 800 !important;
    font-size: 10px !important;
    padding: 4px 8px !important;
    border-radius: 6px !important;
    box-shadow: 0 2px 8px rgba(84, 243, 154, 0.4);
    min-width: 24px;
    text-align: center;
}
.layout-menu .menu-link .badge.bg-warning {
    background: linear-gradient(135deg, #fbbf24, #f59e0b) !important;
    color: #2a1f05 !important;
}
.layout-menu .menu-link .badge.bg-danger {
    background: linear-gradient(135deg, #ef4444, #dc2626) !important;
    color: #fff !important;
}
.layout-menu .menu-inner-shadow { display: none !important; }

/* ============================================================
   5. NAVBAR
============================================================ */
.layout-navbar.navbar-detached {
    background: rgba(11, 15, 23, 0.85) !important;
    -webkit-backdrop-filter: saturate(180%) blur(20px) !important;
            backdrop-filter: saturate(180%) blur(20px) !important;
    border: 1px solid rgba(84, 243, 154, 0.1) !important;
    border-radius: 16px !important;
    min-height: 62px !important;
    padding: 8px 20px !important;
    margin: 12px 20px 0 !important;
    box-shadow: 0 4px 24px -8px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
    -webkit-overflow-scrolling: touch;
}
.layout-navbar.navbar-detached:hover {
    border-color: rgba(84, 243, 154, 0.2) !important;
}
.layout-navbar .layout-menu-toggle a {
    color: #54F39A !important;
    background: rgba(84, 243, 154, 0.08);
    border: 1px solid rgba(84, 243, 154, 0.2);
    padding: 8px 12px !important;
    border-radius: 10px;
    transition: all 0.25s ease;
    min-height: 44px;
    min-width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}
.layout-navbar .layout-menu-toggle a:hover {
    background: rgba(84, 243, 154, 0.15);
    transform: scale(1.05);
}
.layout-navbar .btn {
    border-radius: 10px !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    padding: 8px 16px !important;
    border: 1px solid transparent !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    -webkit-appearance: none;
            appearance: none;
}
.layout-navbar .btn.bg-primary,
.layout-navbar .btn.btn-primary {
    background: linear-gradient(135deg, #54F39A 0%, #2ecc71 100%) !important;
    color: #0a2e1f !important;
    box-shadow: 0 4px 14px -4px rgba(84, 243, 154, 0.5) !important;
}
.layout-navbar .btn.bg-primary::after,
.layout-navbar .btn.btn-primary::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transform: translateX(-120%) skewX(-25deg);
    animation: tl-btn-shine 3.5s ease-in-out infinite;
    pointer-events: none;
    border-radius: inherit;
}
.layout-navbar .btn.bg-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px -6px rgba(84, 243, 154, 0.7) !important;
}
.layout-navbar .btn.bg-primary:active {
    transform: translateY(0) scale(0.98);
}
.layout-navbar .btn.bg-secondary {
    background: rgba(255, 255, 255, 0.04) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
}
.layout-navbar .btn.bg-secondary:hover {
    background: rgba(84, 243, 154, 0.1) !important;
    border-color: rgba(84, 243, 154, 0.35) !important;
    color: #54F39A !important;
    transform: translateY(-2px);
}
.layout-navbar .theme-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.25s ease;
    min-height: 40px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    -webkit-appearance: none;
            appearance: none;
}
.layout-navbar .theme-toggle:hover {
    background: rgba(84, 243, 154, 0.1);
    border-color: rgba(84, 243, 154, 0.35);
    color: #54F39A;
}
.layout-navbar .theme-toggle i {
    font-size: 14px;
    transition: transform 0.4s ease;
}
.layout-navbar .theme-toggle:hover i {
    transform: rotate(180deg);
}
.layout-navbar .navbar-dropdown > .nav-link {
    background: linear-gradient(135deg, rgba(84, 243, 154, 0.12), rgba(84, 243, 154, 0.04)) !important;
    border: 1px solid rgba(84, 243, 154, 0.25) !important;
    color: #ffffff !important;
    border-radius: 12px !important;
    padding: 8px 14px !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}
.layout-navbar .navbar-dropdown > .nav-link:hover {
    border-color: rgba(84, 243, 154, 0.5) !important;
    box-shadow: 0 0 18px rgba(84, 243, 154, 0.4);
    transform: translateY(-1px);
}
.layout-navbar .avatar { position: relative; -webkit-tap-highlight-color: transparent; }
.layout-navbar .avatar img {
    width: 38px;
    height: 38px;
    border-radius: 50% !important;
    object-fit: cover;
    border: 2px solid #54F39A !important;
    box-shadow: 0 0 0 3px rgba(84, 243, 154, 0.15), 0 4px 12px rgba(84, 243, 154, 0.35);
    transition: all 0.3s ease;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
}
.layout-navbar .avatar:hover img { transform: scale(1.08); }
.layout-navbar .avatar.avatar-online::after {
    background: #54F39A !important;
    box-shadow: 0 0 0 2px #0b0f17, 0 0 8px rgba(84, 243, 154, 0.8) !important;
}
.layout-navbar .dropdown-menu {
    background: linear-gradient(160deg, #0f1420 0%, #0a1724 100%) !important;
    border: 1px solid rgba(84, 243, 154, 0.15) !important;
    border-radius: 16px !important;
    box-shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(84, 243, 154, 0.05) !important;
    padding: 8px !important;
    min-width: 240px;
    max-width: calc(100vw - 32px);
    margin-top: 10px !important;
    -webkit-overflow-scrolling: touch;
}
.layout-navbar .dropdown-item {
    color: rgba(255, 255, 255, 0.75) !important;
    padding: 12px 16px !important;
    border-radius: 10px !important;
    font-size: 13.5px !important;
    font-weight: 500;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    min-height: 44px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}
.layout-navbar .dropdown-item i {
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.2s ease, transform 0.2s ease;
    margin-right: 8px;
}
.layout-navbar .dropdown-item:hover,
.layout-navbar .dropdown-item:active {
    background: rgba(84, 243, 154, 0.1) !important;
    color: #54F39A !important;
    transform: translateX(3px);
}
.layout-navbar .dropdown-item:hover i {
    color: #54F39A;
    transform: scale(1.15);
}
.layout-navbar .dropdown-divider {
    border-color: rgba(84, 243, 154, 0.1) !important;
    margin: 8px 0 !important;
}

/* ============================================================
   6. GLOBAL CARDS
============================================================ */
.card, .new-carder-card, .offer-card, .shop-card, .leaderboard-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease !important;
    position: relative;
    overflow: hidden;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
}
.card:hover, .offer-card:hover, .shop-card:hover {
    transform: translateY(-6px);
    border-color: rgba(84, 243, 154, 0.4) !important;
    box-shadow: 0 20px 50px -20px rgba(84, 243, 154, 0.5) !important;
}
.offer-card::before, .shop-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--tl-brand), transparent);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 3;
    pointer-events: none;
}
.offer-card:hover::before, .shop-card:hover::before { opacity: 1; }
.offer-card .card-footer .f-w-600,
.offer-card .card-footer .f-w-600.text-white {
    color: var(--tl-brand) !important;
    text-shadow: 0 0 16px rgba(84, 243, 154, 0.35);
}

/* ============================================================
   7. BUTTONS
============================================================ */
.btn-primary, .btn-success {
    position: relative;
    overflow: hidden;
    min-height: 40px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    -webkit-appearance: none;
            appearance: none;
}
.btn-primary::after, .btn-success::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.45) 50%, transparent 100%);
    transform: translateX(-120%) skewX(-25deg);
    animation: tl-btn-shine 3s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}
.btn-primary:active, .btn-success:active { transform: scale(0.98); }

/* ============================================================
   8. AVATARS (all pages)
============================================================ */
.swiper-slide .rounded-circle img,
.navbar .avatar img,
.layout-navbar .avatar img,
.dropdown-toggle .avatar img,
.user-avatar img,
.profile-avatar img {
    border: 2px solid var(--tl-brand) !important;
    box-shadow: 0 0 0 2px rgba(84, 243, 154, 0.15), 0 2px 8px rgba(84, 243, 154, 0.35) !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
}

/* ============================================================
   9. MODALS
============================================================ */
.modal-content {
    border: 1px solid rgba(84, 243, 154, 0.2) !important;
    box-shadow: 0 25px 70px -20px rgba(84, 243, 154, 0.4) !important;
}
.modal .btn-primary { position: relative; overflow: hidden; }
.modal .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px -10px rgba(84, 243, 154, 0.8) !important;
}
.modal-dialog-scrollable .modal-body { -webkit-overflow-scrolling: touch; }

/* ============================================================
   10. PROGRESS BARS
============================================================ */
.progress-bar {
    position: relative;
    overflow: hidden;
}
.progress-bar::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 40%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: tl-progress-shimmer 2.5s ease-in-out infinite;
    pointer-events: none;
    border-radius: inherit;
}

/* ============================================================
   11. NAV PILLS
============================================================ */
.nav-pills .nav-link {
    transition: all 0.25s ease;
    min-height: 40px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}
.nav-pills .nav-link.active {
    background: linear-gradient(135deg, #54F39A, #2ecc71) !important;
    color: #0a2e1f !important;
    box-shadow: 0 6px 18px -6px rgba(84, 243, 154, 0.6) !important;
}

/* ============================================================
   12. TABLES
============================================================ */
.table-hover > tbody > tr:hover > * {
    background: rgba(84, 243, 154, 0.05) !important;
}
.table-responsive { -webkit-overflow-scrolling: touch; }

/* ============================================================
   13. OLD FOOTER (.content-footer)
============================================================ */
.content-footer.footer {
    background: linear-gradient(180deg, transparent 0%, rgba(84, 243, 154, 0.02) 100%) !important;
    border-top: 1px solid rgba(84, 243, 154, 0.1) !important;
    position: relative;
    overflow: hidden;
    margin-top: 40px;
}
.content-footer.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 200px; height: 1px;
    background: linear-gradient(90deg, transparent, #54F39A, transparent);
    box-shadow: 0 0 20px rgba(84, 243, 154, 0.6);
    pointer-events: none;
}
.content-footer .footer-text {
    color: rgba(148, 163, 184, 0.75) !important;
    font-size: 12.5px !important;
}
.content-footer h5 {
    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    margin-bottom: 14px !important;
    position: relative;
    padding-bottom: 8px;
}
.content-footer h5::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 24px; height: 2px;
    background: linear-gradient(90deg, #54F39A, transparent);
    border-radius: 2px;
}
@media (max-width: 767.98px) {
    .content-footer h5::after { left: 50%; transform: translateX(-50%); }
    .content-footer h5 { text-align: center; }
}
.content-footer .footer-link {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 13px !important;
    font-weight: 500;
    text-decoration: none;
    padding: 8px 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.25s ease;
    min-height: 36px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}
.content-footer .footer-link svg {
    color: rgba(84, 243, 154, 0.6);
    transition: color 0.25s ease, transform 0.25s ease;
    flex-shrink: 0;
}
.content-footer .footer-link:hover {
    color: #54F39A !important;
    transform: translateX(4px);
}
.content-footer .footer-link:hover svg {
    color: #54F39A;
    transform: scale(1.15);
}
.content-footer .footer-link-btn,
.content-footer .btn.footer-link-btn {
    width: 44px;
    height: 44px;
    padding: 0 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    color: rgba(255, 255, 255, 0.65) !important;
    font-size: 16px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative;
    overflow: hidden;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    -webkit-appearance: none;
            appearance: none;
}
.content-footer .footer-link-btn:hover {
    transform: translateY(-3px);
    border-color: rgba(84, 243, 154, 0.4) !important;
    background: rgba(84, 243, 154, 0.08) !important;
    color: #54F39A !important;
    box-shadow: 0 8px 20px -8px rgba(84, 243, 154, 0.5);
}
.content-footer .footer-link-btn:active { transform: translateY(0) scale(0.95); }

/* Brand color hovers */
.content-footer .footer-link-btn[title="LinkedIn"]:hover  { background: rgba(10, 102, 194, 0.15) !important; border-color: rgba(10, 102, 194, 0.4) !important; color: #0a66c2 !important; }
.content-footer .footer-link-btn[title="Facebook"]:hover  { background: rgba(24, 119, 242, 0.15) !important; border-color: rgba(24, 119, 242, 0.4) !important; color: #1877f2 !important; }
.content-footer .footer-link-btn[title="Telegram"]:hover  { background: rgba(34, 158, 217, 0.15) !important; border-color: rgba(34, 158, 217, 0.4) !important; color: #229ed9 !important; }
.content-footer .footer-link-btn[title="Twitter"]:hover   { background: rgba(29, 161, 242, 0.15) !important; border-color: rgba(29, 161, 242, 0.4) !important; color: #1da1f2 !important; }
.content-footer .footer-link-btn[title="Instagram"]:hover { background: rgba(225, 48, 108, 0.15) !important; border-color: rgba(225, 48, 108, 0.4) !important; color: #e1306c !important; }
.content-footer .footer-link-btn[title="Trustpilot"]:hover{ background: rgba(0, 182, 122, 0.15) !important; border-color: rgba(0, 182, 122, 0.4) !important; color: #00b67a !important; }
.content-footer .footer-link-btn[title="Reddit"]:hover    { background: rgba(255, 69, 0, 0.15) !important; border-color: rgba(255, 69, 0, 0.4) !important; color: #ff4500 !important; }
.content-footer .footer-link-btn[title="Discord"]:hover   { background: rgba(88, 101, 242, 0.15) !important; border-color: rgba(88, 101, 242, 0.4) !important; color: #5865f2 !important; }

/* ============================================================
   14. MOBILE NAVBAR
============================================================ */
.mobile-navbar {
    position: fixed;
    left: 12px; right: 12px; bottom: 12px;
    z-index: 1030;
    display: flex;
    justify-content: space-around;
    align-items: stretch;
    gap: 4px;
    padding: 8px;
    background: rgba(11, 15, 23, 0.95);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
            backdrop-filter: saturate(180%) blur(20px);
    border: 1px solid rgba(84, 243, 154, 0.15);
    border-radius: 20px;
    box-shadow: 0 -8px 32px -12px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(84, 243, 154, 0.05);
}
@supports (padding: max(0px)) {
    .mobile-navbar {
        left: max(12px, env(safe-area-inset-left));
        right: max(12px, env(safe-area-inset-right));
        bottom: calc(12px + env(safe-area-inset-bottom));
    }
}
.mobile-navbar .nv-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    color: rgba(255, 255, 255, 0.55) !important;
    text-decoration: none;
    border-radius: 14px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid transparent;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}
.mobile-navbar .nv-item > span {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    font-size: 10px;
    font-weight: 600;
    line-height: 1;
}
.mobile-navbar .nv-item svg {
    width: 22px;
    height: 22px;
    color: currentColor;
    transition: transform 0.25s ease;
}
.mobile-navbar .nv-item.active {
    color: #54F39A !important;
    background: linear-gradient(135deg, rgba(84, 243, 154, 0.15), rgba(84, 243, 154, 0.05));
    border-color: rgba(84, 243, 154, 0.3);
    box-shadow: 0 4px 16px -6px rgba(84, 243, 154, 0.5);
}
.mobile-navbar .nv-item.active svg {
    -webkit-filter: drop-shadow(0 0 6px rgba(84, 243, 154, 0.6));
            filter: drop-shadow(0 0 6px rgba(84, 243, 154, 0.6));
    transform: scale(1.1);
}
.mobile-navbar .nv-item.active::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 40%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
    transform: translateX(-150%) skewX(-25deg);
    animation: tl-btn-shine 3.5s ease-in-out infinite;
    pointer-events: none;
    border-radius: inherit;
}
.mobile-navbar .nv-item:active { transform: scale(0.95); }
@media (max-width: 1199.98px) {
    body { padding-bottom: 90px !important; }
}

/* ============================================================
   15. SCROLLBAR
============================================================ */
@media (pointer: fine) {
    ::-webkit-scrollbar { width: 8px; height: 8px; }
    ::-webkit-scrollbar-track { background: transparent; }
    ::-webkit-scrollbar-thumb {
        background: rgba(84, 243, 154, 0.3);
        border-radius: 4px;
    }
    ::-webkit-scrollbar-thumb:hover {
        background: rgba(84, 243, 154, 0.55);
    }
}

/* ============================================================
   16. NEW FOOTER (.nx-footer)
============================================================ */
.nx-footer {
    background: linear-gradient(180deg, transparent 0%, rgba(84, 243, 154, 0.02) 100%) !important;
    border-top: 1px solid rgba(84, 243, 154, 0.10);
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}
.nx-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 300px; height: 1px;
    background: linear-gradient(90deg, transparent, #54F39A, transparent);
    box-shadow: 0 0 20px rgba(84, 243, 154, 0.6);
    pointer-events: none;
}
.nx-footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 24px 30px;
}
.nx-footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(84, 243, 154, 0.08);
    margin-bottom: 40px;
}
.nx-footer-brand { display: flex; flex-direction: column; gap: 14px; }
.nx-footer-brand svg, .nx-footer-brand img {
    filter: none;
}
.nx-footer-brand:hover svg, .nx-footer-brand:hover img {
    filter: drop-shadow(0 0 8px rgba(84, 243, 154, 0.4));
    transition: filter 0.3s ease;
}
.nx-footer-tagline {
    color: #94a3b8;
    font-size: 13.5px;
    line-height: 1.7;
    margin: 0;
    max-width: 420px;
}
.nx-footer-newsletter-title {
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
}
.nx-footer-newsletter-title i {
    color: #54F39A;
    filter: drop-shadow(0 0 6px rgba(84, 243, 154, 0.5));
}
.nx-footer-newsletter-sub {
    color: #94a3b8;
    font-size: 12.5px;
    margin-bottom: 14px;
    line-height: 1.5;
}
.nx-newsletter-form {
    display: flex;
    gap: 8px;
    position: relative;
    flex-wrap: wrap;
}
.nx-newsletter-input {
    flex: 1;
    min-width: 200px;
    background: rgba(15, 20, 32, 0.7);
    border: 1px solid rgba(84, 243, 154, 0.20);
    border-radius: 12px;
    padding: 12px 16px;
    color: #fff;
    font-weight: 500;
    outline: none;
    transition: all 0.25s ease;
    -webkit-appearance: none;
            appearance: none;
    font-size: 16px;
}
.nx-newsletter-input::placeholder { color: rgba(148, 163, 184, 0.5); }
.nx-newsletter-input:focus {
    border-color: #54F39A;
    box-shadow: 0 0 0 3px rgba(84, 243, 154, 0.15), 0 4px 14px -4px rgba(84, 243, 154, 0.4);
    background: rgba(15, 20, 32, 0.9);
}
.nx-newsletter-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background: linear-gradient(135deg, #54F39A, #2ecc71);
    color: #0a2e1f;
    border: none;
    border-radius: 12px;
    font-weight: 800;
    font-size: 13.5px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    min-height: 44px;
    position: relative;
    overflow: hidden;
    -webkit-appearance: none;
            appearance: none;
    touch-action: manipulation;
}
.nx-newsletter-btn::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
    transform: translateX(-150%) skewX(-25deg);
    animation: nx-btn-shine 4s ease-in-out infinite;
    pointer-events: none;
}
.nx-newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px -8px rgba(84, 243, 154, 0.7);
}
.nx-newsletter-btn:active { transform: translateY(0) scale(0.98); }
.nx-newsletter-btn i { transition: transform 0.25s ease; }
.nx-newsletter-btn:hover i { transform: translateX(3px); }
.nx-newsletter-msg {
    width: 100%;
    color: #54F39A;
    font-size: 12px;
    font-weight: 700;
    margin-top: 4px;
    min-height: 16px;
}

/* MIDDLE — 4 columns */
.nx-footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(84, 243, 154, 0.08);
    margin-bottom: 40px;
}
.nx-footer-col { min-width: 0; }
.nx-footer-heading {
    color: #ffffff !important;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 10px;
}
.nx-footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 28px; height: 2px;
    background: linear-gradient(90deg, #54F39A, transparent);
    border-radius: 2px;
}
.nx-footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.nx-footer-list li { margin: 0; }
.nx-footer-list a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    min-height: 36px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}
.nx-footer-list a i {
    color: rgba(84, 243, 154, 0.5);
    font-size: 13px;
    width: 16px;
    text-align: center;
    transition: color 0.2s ease, transform 0.2s ease;
    flex-shrink: 0;
}
.nx-footer-list a:hover {
    color: #54F39A;
    transform: translateX(4px);
}
.nx-footer-list a:hover i {
    color: #54F39A;
    transform: scale(1.15);
}

/* Trust badges */
.nx-footer-trust {
    text-align: center;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(84, 243, 154, 0.08);
    margin-bottom: 30px;
}
.nx-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
}
.nx-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(84, 243, 154, 0.08), rgba(84, 243, 154, 0.03));
    border: 1px solid rgba(84, 243, 154, 0.20);
    color: #7dffb8;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    transition: all 0.25s ease;
}
.nx-trust-badge i {
    color: #54F39A;
    font-size: 13px;
    filter: drop-shadow(0 0 6px rgba(84, 243, 154, 0.5));
}
.nx-trust-badge:hover {
    border-color: rgba(84, 243, 154, 0.5);
    box-shadow: 0 0 20px rgba(84, 243, 154, 0.3);
    transform: translateY(-2px);
}
.nx-payment-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.nx-payment-label {
    color: #94a3b8;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.nx-payment-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}
.nx-payment-logo {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    height: 34px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 12px;
    font-weight: 600;
    transition: all 0.25s ease;
    white-space: nowrap;
}
.nx-payment-logo i { font-size: 14px; }
.nx-payment-logo:hover {
    background: rgba(84, 243, 154, 0.06);
    border-color: rgba(84, 243, 154, 0.3);
    color: #54F39A;
    transform: translateY(-2px);
}

/* Social */
.nx-footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(84, 243, 154, 0.08);
    margin-bottom: 20px;
}
.nx-social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}
.nx-social-btn:hover {
    transform: translateY(-3px);
    color: #fff;
    border-color: rgba(84, 243, 154, 0.4);
    background: rgba(84, 243, 154, 0.08);
    box-shadow: 0 8px 20px -8px rgba(84, 243, 154, 0.5);
}
.nx-social-facebook:hover  { background: rgba(24, 119, 242, 0.15) !important; border-color: rgba(24, 119, 242, 0.5) !important; color: #1877F2 !important; }
.nx-social-twitter:hover   { background: rgba(29, 161, 242, 0.15) !important; border-color: rgba(29, 161, 242, 0.5) !important; color: #1DA1F2 !important; }
.nx-social-instagram:hover { background: rgba(225, 48, 108, 0.15) !important; border-color: rgba(225, 48, 108, 0.5) !important; color: #E1306C !important; }
.nx-social-telegram:hover  { background: rgba(34, 158, 217, 0.15) !important; border-color: rgba(34, 158, 217, 0.5) !important; color: #229ED9 !important; }
.nx-social-discord:hover   { background: rgba(88, 101, 242, 0.15) !important; border-color: rgba(88, 101, 242, 0.5) !important; color: #5865F2 !important; }
.nx-social-linkedin:hover  { background: rgba(10, 102, 194, 0.15) !important; border-color: rgba(10, 102, 194, 0.5) !important; color: #0A66C2 !important; }
.nx-social-reddit:hover    { background: rgba(255, 69, 0, 0.15) !important; border-color: rgba(255, 69, 0, 0.5) !important; color: #FF4500 !important; }
.nx-social-trustpilot:hover{ background: rgba(0, 182, 122, 0.15) !important; border-color: rgba(0, 182, 122, 0.5) !important; color: #00B67A !important; }

/* Bottom */
.nx-footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}
.nx-footer-copy, .nx-footer-made {
    color: rgba(148, 163, 184, 0.75);
    font-size: 12.5px;
    margin: 0;
}
.nx-footer-copy strong { color: #fff; font-weight: 700; }
.nx-heart {
    color: #EF4444;
    animation: nx-heart-beat 1.5s ease-in-out infinite;
    display: inline-block;
}

/* ============================================================
   17. COIN ANIMATION
============================================================ */
.coin-display {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 2px;
    will-change: transform;
}
.coin-float-badge {
    position: absolute;
    top: -6px; left: 50%;
    transform: translateX(-50%);
    font-size: 13px;
    font-weight: 800;
    color: #54F39A;
    pointer-events: none;
    white-space: nowrap;
    text-shadow: 0 0 12px rgba(84, 243, 154, 0.9), 0 0 24px rgba(84, 243, 154, 0.5);
    z-index: 10;
    animation: coin-float-up 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.coin-icon.coin-icon-bounce {
    animation: coin-icon-bounce 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 0 10px rgba(255, 211, 122, 0.7));
}
.coin-number.coin-number-glow {
    animation: coin-number-glow 1.3s ease-out;
}
.coin-sparkle {
    position: absolute;
    top: 50%; left: 50%;
    font-size: 20px;
    pointer-events: none;
    z-index: 11;
    animation: coin-sparkle-burst 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.coin-float {
    position: absolute;
    top: -8px; left: 50%;
    font-size: 14px;
    font-weight: 800;
    color: #54F39A;
    pointer-events: none;
    white-space: nowrap;
    animation: coin-float-up 1.5s ease-out forwards;
    text-shadow: 0 0 12px rgba(84, 243, 154, 0.6);
    z-index: 9999;
}
.coin-icon-bounce {
    display: inline-block;
    animation: coin-icon-bounce 0.6s ease-in-out;
}
.balance-glow-up {
    animation: coin-number-glow 1.2s ease-out;
}
.sparkle-burst {
    position: absolute;
    top: 50%; left: 50%;
    font-size: 24px;
    color: #FFD37A;
    pointer-events: none;
    transform: translate(-50%, -50%);
    animation: coin-sparkle-burst 0.8s ease-out forwards;
    z-index: 9999;
}

/* ============================================================
   18. MICRO-INTERACTIONS
============================================================ */
.ripple-container { position: relative; overflow: hidden; }
.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: scale(0);
    pointer-events: none;
    animation: ripple-grow 0.6s ease-out;
    z-index: 1;
}
.card-lift {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
}
.card-lift:hover { transform: translateY(-4px) scale(1.005); }

/* Bell */
.notification-bell { position: relative; }
.notification-bell .badge-dot {
    position: absolute;
    top: 4px; right: 4px;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #EF4444;
    animation: bell-pulse 2s infinite;
    z-index: 10;
}
.notification-bell.has-new i {
    animation: bell-shake 3s ease-in-out infinite;
    animation-delay: 2s;
}

/* Coin chip */
.coin-chip {
    animation: tl-pulse 3s ease-in-out infinite;
}
.coin-chip.increased {
    animation: coin-number-glow 1.2s ease-out, tl-pulse 3s ease-in-out infinite;
}

/* Time ago */
.time-pulse {
    position: relative;
    padding-left: 12px;
}
.time-pulse::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%);
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #54F39A;
    box-shadow: 0 0 0 0 rgba(84, 243, 154, 0.7);
    animation: tl-pulse 2s infinite;
}

/* ============================================================
   19. SKELETON LOADERS
============================================================ */
.skeleton-universal, .skeleton {
    background: linear-gradient(90deg,
        rgba(84, 243, 154, 0.04) 0%,
        rgba(84, 243, 154, 0.14) 50%,
        rgba(84, 243, 154, 0.04) 100%);
    background-size: 200% 100%;
    border-radius: 8px;
    animation: skeleton-shimmer 1.5s ease-in-out infinite;
}
.skeleton-line { height: 12px; margin-bottom: 8px; border-radius: 6px; }
.skeleton-line.w-50 { width: 50%; }
.skeleton-line.w-75 { width: 75%; }
.skeleton-circle { width: 48px; height: 48px; border-radius: 50%; }
.skeleton-img { height: 124px; border-radius: 12px; }

/* ============================================================
   20. ACHIEVEMENT BADGES
============================================================ */
.achievement-badge {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 14px 10px;
    border-radius: 16px;
    border: 1px solid rgba(84, 243, 154, 0.15);
    background: linear-gradient(135deg, rgba(15, 20, 32, 0.9), rgba(10, 23, 36, 0.9));
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 96px;
}
.achievement-badge:hover {
    transform: translateY(-4px);
    border-color: rgba(84, 243, 154, 0.45);
    box-shadow: 0 12px 30px -15px rgba(84, 243, 154, 0.5);
}
.achievement-badge .ach-icon {
    width: 44px; height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #54F39A, #2BE3C6);
    color: #04140C;
    font-size: 20px;
    box-shadow: 0 4px 14px -4px rgba(84, 243, 154, 0.6);
}
.achievement-badge .ach-label {
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    line-height: 1.3;
}
.achievement-badge .ach-desc {
    font-size: 10px;
    color: #94a3b8;
    text-align: center;
}
.achievement-badge.locked {
    opacity: 0.4;
    filter: grayscale(0.8);
}
.achievement-badge.locked .ach-icon {
    background: rgba(100, 116, 139, 0.3);
    color: #64748b;
    box-shadow: none;
}

/* ============================================================
   21. TRUST BADGES + PAYMENT LOGOS (generic)
============================================================ */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: center;
}
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    background: linear-gradient(135deg, rgba(84, 243, 154, 0.08), rgba(84, 243, 154, 0.03));
    border: 1px solid rgba(84, 243, 154, 0.2);
    color: #7dffb8;
    transition: all 0.25s ease;
    white-space: nowrap;
}
.trust-badge:hover {
    border-color: rgba(84, 243, 154, 0.5);
    box-shadow: 0 0 20px rgba(84, 243, 154, 0.3);
    transform: translateY(-2px);
}
.trust-badge i, .trust-badge svg { color: #54F39A; }

.payment-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    justify-content: center;
    margin-top: 12px;
}
.payment-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    height: 34px;
    transition: all 0.25s ease;
    color: rgba(255, 255, 255, 0.75);
    font-size: 12px;
    font-weight: 600;
}
.payment-logo:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(84, 243, 154, 0.3);
    color: #54F39A;
}

/* ============================================================
   22. EMPTY STATE ENHANCED
============================================================ */
.empty-state-enhanced {
    text-align: center;
    padding: 60px 24px;
    color: #94a3b8;
}
.empty-state-enhanced .empty-illustration {
    width: 140px; height: 140px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: radial-gradient(circle,
        rgba(84, 243, 154, 0.12) 0%,
        rgba(84, 243, 154, 0.04) 50%,
        transparent 70%);
    position: relative;
    animation: empty-float 4s ease-in-out infinite;
}
.empty-state-enhanced .empty-illustration svg,
.empty-state-enhanced .empty-illustration i {
    font-size: 56px;
    color: #54F39A;
    opacity: 0.6;
    filter: drop-shadow(0 0 20px rgba(84, 243, 154, 0.4));
}
.empty-state-enhanced h4 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 16px;
}
.empty-state-enhanced p {
    color: #94a3b8;
    font-size: 13px;
    margin-bottom: 20px;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}
.empty-state-enhanced .empty-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #54F39A, #2ecc71);
    color: #0a2e1f;
    border-radius: 10px;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
}
.empty-state-enhanced .empty-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px -8px rgba(84, 243, 154, 0.6);
}

/* ============================================================
   23. RESPONSIVE — TABLET (768-991px)
============================================================ */
@media (max-width: 991.98px) {
    .layout-navbar.navbar-detached {
        padding: 8px 16px !important;
        margin: 10px 16px 0 !important;
        min-height: 58px !important;
    }
    .layout-navbar .btn {
        padding: 8px 14px !important;
        font-size: 12.5px !important;
    }
    .layout-navbar .avatar img { width: 36px; height: 36px; }
    .layout-menu .menu-link {
        font-size: 13px !important;
        min-height: 42px;
    }
    .nx-footer-top { grid-template-columns: 1fr; gap: 30px; }
    .nx-footer-links { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .nx-footer-brand svg, .nx-footer-brand img { max-height: 32px; }
}

/* ============================================================
   24. RESPONSIVE — MOBILE (<768px)
============================================================ */
@media (max-width: 767.98px) {
    .layout-navbar.navbar-detached {
        padding: 6px 12px !important;
        margin: 8px 12px 0 !important;
        min-height: 54px !important;
        border-radius: 14px !important;
    }
    .layout-navbar .btn {
        padding: 6px 12px !important;
        font-size: 12px !important;
        min-height: 36px;
    }
    .layout-navbar .theme-toggle span[data-theme-label] { display: none; }
    .layout-navbar .theme-toggle { padding: 8px 10px; min-width: 40px; }
    .layout-navbar .avatar img { width: 34px; height: 34px; }
    .layout-navbar .dropdown-menu { min-width: 220px; max-width: calc(100vw - 24px); }
    .layout-menu .menu-link {
        font-size: 13px !important;
        min-height: 44px;
        margin: 0 8px !important;
    }
    .layout-menu .menu-sub .menu-link { min-height: 40px; }
    .card { border-radius: 16px !important; }
    .content-footer h5 { margin-bottom: 10px !important; }
    .content-footer .footer-link { padding: 10px 0; min-height: 44px; }
    .content-footer .footer-link-btn { width: 40px; height: 40px; }

    .nx-footer-inner { padding: 40px 16px 24px; }
    .nx-footer-top { padding-bottom: 30px; margin-bottom: 30px; }
    .nx-footer-links {
        grid-template-columns: 1fr;
        gap: 20px;
        padding-bottom: 30px;
        margin-bottom: 30px;
    }
    .nx-footer-heading {
        font-size: 12px;
        margin-bottom: 12px;
        text-align: center;
    }
    .nx-footer-heading::after { left: 50%; transform: translateX(-50%); }
    .nx-footer-list { align-items: center; }
    .nx-footer-list a { justify-content: center; }
    .nx-trust-row { gap: 8px; }
    .nx-trust-badge { font-size: 11px; padding: 7px 12px; }
    .nx-payment-logo { font-size: 11px; height: 30px; padding: 4px 10px; }
    .nx-footer-social { gap: 8px; padding-bottom: 24px; margin-bottom: 16px; }
    .nx-social-btn { width: 38px; height: 38px; font-size: 14px; }
    .nx-footer-bottom { flex-direction: column; text-align: center; gap: 6px; }

    .achievement-badge { min-width: 80px; padding: 10px 8px; }
    .achievement-badge .ach-icon { width: 36px; height: 36px; font-size: 16px; }
    .achievement-badge .ach-label { font-size: 10px; }
    .achievement-badge .ach-desc { display: none; }
    .trust-badge { font-size: 11px; padding: 6px 10px; }
    .payment-logo { font-size: 11px; height: 30px; padding: 4px 10px; }
    .empty-state-enhanced { padding: 40px 16px; }
    .empty-state-enhanced .empty-illustration { width: 110px; height: 110px; }
    .empty-state-enhanced .empty-illustration svg,
    .empty-state-enhanced .empty-illustration i { font-size: 42px; }
}

/* ============================================================
   25. RESPONSIVE — SMALL MOBILE (<576px)
============================================================ */
@media (max-width: 575.98px) {
    .layout-navbar .btn.bg-secondary,
    .layout-navbar .btn.bg-primary {
        padding: 6px 10px !important;
        font-size: 11.5px !important;
    }
    .layout-navbar .avatar img { width: 32px; height: 32px; }
    .mobile-navbar {
        left: 8px; right: 8px; bottom: 8px;
        padding: 6px;
        border-radius: 16px;
    }
    @supports (padding: max(0px)) {
        .mobile-navbar {
            left: max(8px, env(safe-area-inset-left));
            right: max(8px, env(safe-area-inset-right));
            bottom: calc(8px + env(safe-area-inset-bottom));
        }
    }
    .mobile-navbar .nv-item { min-height: 52px; }
    .mobile-navbar .nv-item svg { width: 20px; height: 20px; }
    .mobile-navbar .nv-item > span { font-size: 9px; }
}

/* ============================================================
   26. RESPONSIVE — TINY MOBILE (<400px)
============================================================ */
@media (max-width: 399.98px) {
    .layout-navbar.navbar-detached {
        padding: 4px 8px !important;
        margin: 6px 8px 0 !important;
        border-radius: 12px !important;
    }
    .layout-navbar .btn.bg-primary {
        padding: 6px 10px !important;
        font-size: 11px !important;
    }
    .layout-navbar .btn.bg-secondary { display: none; }
    .layout-navbar .avatar img { width: 30px; height: 30px; }
    .mobile-navbar .nv-item > span { font-size: 8.5px; }
    .content-footer .footer-link-btn { width: 36px; height: 36px; font-size: 14px; }
}

/* ============================================================
   27. iOS SAFARI SPECIFIC
============================================================ */
@supports (-webkit-touch-callout: none) {
    .layout-navbar.navbar-detached,
    .mobile-navbar {
        -webkit-backdrop-filter: saturate(180%) blur(24px);
    }
    body { -webkit-overflow-scrolling: touch; }
    .layout-menu .menu-link,
    .layout-navbar .btn,
    .content-footer .footer-link,
    .nx-newsletter-input,
    .nx-newsletter-btn,
    .nx-social-btn {
        -webkit-appearance: none;
                appearance: none;
    }
}

/* ============================================================
   28. ANDROID CHROME SPECIFIC
============================================================ */
@media screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: .001dpcm) {
    .mobile-navbar .nv-item.active { will-change: transform; }
}

/* ============================================================
   29. REDUCED MOTION
============================================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .layout-menu .menu-item.active > .menu-link::after,
    .layout-navbar .btn.bg-primary::after,
    .mobile-navbar .nv-item.active::after,
    .progress-bar::after,
    .coin-float-badge,
    .coin-float,
    .coin-icon-bounce,
    .coin-sparkle,
    .sparkle-burst,
    .notification-bell .badge-dot,
    .notification-bell.has-new i,
    .coin-chip,
    .skeleton-universal,
    .skeleton,
    .empty-state-enhanced .empty-illustration,
    .nx-newsletter-btn::before,
    .nx-heart {
        animation: none !important;
    }
    .nx-trust-badge,
    .nx-social-btn,
    .nx-footer-list a,
    .nx-newsletter-btn {
        transition: none !important;
    }
    
    
    /* ============================================================
   30. PARTNER / OFFER CARD — PROTECTED FROM GLOBAL .card:hover
   Partners/Offers/Earn pages-এর নিজস্ব style জেতাবে
   ============================================================ */

/* Partner card — partners.css owns this */
.card.partner-card:hover {
    transform: translateY(-6px);
    border-color: rgba(84, 243, 154, 0.45) !important;
    box-shadow:
        0 12px 30px -12px rgba(84, 243, 154, 0.5),
        0 0 24px -8px rgba(34, 211, 238, 0.25) !important;
}

/* Offer card — earn.css owns this */
.card.offer-card:hover {
    transform: translateY(-6px);
    border-color: rgba(84, 243, 154, 0.45) !important;
    box-shadow:
        0 12px 32px -14px rgba(84, 243, 154, 0.4),
        0 0 24px -10px rgba(34, 211, 238, 0.20) !important;
}

/* Shop card — same treatment */
.card.shop-card:hover {
    transform: translateY(-6px);
    border-color: rgba(84, 243, 154, 0.45) !important;
    box-shadow:
        0 12px 32px -14px rgba(84, 243, 154, 0.4),
        0 0 24px -10px rgba(34, 211, 238, 0.20) !important;
}

/* Skeleton — prevent .card hover from lifting skeleton cards */
.card.skeleton-card:hover {
    transform: none;
    border-color: rgba(84, 243, 154, 0.08) !important;
    box-shadow: 0 4px 16px -8px rgba(0, 0, 0, 0.65) !important;
}


/* ============================================================
   ============================================================
   30. CROSS-OS COMPATIBILITY LAYER
   iOS / iPadOS / Android / Windows / macOS / Linux
   Chrome / Safari / Firefox / Edge / Samsung Internet
   ============================================================
   ============================================================ */

/* ---- ROOT: text-size + tap behavior ---- */
html {
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overscroll-behavior-y: contain; /* iOS pull-to-refresh বন্ধ */
}

/* iOS Safari 300ms tap delay নাই */
a, button, .btn, .nav-link, .menu-link, .nv-item,
input[type="submit"], input[type="button"], [role="button"] {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

/* iOS input zoom prevent (font-size < 16px হলে zoom করে) */
@media (max-width: 767.98px) {
    input, textarea, select,
    .form-control, .form-select,
    .search-input {
        font-size: 16px !important;
    }
}

/* ---- IMAGE / VIDEO: max-width safety ---- */
img, svg, video, canvas {
    max-width: 100%;
    height: auto;
}

/* ---- SCROLLBAR: firefox ---- */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(84, 243, 154, 0.3) transparent;
}

/* ---- WINDOWS HIGH CONTRAST ---- */
@media (forced-colors: active) {
    .nx-btn-primary,
    .nx-sticky-cta-btn,
    .nx-newsletter-btn,
    .btn-primary,
    .btn-success {
        border: 2px solid ButtonText !important;
    }
    .partner-card,
    .offer-card,
    .card {
        border: 1px solid CanvasText !important;
    }
    .nx-avatar-stack > span {
        border: 2px solid CanvasText !important;
    }
}

/* ---- PRINT ---- */
@media print {
    .nx-sticky-cta,
    .mobile-navbar,
    .nx-toast-wrap,
    .nx-cursor-glow,
    .nx-hero-orb,
    .layout-menu,
    .layout-navbar,
    .nx-footer,
    .content-footer {
        display: none !important;
    }
    body {
        background: #ffffff !important;
        color: #000000 !important;
    }
    a[href]::after {
        content: " (" attr(href) ")";
        font-size: 0.85em;
        color: #666;
    }
}

/* ---- REDUCED TRANSPARENCY (some users prefer solid) ---- */
@media (prefers-reduced-transparency: reduce) {
    .layout-navbar,
    .layout-navbar.navbar-detached,
    .mobile-navbar,
    .nx-sticky-cta,
    .dropdown-menu,
    .nx-toast {
        -webkit-backdrop-filter: none !important;
                backdrop-filter: none !important;
        background: #0f1a28 !important;
    }
}

/* ---- DARK / LIGHT SCHEME ---- */
@media (prefers-color-scheme: light) {
    /* সব সাইট dark, কিন্তু browser chrome light হলে */
    input, textarea, select {
        color-scheme: dark;
    }
}
@media (prefers-color-scheme: dark) {
    html {
        color-scheme: dark;
    }
}

/* ---- ANDROID CHROME: tap highlight ---- */
@media screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: .001dpcm) {
    a, button, [role="button"] {
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }
}

/* ---- iOS SAFARI: smooth momentum scroll ---- */
@supports (-webkit-touch-callout: none) {
    body {
        -webkit-overflow-scrolling: touch;
    }
    .swiper,
    .d-flex.flex-nowrap.overflow-auto,
    .table-responsive,
    .modal-dialog-scrollable .modal-body {
        -webkit-overflow-scrolling: touch;
    }
}

/* ---- SAFE AREA (notch + home indicator) ---- */
@supports (padding: max(0px)) {
    .mobile-navbar {
        left: max(12px, env(safe-area-inset-left));
        right: max(12px, env(safe-area-inset-right));
        bottom: calc(12px + env(safe-area-inset-bottom));
    }
    .nx-sticky-cta {
        left: max(12px, env(safe-area-inset-left));
        right: max(12px, env(safe-area-inset-right));
        bottom: calc(76px + env(safe-area-inset-bottom, 0px));
    }
    .nx-footer-inner {
        padding-left: max(24px, env(safe-area-inset-left));
        padding-right: max(24px, env(safe-area-inset-right));
    }
}

/* ---- KEYBOARD NAVIGATION (a11y) ---- */
:focus-visible {
    outline: 2px solid #54F39A;
    outline-offset: 2px;
    border-radius: 6px;
}
button:focus:not(:focus-visible),
a:focus:not(:focus-visible) {
    outline: none;
}

/* ---- LONG TEXT WRAP SAFETY ---- */
.partner-card .card-footer span,
.partner-card .card-footer .h6,
.nx-footer-copy,
.nx-footer-made {
    overflow-wrap: break-word;
    word-wrap: break-word;
}

/* ---- IMAGE RENDERING (retina displays) ---- */
img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}
.swiper-slide img,
.partner-card .card-body img,
.offer-card .card-img-top {
    image-rendering: auto; /* photos should be smooth */
}


/* ============================================================
   ============================================================
   31. PARTNER / OFFER / SHOP CARD — GUARD
   Prevent global .card:hover from clashing with
   partners.css / earn.css specific styles
   ============================================================
   ============================================================ */

/* Partner card — specific override wins */
.card.partner-card:hover {
    transform: translateY(-6px);
    border-color: rgba(84, 243, 154, 0.45) !important;
    box-shadow:
        0 12px 30px -12px rgba(84, 243, 154, 0.5),
        0 0 24px -8px rgba(34, 211, 238, 0.25) !important;
}

/* Offer card — specific override wins */
.card.offer-card:hover {
    transform: translateY(-6px);
    border-color: rgba(84, 243, 154, 0.45) !important;
    box-shadow:
        0 12px 32px -14px rgba(84, 243, 154, 0.4),
        0 0 24px -10px rgba(34, 211, 238, 0.20) !important;
}

/* Shop card — same treatment */
.card.shop-card:hover {
    transform: translateY(-6px);
    border-color: rgba(84, 243, 154, 0.45) !important;
    box-shadow:
        0 12px 32px -14px rgba(84, 243, 154, 0.4),
        0 0 24px -10px rgba(34, 211, 238, 0.20) !important;
}

/* Skeleton card — hover lift বন্ধ */
.card.skeleton-card:hover,
.card.skeleton-card {
    transform: none !important;
    border-color: rgba(84, 243, 154, 0.08) !important;
    box-shadow: 0 4px 16px -8px rgba(0, 0, 0, 0.65) !important;
}

/* Locked partner card — hover-এ কোনো lift না */
.card.partner-card[style*="not-allowed"]:hover {
    transform: none !important;
    border-color: rgba(84, 243, 154, 0.22) !important;
    box-shadow: 0 4px 14px -6px rgba(0, 0, 0, 0.55) !important;
}

/* Sticky section header — none */
.card.partner-card .partner-badge:hover,
.card.partner-card .badge:hover {
    transform: none !important;
}


/* ============================================================
   ============================================================
   32. SMOOTH MOBILE EXPERIENCE
   ============================================================
   ============================================================ */

/* Prevent overscroll bounce on iOS for fixed elements */
@supports (-webkit-touch-callout: none) {
    .nx-sticky-cta,
    .mobile-navbar,
    .layout-navbar.navbar-detached {
        -webkit-transform: translateZ(0); /* GPU layer */
                transform: translateZ(0);
    }
}

/* Prevent double-tap zoom on buttons */
button,
.btn,
.nv-item,
.menu-link,
a.btn {
    touch-action: manipulation;
}

/* Smooth momentum scrolling on Android */
@media (pointer: coarse) {
    .swiper-wrapper,
    .d-flex.flex-nowrap.overflow-auto {
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }
}

/* ---- REDUCED MOTION — final safety ---- */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}



    
    
    
    
    
}