        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            background: #F8FAFC;
            color: #111827;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            overflow-x: hidden;
            transition: background 0.3s ease, color 0.3s ease;
        }

        :root {
            --primary: #2B5CAB;
            --primary-dark: #1e4480;
            --primary-light: #e8edf5;
            --primary-gradient: linear-gradient(135deg, #2B5CAB 0%, #1e4480 100%);
            --accent-yellow: #FFC83D;
            --accent-yellow-dark: #f0b82e;
            --accent-gradient: linear-gradient(135deg, #FFC83D 0%, #f5b82e 100%);
            --dark: #111827;
            --gray: #6B7280;
            --light-gray: #F8FAFC;
            --white: #ffffff;
            --border-color: #e5e7eb;
            --shadow-sm: 0 4px 20px rgba(0,0,0,0.04);
            --shadow-md: 0 8px 40px rgba(0,0,0,0.06);
            --shadow-lg: 0 20px 60px rgba(0,0,0,0.08);
            --radius: 20px;
            --radius-sm: 12px;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --sidebar-width: 250px;
            --sidebar-collapsed: 72px;
            --header-height: 70px;
            --color-blue: #2B5CAB;
            --color-blue-dark: #1e4480;
            --color-blue-light: #e8edf5;
            --color-orange: #f59e0b;
            --color-orange-light: #fef3c7;
            --color-green: #10b981;
            --color-green-light: #d1fae5;
            --color-red: #ef4444;
            --color-red-light: #fee2e2;
            --color-purple: #8b5cf6;
            --color-purple-light: #ede9fe;
            --color-teal: #14b8a6;
            --color-teal-light: #ccfbf1;
            --color-gray: #6B7280;
            --color-gray-light: #F8FAFC;
            --color-dark: #111827;
            --color-white: #ffffff;
            --color-border: #e5e7eb;
    }

        body.dark-mode {
            --light-gray: #1a1a2e;
            --white: #16213e;
            --dark: #ffffff;
            --gray: #94a3b8;
            --border-color: #2d3748;
            --shadow-sm: 0 4px 20px rgba(0,0,0,0.3);
            --shadow-md: 0 8px 40px rgba(0,0,0,0.4);
            --shadow-lg: 0 20px 60px rgba(0,0,0,0.5);
            --primary-light: #1e2a4a;
            background: #0f0f1a;
            color: #ffffff;
        }

        body.dark-mode,
        body.dark-mode * {
            color: #ffffff !important;
        }

        body.dark-mode .btn-start,
        body.dark-mode .btn-claim,
        body.dark-mode .btn-redeem,
        body.dark-mode .btn-hero,
        body.dark-mode .btn-primary-hero,
        body.dark-mode .btn-copy,
        body.dark-mode .btn-offer,
        body.dark-mode .verify-step-btn,
        body.dark-mode .bnav-item,
        body.dark-mode .dark-mode-toggle,
        body.dark-mode .sidebar-toggle,
        body.dark-mode .sidebar-collapse-menu-btn,
        body.dark-mode .slider-controls button,
        body.dark-mode .share-buttons button {
            color: inherit !important;
        }

        body.dark-mode .btn-start {
            color: var(--dark) !important;
        }
        body.dark-mode .btn-claim {
            color: var(--dark) !important;
        }
        body.dark-mode .btn-redeem {
            color: var(--dark) !important;
        }
        body.dark-mode .btn-primary-hero {
            color: var(--dark) !important;
        }
        body.dark-mode .btn-copy {
            color: #ffffff !important;
        }
        body.dark-mode .btn-offer {
            color: #ffffff !important;
        }
        body.dark-mode .dark-mode-toggle {
            color: #94a3b8 !important;
        }
        body.dark-mode .dark-mode-toggle:hover {
            color: #ffffff !important;
        }
        body.dark-mode .sidebar-toggle {
            color: #94a3b8 !important;
        }
        body.dark-mode .sidebar-toggle:hover {
            color: var(--primary) !important;
        }
        body.dark-mode .sidebar-collapse-menu-btn {
            color: #94a3b8 !important;
        }
        body.dark-mode .sidebar-collapse-menu-btn:hover {
            color: var(--primary) !important;
        }
        body.dark-mode .slider-controls button {
            color: #94a3b8 !important;
        }
        body.dark-mode .slider-controls button:hover {
            color: var(--primary) !important;
        }
        body.dark-mode .share-buttons button {
            color: #94a3b8 !important;
        }
        body.dark-mode .share-buttons button:hover {
            color: var(--primary) !important;
        }
        body.dark-mode .bnav-item {
            color: #94a3b8 !important;
        }
        body.dark-mode .bnav-item.active {
            color: var(--primary) !important;
        }
        body.dark-mode .bnav-item:hover {
            color: var(--primary) !important;
        }
        body.dark-mode .verify-step-btn {
            color: #94a3b8 !important;
        }
        body.dark-mode .verify-step-btn.completed {
            color: #10b981 !important;
        }
        body.dark-mode .verify-step-btn.pending {
            color: #d97706 !important;
        }
        body.dark-mode .verify-step-btn:hover {
            color: #ffffff !important;
        }

        body.dark-mode i,
        body.dark-mode .fa,
        body.dark-mode .fas,
        body.dark-mode .far,
        body.dark-mode .fab,
        body.dark-mode .fa-solid,
        body.dark-mode .fa-regular,
        body.dark-mode .fa-brands,
        body.dark-mode svg:not(.la-avatar svg),
        body.dark-mode .membership-icon {
            color: inherit !important;
        }

        body.dark-mode .stat-icon.blue i {
            color: var(--primary) !important;
        }
        body.dark-mode .stat-icon.yellow i {
            color: var(--accent-yellow) !important;
        }
        body.dark-mode .stat-icon.green i {
            color: #10b981 !important;
        }
        body.dark-mode .stat-icon.purple i {
            color: #8b5cf6 !important;
        }
        body.dark-mode .balance-badge i {
            color: var(--accent-yellow) !important;
        }
        body.dark-mode .membership-icon {
            fill: var(--accent-yellow) !important;
        }
        body.dark-mode .la-payment-icon i {
            color: var(--primary) !important;
        }
        body.dark-mode .la-avatar {
            color: #ffffff !important;
        }
        body.dark-mode .sidebar-menu-item.active i {
            color: #ffffff !important;
        }
        body.dark-mode .sidebar-menu-item i {
            color: #94a3b8 !important;
        }
        body.dark-mode .sidebar-menu-item:hover i {
            color: var(--primary) !important;
        }
        body.dark-mode .sidebar-menu-item.active i {
            color: #ffffff !important;
        }
        body.dark-mode .sidebar-bottom .sidebar-menu-item[style*="color:#ef4444"] i {
            color: #ef4444 !important;
        }
        body.dark-mode .floating-icons-bonus span i {
            color: var(--primary) !important;
        }
        body.dark-mode .floating-icons-hero span i {
            color: rgba(255,255,255,0.6) !important;
        }
        body.dark-mode .reward,
        body.dark-mode .offer-reward,
        body.dark-mode .la-reward {
            color: #10b981 !important;
        }

        body.dark-mode .sidebar {
            background: #16213e;
            border-right: 1px solid rgba(255,255,255,0.04);
        }
        body.dark-mode .sidebar-logo span {
            color: #ffffff !important;
        }
        body.dark-mode .sidebar-menu-item {
            color: #94a3b8 !important;
        }
        body.dark-mode .sidebar-menu-item:hover {
            background: #1e2a4a;
            color: #ffffff !important;
        }
        body.dark-mode .sidebar-menu-item.active {
            background: var(--primary);
            color: #ffffff !important;
        }
        body.dark-mode .top-header {
            background: rgba(22, 33, 62, 0.85);
            backdrop-filter: blur(20px) saturate(180%);
            border-bottom: 1px solid rgba(255,255,255,0.04);
        }
        body.dark-mode .top-header .header-left .breadcrumb .current {
            color: #ffffff !important;
        }
        body.dark-mode .top-header .header-actions .balance-badge {
            background: #1e2a4a;
            border-color: #2d3748;
            color: #ffffff !important;
        }
        body.dark-mode .stat-card {
            background: #16213e;
            border-color: rgba(255,255,255,0.04);
        }
        body.dark-mode .stat-card .stat-number {
            color: #ffffff !important;
        }
        body.dark-mode .survey-card {
            background: #16213e;
            border-color: rgba(255,255,255,0.04);
        }
        body.dark-mode .survey-card .survey-info h4 {
            color: #ffffff !important;
        }
        body.dark-mode .daily-bonus-card {
            background: #16213e;
            border-color: rgba(255,255,255,0.04);
        }
        body.dark-mode .daily-bonus-card .bonus-left h4 {
            color: #ffffff !important;
        }
        body.dark-mode .verify-container {
            background: #16213e;
            border-color: #2d3748;
        }
        body.dark-mode .verify-container .verify-header {
            color: #ffffff !important;
        }
        body.dark-mode .verify-container .verify-progress {
            background: #1e2a4a;
        }
        body.dark-mode .verify-container .verify-step-btn {
            background: #1e2a4a;
            border-color: #2d3748;
            color: #94a3b8 !important;
        }
        body.dark-mode .verify-container .verify-step-btn.completed {
            color: #10b981 !important;
        }
        body.dark-mode .verify-container .verify-step-btn.pending {
            color: #d97706 !important;
        }
        body.dark-mode .referral-card {
            background: #16213e;
            border-color: rgba(255,255,255,0.04);
        }
        body.dark-mode .referral-card h4 {
            color: #ffffff !important;
        }
        body.dark-mode .bonus-code-card {
            background: #16213e;
            border-color: rgba(255,255,255,0.04);
        }
        body.dark-mode .bonus-code-card h4 {
            color: #ffffff !important;
        }
        body.dark-mode .bonus-code-card .bonus-input-group input {
            background: #1a1a2e;
            border-color: #2d3748;
            color: #ffffff !important;
        }
        body.dark-mode .live-activity-section {
            background: #16213e;
            border-color: rgba(255,255,255,0.04);
        }
        body.dark-mode .live-activity-section .la-header .la-left .la-title {
            color: #ffffff !important;
        }
        body.dark-mode .live-activity-section .la-pill {
            background: #1a1a2e;
            border-color: #2d3748;
        }
        body.dark-mode .live-activity-section .la-pill .la-info .la-name {
            color: #ffffff !important;
        }
        body.dark-mode .bottom-nav {
            background: #16213e;
            border-top: 1px solid rgba(255,255,255,0.06);
        }
        body.dark-mode .bottom-nav .bnav-item {
            color: #94a3b8 !important;
        }
        body.dark-mode .bottom-nav .bnav-item.active {
            color: var(--primary) !important;
        }
        body.dark-mode .dashboard-footer {
            border-top: 1px solid rgba(255,255,255,0.04);
        }
        body.dark-mode .dashboard-footer .footer-links a {
            color: #94a3b8 !important;
        }
        body.dark-mode .dashboard-footer .footer-links a:hover {
            color: var(--primary) !important;
        }
        body.dark-mode .slider-controls button {
            background: #16213e;
            border-color: #2d3748;
            color: #94a3b8 !important;
        }
        body.dark-mode .slider-controls button:hover {
            background: #1e2a4a;
            border-color: var(--primary);
            color: var(--primary) !important;
        }
        body.dark-mode .bonus-code-card .bonus-message.success {
            background: rgba(16,185,129,0.15);
            color: #34d399 !important;
            border-color: rgba(16,185,129,0.2);
        }
        body.dark-mode .bonus-code-card .bonus-message.error {
            background: rgba(239,68,68,0.15);
            color: #f87171 !important;
            border-color: rgba(239,68,68,0.2);
        }
        body.dark-mode .reward,
        body.dark-mode .offer-reward,
        body.dark-mode .la-reward {
            color: #10b981 !important;
        }
        body.dark-mode .section-header h3 {
            color: #ffffff !important;
        }
        body.dark-mode .section-header a {
            color: var(--primary) !important;
        }
        body.dark-mode .section-header a:hover {
            color: #4a8ad4 !important;
        }
        body.dark-mode .referral-card p {
            color: #94a3b8 !important;
        }
        body.dark-mode .bonus-code-card p {
            color: #94a3b8 !important;
        }
        body.dark-mode .daily-bonus-card .bonus-left p {
            color: #94a3b8 !important;
        }
        body.dark-mode .sidebar-menu-label {
            color: #94a3b8 !important;
        }
        body.dark-mode .sidebar-bottom .sidebar-menu-item {
            color: #94a3b8 !important;
        }
        body.dark-mode .sidebar-bottom .sidebar-menu-item:hover {
            color: #ffffff !important;
        }
        body.dark-mode .sidebar-bottom .sidebar-menu-item[style*="color:#ef4444"] {
            color: #ef4444 !important;
        }
        body.dark-mode .survey-meta span,
        body.dark-mode .offer-meta span,
        body.dark-mode .la-action,
        body.dark-mode .la-time,
        body.dark-mode .breadcrumb,
        body.dark-mode .stat-label {
            color: #94a3b8 !important;
        }
        body.dark-mode .breadcrumb .home-link {
            color: #94a3b8 !important;
        }
        body.dark-mode .breadcrumb .home-link:hover {
            color: var(--primary) !important;
        }
        body.dark-mode .breadcrumb .separator {
            color: #2d3748 !important;
        }
        body.dark-mode .verification-locked-div {
            background: #16213e;
            border-color: rgba(255,255,255,0.04);
        }
        body.dark-mode .verification-locked-div .skeleton-item {
            background: #1a1a2e;
            border-color: #2d3748;
        }
        body.dark-mode .verification-locked-div .skeleton-title,
        body.dark-mode .verification-locked-div .skeleton-meta span,
        body.dark-mode .verification-locked-div .skeleton-reward,
        body.dark-mode .verification-locked-div .skeleton-circle,
        body.dark-mode .verification-locked-div .skeleton-meta .badge-text {
            background: #2d3748;
        }
        body.dark-mode .verification-locked-div .skeleton-circle i {
            color: #94a3b8;
        }
        body.dark-mode .verification-locked-div .skeleton-item:hover .skeleton-circle i {
            color: var(--primary);
        }
        body.dark-mode .verification-locked-div .lock-overlay {
            background: rgba(0, 0, 0, 0.7);
        }
        body.dark-mode .modal-box {
            background: #16213e;
            border-color: #2d3748;
        }
        body.dark-mode .modal-header {
            border-color: #2d3748;
        }
        body.dark-mode .modal-header h3 {
            color: #ffffff !important;
        }
        body.dark-mode .modal-body p {
            color: #94a3b8 !important;
        }
        body.dark-mode .modal-verify-container {
            background: #1a1a2e;
            border-color: #2d3748;
        }
        body.dark-mode .modal-verify-container .verify-header {
            color: #ffffff !important;
        }
        body.dark-mode .modal-verify-container .verify-step-btn {
            background: #1e2a4a;
            border-color: #2d3748;
            color: #94a3b8 !important;
        }
        body.dark-mode .modal-verify-container .verify-step-btn:hover {
            border-color: var(--primary);
            color: var(--primary) !important;
        }
        body.dark-mode .modal-footer {
            border-color: #2d3748;
        }
        body.dark-mode .modal-footer .btn-secondary {
            background: #1e2a4a;
            border-color: #2d3748;
            color: #94a3b8 !important;
        }
        body.dark-mode .modal-footer .btn-secondary:hover {
            background: #2d3748;
            color: #ffffff !important;
        }

        .dark-mode-toggle {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: none;
            background: var(--primary-light);
            color: var(--gray);
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            flex-shrink: 0;
        }
        .dark-mode-toggle:hover {
            background: var(--primary);
            color: var(--white);
        }
        body.dark-mode .dark-mode-toggle {
            background: #1e2a4a;
            color: #94a3b8 !important;
        }
        body.dark-mode .dark-mode-toggle:hover {
            background: var(--primary);
            color: #ffffff !important;
        }

        .dashboard-wrapper {
            display: flex;
            min-height: 100vh;
            background: var(--light-gray);
            transition: background 0.3s ease;
        }


        .sidebar {
            position: fixed;
            top: 0;
            left: 0;
            bottom: 0;
            width: var(--sidebar-width);
            background: var(--white);
            border-right: 1px solid rgba(0,0,0,0.04);
            padding: 20px 16px;
            display: flex;
            flex-direction: column;
            transition: var(--transition);
            z-index: 1000;
            overflow-y: auto;
            box-shadow: var(--shadow-sm);
        }
        .sidebar::-webkit-scrollbar {
            width: 3px;
        }
        .sidebar::-webkit-scrollbar-thumb {
            background: var(--border-color);
            border-radius: 4px;
        }

        .sidebar.collapsed {
            width: var(--sidebar-collapsed);
        }
        .sidebar.collapsed .sidebar-logo span,
        .sidebar.collapsed .sidebar-menu-item span,
        .sidebar.collapsed .sidebar-bottom span {
            display: none;
        }
        .sidebar.collapsed .sidebar-menu-item {
            justify-content: center;
            padding: 10px;
        }
        .sidebar.collapsed .sidebar-menu-item i {
            margin-right: 0;
            font-size: 1.2rem;
        }
        .sidebar.collapsed .sidebar-logo {
            justify-content: center;
        }
        .sidebar.collapsed .sidebar-logo img {
            margin-right: 0;
        }
        .sidebar.collapsed .sidebar-toggle {
            display: none;
        }

        .sidebar-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 12px 20px 12px;
            margin-bottom: 16px;
            border-bottom: 1px solid rgba(0,0,0,0.04);
            position: relative;
        }
        .sidebar-logo img {
            height: 32px;
            width: auto;
        }
        .sidebar-logo span {
            font-size: 1.2rem;
            font-weight: 800;
            color: var(--dark);
            letter-spacing: -0.5px;
        }
        .sidebar-logo span span {
            color: var(--primary);
        }

        .sidebar-toggle {
            position: absolute;
            right: -14px;
            bottom: 12px;
            width: 28px;
            height: 28px;
            background: var(--white);
            border: 1px solid var(--border-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 0.7rem;
            color: var(--gray);
            transition: var(--transition);
            box-shadow: var(--shadow-sm);
            z-index: 10;
        }
        .sidebar-toggle:hover {
            background: var(--primary-light);
            border-color: var(--primary);
            color: var(--primary);
        }

        .sidebar-menu {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 2px;
            margin-top: 4px;
        }
        .sidebar-menu-label {
            font-size: 0.65rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            color: var(--gray);
            padding: 12px 12px 6px 12px;
            opacity: 0.6;
        }
        .sidebar.collapsed .sidebar-menu-label {
            display: none;
        }

        .sidebar-menu-item {
            display: flex;
            align-items: center;
            padding: 10px 14px;
            border-radius: var(--radius-sm);
            color: var(--gray);
            font-size: 0.85rem;
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            gap: 2px;
        }
        .sidebar-menu-item:hover {
            background: var(--primary-light);
            color: var(--primary);
        }
        .sidebar-menu-item.active {
            background: var(--primary);
            color: var(--white);
            box-shadow: 0 4px 16px rgba(43,92,171,0.25);
        }
        .sidebar-menu-item i {
            width: 24px;
            margin-right: 12px;
            font-size: 1.05rem;
            text-align: center;
            flex-shrink: 0;
        }
        .sidebar-menu-item .badge {
            margin-left: auto;
            background: var(--accent-yellow);
            color: var(--dark);
            font-size: 0.6rem;
            font-weight: 700;
            padding: 2px 8px;
            border-radius: 20px;
        }
        .sidebar-menu-item.active .badge {
            background: rgba(255,255,255,0.25);
            color: var(--white);
        }

        .sidebar-bottom {
            border-top: 1px solid rgba(0,0,0,0.04);
            padding-top: 12px;
            margin-top: 8px;
        }

        .sidebar-collapse-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--gray);
            font-size: 1.2rem;
            cursor: pointer;
            padding: 12px;
            width: 100%;
            text-align: center;
            transition: var(--transition);
            border-radius: var(--radius-sm);
        }
        .sidebar-collapse-menu-btn:hover {
            background: var(--primary-light);
            color: var(--primary);
        }
        .sidebar.collapsed .sidebar-collapse-menu-btn {
            display: block;
        }

        .sidebar-social {
            display: flex;
            gap: 12px;
            justify-content: center;
            padding: 12px 0 4px;
            border-top: 1px solid rgba(0,0,0,0.04);
            margin-top: 8px;
            flex-wrap: nowrap !important;
        }
        .sidebar-social a {
            color: var(--gray);
            font-size: 0.9rem;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: var(--light-gray);
            text-decoration: none;
        }
        .sidebar-social a:hover {
            color: var(--primary);
            background: var(--primary-light);
            transform: translateY(-2px);
        }
        .sidebar.collapsed .sidebar-social {
            flex-direction: column;
            align-items: center;
        }
        body.dark-mode .sidebar-social {
            border-color: rgba(255,255,255,0.04);
        }
        body.dark-mode .sidebar-social a {
            background: #1e2a4a;
            color: #94a3b8 !important;
        }
        body.dark-mode .sidebar-social a:hover {
            background: #2d3748;
            color: var(--primary) !important;
        }

        .top-header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(255,255,255,0.85);
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            border-bottom: 1px solid rgba(0,0,0,0.04);
            padding: 0 32px;
            height: var(--header-height);
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: background 0.3s ease, border-color 0.3s ease;
        }
        .top-header .header-left {
            display: flex;
            align-items: center;
            gap: 16px;
        }
        .top-header .header-left .menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.2rem;
            color: var(--dark);
            cursor: pointer;
            padding: 4px;
        }
        .top-header .header-left .breadcrumb {
            font-size: 0.8rem;
            color: var(--gray);
            font-weight: 500;
        }
        .top-header .header-left .breadcrumb .home-link {
            color: var(--gray);
            transition: var(--transition);
            cursor: pointer;
        }
        .top-header .header-left .breadcrumb .home-link:hover {
            color: var(--primary);
        }
        .top-header .header-left .breadcrumb .separator {
            margin: 0 6px;
            color: var(--border-color);
        }
        .top-header .header-left .breadcrumb .current {
            color: var(--dark);
            font-weight: 600;
        }
        .top-header .header-actions {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .top-header .header-actions .balance-badge {
            display: flex;
            align-items: center;
            gap: 6px;
            background: var(--primary-light);
            padding: 4px 14px 4px 10px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--dark);
            border: 1px solid var(--border-color);
        }
        .top-header .header-actions .balance-badge i {
            color: var(--accent-yellow);
            font-size: 0.9rem;
        }
        .top-header .header-actions button {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: none;
            background: transparent;
            color: var(--gray);
            font-size: 1.1rem;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }
        .top-header .header-actions button:hover {
            background: var(--primary-light);
            color: var(--primary);
        }
        .top-header .header-actions button .dot {
            position: absolute;
            top: 8px;
            right: 8px;
            width: 8px;
            height: 8px;
            background: #ef4444;
            border-radius: 50%;
            border: 2px solid var(--white);
        }
        .top-header .header-actions a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: none;
            background: transparent;
            color: var(--gray);
            font-size: 1.1rem;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            text-decoration: none;
        }
        .top-header .header-actions a:hover {
            background: var(--primary-light);
            color: var(--primary);
        }
        .top-header .header-actions a .dot {
            position: absolute;
            top: 8px;
            right: 8px;
            width: 8px;
            height: 8px;
            background: #ef4444;
            border-radius: 50%;
            border: 2px solid var(--white);
        }
        .top-header .header-actions .avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-size: cover;
            background-position: center;
            cursor: pointer;
            transition: var(--transition);
            border: 2.5px solid var(--primary-light);
            overflow: hidden;
            flex-shrink: 0;
            box-shadow: 0 0 0 3px rgba(43,92,171,0.08);
        }
        .top-header .header-actions .avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .top-header .header-actions .avatar:hover {
            border-color: var(--primary);
            transform: scale(1.05);
            box-shadow: 0 0 0 4px rgba(43,92,171,0.15);
        }

        .main-content {
            flex: 1;
            margin-left: var(--sidebar-width);
            transition: var(--transition);
            padding: 0;
            min-height: 100vh;
            max-width: calc(100% - var(--sidebar-width));
        }
        .main-content.expanded {
            margin-left: var(--sidebar-collapsed);
            max-width: calc(100% - var(--sidebar-collapsed));
        }

        .dashboard-footer {
            padding: 20px 0 10px;
            border-top: 1px solid rgba(0,0,0,0.04);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
            font-size: 0.8rem;
            color: var(--gray);
        }
        .dashboard-footer .footer-links {
            display: flex;
            gap: 20px;
        }
        .dashboard-footer .footer-links a {
            color: var(--gray);
            transition: var(--transition);
        }
        .dashboard-footer .footer-links a:hover {
            color: var(--primary);
        }

        .bottom-nav {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--white);
            border-top: 1px solid rgba(0,0,0,0.06);
            padding: 8px 0 env(safe-area-inset-bottom, 8px) 0;
            z-index: 999;
            justify-content: space-around;
            align-items: center;
            box-shadow: 0 -4px 20px rgba(0,0,0,0.04);
        }
        .bottom-nav .bnav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2px;
            font-size: 0.6rem;
            font-weight: 500;
            color: var(--gray);
            cursor: pointer;
            transition: var(--transition);
            padding: 4px 12px;
            border: none;
            background: none;
            font-family: 'Inter', sans-serif;
            text-decoration: none;
        }
        .bottom-nav .bnav-item i {
            font-size: 1.2rem;
        }
        .bottom-nav .bnav-item.active {
            color: var(--primary);
        }
        .bottom-nav .bnav-item:hover {
            color: var(--primary);
        }
        .bottom-nav .bnav-item.home-btn {
            position: relative;
            transform: translateY(-12px);
        }
        .bottom-nav .bnav-item.home-btn i {
            font-size: 1.6rem;
        }
        .bottom-nav .bnav-item.home-btn::before {
            content: '';
            position: absolute;
            top: -6px;
            left: 50%;
            transform: translateX(-50%);
            width: 55px;
            height: 55px;
            border-radius: 10px;
            background: var(--primary-gradient);
            z-index: -1;
            box-shadow: 0 4px 16px rgba(43,92,171,0.3);
        }
        .bottom-nav .bnav-item.home-btn i,
        .bottom-nav .bnav-item.home-btn span {
            color: var(--white) !important;
        }
        .bottom-nav .bnav-item.home-btn.active i,
        .bottom-nav .bnav-item.home-btn.active span {
            color: var(--white) !important;
        }
        body.dark-mode .bottom-nav .bnav-item.home-btn::before {
            box-shadow: 0 4px 16px rgba(43,92,171,0.5);
        }
        body.dark-mode .bottom-nav .bnav-item.home-btn i,
        body.dark-mode .bottom-nav .bnav-item.home-btn span {
            color: #ffffff !important;
        }

        .sidebar-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.4);
            backdrop-filter: blur(4px);
            z-index: 999;
        }
        .sidebar-overlay.active {
            display: block;
        }

        .s-hero {
            position: relative;
            background: linear-gradient(135deg, rgba(10,20,40,0.92) 0%, rgba(20,40,70,0.82) 50%, rgba(10,20,40,0.92) 100%);
            border-radius: var(--radius);
            padding: 40px 36px 36px;
            color: var(--white);
            margin-bottom: 28px;
            overflow: hidden;
            min-height: 200px;
        }
        .s-hero i,
        .s-hero .dk {
            position: absolute;
            pointer-events: none;
            z-index: 1;
        }
        .s-hero i {
            font-size: 2.8rem;
            opacity: 0.12;
            color: rgba(255,255,255,0.6);
        }
        .s-hero .dk.spark {
            display: block;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #fff;
            opacity: 0.2;
            box-shadow: 0 0 12px 4px rgba(255,255,255,0.15);
            animation: sparkle 2.5s ease-in-out infinite;
        }
        .s-hero .dk.spark.purple {
            background: #a78bfa;
            box-shadow: 0 0 16px 6px rgba(167,139,250,0.2);
        }
        .s-hero .dk.spark.d1 {
            animation-delay: 0.3s;
        }
        .s-hero .dk.cloud {
            display: block;
            width: 60px;
            height: 20px;
            border-radius: 50px;
            background: rgba(255,255,255,0.06);
            filter: blur(6px);
            animation: cloudDrift 8s ease-in-out infinite;
        }
        .s-hero .dk.cloud.slow {
            animation-duration: 12s;
        }
        @keyframes sparkle {
            0%, 100% { opacity: 0.15; transform: scale(1); }
            50% { opacity: 0.6; transform: scale(1.8); }
        }
        @keyframes cloudDrift {
            0%, 100% { transform: translateX(0) scale(1); }
            50% { transform: translateX(20px) scale(1.1); }
        }
        .s-hero h1 {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            margin-bottom: 10px;
            position: relative;
            z-index: 2;
        }
        .s-hero p.lead {
            font-size: 0.95rem;
            line-height: 1.7;
            opacity: 0.85;
            max-width: 700px;
            margin-bottom: 16px;
            position: relative;
            z-index: 2;
        }
        .s-hero p.lead b {
            opacity: 1;
            color: var(--accent-yellow);
        }
        .s-hero .hero-pill {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255,255,255,0.08);
            backdrop-filter: blur(4px);
            padding: 6px 16px 6px 8px;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 500;
            border: 1px solid rgba(255,255,255,0.06);
            position: relative;
            z-index: 2;
        }
        .s-hero .hero-pill i {
            position: static;
            opacity: 1;
            font-size: 0.6rem;
            color: #10b981;
            animation: pulse-dot 1.5s ease-in-out infinite;
        }
        @keyframes pulse-dot {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.4; transform: scale(0.8); }
        }

        body.dark-mode .s-hero {
            background: linear-gradient(135deg, rgba(10,20,40,0.95) 0%, rgba(20,40,70,0.85) 50%, rgba(10,20,40,0.95) 100%);
        }
        body.dark-mode .s-hero i {
            opacity: 0.08;
        }
        body.dark-mode .s-hero .dk.spark {
            opacity: 0.15;
        }
        body.dark-mode .s-hero .dk.cloud {
            background: rgba(255,255,255,0.04);
        } 

        .controls {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 16px;
            flex-wrap: wrap;
        }
        .controls button {
            padding: 6px 14px;
            border-radius: var(--radius-sm);
            border: 1px solid var(--border-color);
            background: var(--white);
            color: var(--gray);
            font-size: 0.75rem;
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 6px;
            font-family: 'Inter', sans-serif;
        }
        .controls button:hover {
            border-color: var(--primary);
            color: var(--primary);
            background: var(--primary-light);
        }
        .controls button.active {
            background: var(--primary);
            color: var(--white);
            border-color: var(--primary);
            box-shadow: 0 4px 12px rgba(43,92,171,0.2);
        }
        .controls button.btn-primary {
            background: var(--primary);
            color: var(--white);
            border-color: var(--primary);
        }
        .controls button.btn-primary:hover {
            background: var(--primary-dark);
            border-color: var(--primary-dark);
        }
        .controls button i {
            font-size: 0.8rem;
        }
        .controls button span i {
            font-size: 0.7rem;
            margin-left: 2px;
        }

        body.dark-mode .controls button {
            background: #1e2a4a;
            border-color: #2d3748;
            color: #94a3b8 !important;
        }
        body.dark-mode .controls button:hover {
            border-color: var(--primary);
            color: var(--primary) !important;
            background: #2d3748;
        }
        body.dark-mode .controls button.active {
            background: var(--primary);
            color: #ffffff !important;
            border-color: var(--primary);
        }
        body.dark-mode .controls button.btn-primary {
            background: var(--primary);
            color: #ffffff !important;
            border-color: var(--primary);
        }

            @media (max-width: 992px) {
                        .sidebar .sidebar-toggle {
                display: none !important;
            }

            .sidebar {
                transform: translateX(-100%);
                width: var(--sidebar-width);
                box-shadow: var(--shadow-lg);
            }
            .sidebar.open {
                transform: translateX(0);
            }
            .sidebar-overlay.active {
                display: block;
            }
            .sidebar.collapsed {
                width: var(--sidebar-width);
            }
            .sidebar.collapsed .sidebar-logo span,
            .sidebar.collapsed .sidebar-menu-item span,
            .sidebar.collapsed .sidebar-bottom span {
                display: inline;
            }
            .sidebar.collapsed .sidebar-menu-item {
                justify-content: flex-start;
                padding: 10px 14px;
            }
            .sidebar.collapsed .sidebar-menu-item i {
                margin-right: 12px;
                font-size: 1.05rem;
            }
            .sidebar.collapsed .sidebar-logo {
                justify-content: flex-start;
            }
            .sidebar.collapsed .sidebar-logo img {
                margin-right: 0;
            }
            .sidebar.collapsed .sidebar-toggle {
                display: none !important;
            }
            .sidebar.collapsed .sidebar-collapse-menu-btn {
                display: none !important;
            }
            .main-content {
                margin-left: 0;
                max-width: 100%;
            }
            .main-content.expanded {
                margin-left: 0;
                max-width: 100%;
            }
            .top-header .header-left .menu-btn {
                display: block;
            }
            .bottom-nav {
                display: flex;
            }
            .dashboard-footer {
                flex-direction: column-reverse !important;
                text-align: center;
                gap: 8px;
                padding-bottom: 80px;
            }
            .dashboard-footer .footer-links {
                flex-wrap: wrap;
                justify-content: center;
            }
            .s-hero h1 {
                font-size: 1.6rem;
            }
            .s-hero p.lead {
                font-size: 0.85rem;
            }
              .controls {
                gap: 6px;
            }
            .controls button {
                font-size: 0.7rem;
                padding: 4px 10px;
            }          
            
        }

        @media (max-width: 600px) {
            .top-header {
                padding: 0 16px;
                height: 60px;
            }
            .top-header .header-left .breadcrumb {
                font-size: 0.7rem;
            }
            .top-header .header-actions .balance-badge {
                font-size: 0.7rem;
                padding: 2px 10px 2px 8px;
            }
            .top-header .header-actions .avatar {
                width: 32px;
                height: 32px;
            }
            .dashboard-footer {
                flex-direction: column-reverse !important;
                text-align: center;
                gap: 8px;
                padding-bottom: 80px;
            }
            .dashboard-footer .footer-links {
                flex-wrap: wrap;
                justify-content: center;
            }
            .s-hero {
                padding: 28px 20px 24px;
                min-height: 160px;
            }
            .s-hero h1 {
                font-size: 1.3rem;
            }
            .s-hero p.lead {
                font-size: 0.8rem;
            }
            .s-hero i {
                font-size: 2rem;
            }
            .controls {
                flex-wrap: wrap;
                justify-content: center;
            }
            .controls button {
                font-size: 0.65rem;
                padding: 4px 8px;
            }
            .guide-modal-body {
                padding: 18px;
                min-height: 160px;
            }
            .guide-modal-body .guide-content h4 {
                font-size: 1rem;
            }
            .guide-modal-body .guide-content p {
                font-size: 0.85rem;
            }
            .guide-modal-footer {
                flex-wrap: wrap;
                justify-content: center;
            }
            .guide-modal-footer .guide-nav {
                flex-wrap: wrap;
                justify-content: center;
            }            
        }

        @media (max-width: 400px) {
            .bottom-nav .bnav-item {
                font-size: 0.5rem;
                padding: 2px 8px;
            }
            .bottom-nav .bnav-item i {
                font-size: 1rem;
            }
            .bottom-nav .bnav-item.home-btn i {
                font-size: 1.4rem;
            }
            .bottom-nav .bnav-item.home-btn::before {
                width: 40px;
                height: 40px;
                top: -2px;
            }
        }

        .fade-in {
            animation: fadeIn 0.6s ease-out;
        }
        .fade-in-delay-1 {
            animation: fadeIn 0.6s ease-out 0.1s both;
        }
        .fade-in-delay-2 {
            animation: fadeIn 0.6s ease-out 0.2s both;
        }
        .fade-in-delay-3 {
            animation: fadeIn 0.6s ease-out 0.3s both;
        }
        .fade-in-delay-4 {
            animation: fadeIn 0.6s ease-out 0.4s both;
        }
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        ::-webkit-scrollbar {
            width: 6px;
            height: 6px;
        }
        ::-webkit-scrollbar-track {
            background: var(--light-gray);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--border-color);
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: var(--gray);
        }

        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.5);
            backdrop-filter: blur(6px);
            z-index: 9999;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px;
            animation: fadeIn 0.3s ease;
        }
        .modal-overlay.active {
            display: flex;
        }
        .modal-box {
            background: var(--white);
            border-radius: var(--radius);
            max-width: 480px;
            width: 100%;
            box-shadow: var(--shadow-lg);
            overflow: hidden;
            animation: slideUp 0.3s ease;
        }
        .modal-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 18px 24px;
            border-bottom: 1px solid var(--border-color);
        }
        .modal-header h3 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--dark);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .modal-header .modal-close {
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--gray);
            cursor: pointer;
            transition: var(--transition);
            padding: 0 4px;
            text-decoration: none;
        }
        .modal-header .modal-close:hover {
            color: var(--dark);
            transform: rotate(90deg);
        }
        .modal-body {
            padding: 24px;
        }
        .modal-body p {
            color: var(--gray);
            font-size: 0.9rem;
            margin-bottom: 20px;
            line-height: 1.6;
        }
        .modal-verify-container {
            background: var(--light-gray);
            border-radius: var(--radius-sm);
            padding: 16px;
            border: 1px solid var(--border-color);
        }
        .modal-verify-container .verify-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 10px;
        }
        .modal-verify-container .verify-percent {
            color: var(--primary);
            font-size: 0.85rem;
        }
        .modal-verify-container .verify-progress {
            background: var(--border-color);
            border-radius: 10px;
            height: 6px;
            margin-bottom: 14px;
            overflow: hidden;
        }
        .modal-verify-container .verify-progress .verify-progress-bar {
            height: 6px;
            background: var(--primary);
            border-radius: 10px;
            transition: width 0.6s ease;
        }
        .modal-verify-container .verify-steps {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }
        .modal-verify-container .verify-step-btn {
            background: var(--white);
            border: 1px solid var(--border-color);
            padding: 5px 12px;
            border-radius: 30px;
            font-size: 0.7rem;
            font-weight: 500;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 4px;
            transition: var(--transition);
            font-family: 'Inter', sans-serif;
            color: var(--gray);
            text-decoration: none;
        }
        .modal-verify-container .verify-step-btn:hover {
            border-color: var(--primary);
            color: var(--primary);
        }
        .modal-verify-container .verify-step-btn.completed {
            background: rgba(16,185,129,0.1);
            border-color: rgba(16,185,129,0.2);
            color: #10b981;
        }
        .modal-verify-container .verify-step-btn.pending {
            background: rgba(245,158,11,0.1);
            border-color: rgba(245,158,11,0.2);
            color: #d97706;
        }
        .modal-verify-container .verify-step-btn .status-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            display: inline-block;
            margin-left: 2px;
        }
        .modal-verify-container .verify-step-btn .status-dot.verified {
            background: #10b981;
        }
        .modal-verify-container .verify-step-btn .status-dot.pending {
            background: #d97706;
            animation: pulse-dot 1.5s ease-in-out infinite;
        }
        .modal-footer {
            padding: 14px 24px;
            border-top: 1px solid var(--border-color);
            display: flex;
            justify-content: flex-end;
            gap: 10px;
        }
        .modal-footer .btn-secondary {
            background: var(--light-gray);
            color: var(--gray);
            border: 1px solid var(--border-color);
            padding: 8px 24px;
            border-radius: var(--radius-sm);
            font-weight: 600;
            font-size: 0.85rem;
            cursor: pointer;
            transition: var(--transition);
            font-family: 'Inter', sans-serif;
            text-decoration: none;
        }
        .modal-footer .btn-secondary:hover {
            background: var(--border-color);
            color: var(--dark);
        }
        @keyframes slideUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        /**********************************************************/
        .dashboard-content {
            padding: 28px 32px 40px;
            max-width: 100%;
            overflow-x: hidden;
        }

        .welcome-hero {
            background: linear-gradient(135deg, rgba(10,20,40,0.88) 0%, rgba(20,40,70,0.78) 50%, rgba(10,20,40,0.88) 100%);
            border-radius: var(--radius);
            padding: 28px 36px;
            color: var(--white);
            position: relative;
            overflow: hidden;
            margin-bottom: 28px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
        }
        .welcome-hero .welcome-left {
            display: flex;
            align-items: center;
            gap: 16px;
            position: relative;
            z-index: 2;
        }
        .welcome-hero .welcome-left .site-logo {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid rgba(255,255,255,0.15);
            flex-shrink: 0;
        }
        .welcome-hero .welcome-left .welcome-text {
            display: flex;
            flex-direction: column;
        }
        .welcome-hero .welcome-left .welcome-text .welcome-title {
            font-size: 0.85rem;
            font-weight: 400;
            opacity: 0.7;
        }
        .welcome-hero .welcome-left .welcome-text .welcome-username {
            font-size: 1.5rem;
            font-weight: 700;
            line-height: 1.2;
        }
        .welcome-hero .welcome-left .welcome-text .welcome-membership {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-size: 0.7rem;
            font-weight: 500;
            opacity: 0.8;
            margin-top: 2px;
        }
        .welcome-hero .welcome-left .welcome-text .welcome-membership .membership-icon {
            width: 14px;
            height: 14px;
            fill: var(--accent-yellow);
            flex-shrink: 0;
        }
        .welcome-hero .hero-actions {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            position: relative;
            z-index: 2;
        }
        .welcome-hero .hero-actions .btn-hero {
            padding: 10px 28px;
            border-radius: var(--radius-sm);
            font-weight: 600;
            font-size: 0.9rem;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .welcome-hero .hero-actions .btn-primary-hero {
            background: var(--accent-yellow);
            color: var(--dark);
            text-decoration: none;
        }
        .welcome-hero .hero-actions .btn-primary-hero:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(255,200,61,0.35);
        }
        .welcome-hero .floating-icons-hero {
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
            overflow: hidden;
            width: 60%;
        }
        .welcome-hero .floating-icons-hero span {
            position: absolute;
            font-size: 2.5rem;
            opacity: 0.08;
            animation: floatHero 12s ease-in-out infinite;
            color: rgba(255,255,255,0.6);
        }
        .welcome-hero .floating-icons-hero span:nth-child(1) {
            top: 10%;
            right: 15%;
            animation-delay: 0s;
            font-size: 2.2rem;
        }
        .welcome-hero .floating-icons-hero span:nth-child(2) {
            bottom: 15%;
            right: 5%;
            animation-delay: 3s;
            font-size: 3rem;
        }
        .welcome-hero .floating-icons-hero span:nth-child(3) {
            top: 18%;
            right: 45%;
            animation-delay: 1.5s;
            font-size: 2rem;
        }
        .welcome-hero .floating-icons-hero span:nth-child(4) {
            bottom: 28%;
            right: 40%;
            animation-delay: 4s;
            font-size: 2.5rem;
        }
        .welcome-hero .floating-icons-hero span:nth-child(5) {
            top: 55%;
            right: 50%;
            animation-delay: 2.5s;
            font-size: 1.6rem;
        }
        @keyframes floatHero {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(8deg); }
        }

        /* BONUS CODE CARD */
        .bonus-code-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 24px 28px;
            box-shadow: var(--shadow-sm);
            border: 1px solid rgba(0,0,0,0.04);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .bonus-code-card .floating-icons-bonus {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
            overflow: hidden;
        }
        .bonus-code-card .floating-icons-bonus span {
            position: absolute;
            font-size: 2rem;
            opacity: 0.06;
            animation: floatBonus 15s ease-in-out infinite;
            color: var(--primary);
        }
        .bonus-code-card .floating-icons-bonus span:nth-child(1) {
            top: 5%;
            left: 5%;
            animation-delay: 0s;
            font-size: 2.8rem;
        }
        .bonus-code-card .floating-icons-bonus span:nth-child(2) {
            bottom: 5%;
            right: 5%;
            animation-delay: 2s;
            font-size: 2.5rem;
        }
        .bonus-code-card .floating-icons-bonus span:nth-child(3) {
            top: 15%;
            right: 15%;
            animation-delay: 4s;
            font-size: 1.8rem;
        }
        .bonus-code-card .floating-icons-bonus span:nth-child(4) {
            bottom: 20%;
            left: 10%;
            animation-delay: 1s;
            font-size: 2.2rem;
        }
        .bonus-code-card .floating-icons-bonus span:nth-child(5) {
            top: 50%;
            left: 25%;
            animation-delay: 3s;
            font-size: 1.6rem;
        }
        .bonus-code-card .floating-icons-bonus span:nth-child(6) {
            top: 30%;
            right: 30%;
            animation-delay: 5s;
            font-size: 2rem;
        }
        @keyframes floatBonus {
            0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
            25% { transform: translateY(-15px) rotate(5deg) scale(1.05); }
            75% { transform: translateY(10px) rotate(-5deg) scale(0.95); }
        }
        .bonus-code-card h4 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 4px;
            position: relative;
            z-index: 200;
        }
        .bonus-code-card p {
            font-size: 0.85rem;
            color: var(--gray);
            margin-bottom: 14px;
            position: relative;
            z-index: 2;
        }
        .bonus-code-card .bonus-input-group {
            display: flex;
            gap: 12px;
            max-width: 100%;
            justify-content: center;
            position: relative;
            z-index: 2;
        }
        .bonus-code-card .bonus-input-group input {
            flex: 1;
            max-width: 320px;
            padding: 10px 16px;
            border: 1.5px solid var(--border-color);
            border-radius: var(--radius-sm);
            font-size: 0.9rem;
            font-family: 'Inter', sans-serif;
            outline: none;
            transition: var(--transition);
            background: var(--white);
            color: var(--dark);
        }
        .bonus-code-card .bonus-input-group input:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(43,92,171,0.06);
        }
        .bonus-code-card .bonus-input-group .btn-redeem {
            background: var(--accent-gradient);
            color: var(--dark);
            border: none;
            padding: 10px 28px;
            border-radius: var(--radius-sm);
            font-weight: 700;
            font-size: 0.9rem;
            cursor: pointer;
            transition: var(--transition);
            font-family: 'Inter', sans-serif;
            white-space: nowrap;
            position: relative;
            z-index: 2;
        }
        .bonus-code-card .bonus-input-group .btn-redeem:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(255,200,61,0.35);
        }
        .bonus-code-card .bonus-message {
            margin-top: 12px;
            padding: 10px 16px;
            border-radius: var(--radius-sm);
            font-weight: 500;
            font-size: 0.85rem;
            display: none;
            text-align: center;
            position: relative;
            z-index: 2;
        }
        .bonus-code-card .bonus-message.show {
            display: block;
        }
        .bonus-code-card .bonus-message.success {
            background: rgba(16,185,129,0.08);
            color: #10b981;
            border: 1px solid rgba(16,185,129,0.15);
        }
        .bonus-code-card .bonus-message.error {
            background: rgba(239,68,68,0.08);
            color: #ef4444;
            border: 1px solid rgba(239,68,68,0.15);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 18px;
            margin-bottom: 28px;
        }
        .stat-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 22px 24px;
            box-shadow: var(--shadow-sm);
            border: 1px solid rgba(0,0,0,0.04);
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 16px;
        }
        .stat-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
            border-color: var(--primary);
        }
        .stat-card .stat-icon {
            width: 44px;
            height: 44px;
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            flex-shrink: 0;
        }
        .stat-card .stat-icon.blue {
            background: var(--primary-light);
            color: var(--primary);
        }
        .stat-card .stat-icon.yellow {
            background: rgba(255,200,61,0.15);
            color: var(--accent-yellow);
        }
        .stat-card .stat-icon.green {
            background: rgba(16,185,129,0.12);
            color: #10b981;
        }
        .stat-card .stat-icon.purple {
            background: rgba(139,92,246,0.12);
            color: #8b5cf6;
        }
        .stat-card .stat-info {
            display: flex;
            flex-direction: column;
        }
        .stat-card .stat-number {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--dark);
            letter-spacing: -0.5px;
            line-height: 1.2;
        }
        .stat-card .stat-label {
            font-size: 0.82rem;
            color: var(--gray);
            font-weight: 500;
        }

        .section-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 16px;
            margin-top: 8px;
        }
        .section-header h3 {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--dark);
        }
        .section-header a {
            font-size: 0.85rem;
            color: var(--primary);
            font-weight: 500;
            transition: var(--transition);
        }
        .section-header a:hover {
            color: var(--primary-dark);
            text-decoration: underline;
        }

        .section-header .btn-guide {
            background: var(--primary-light);
            color: var(--primary);
            border: 1px solid var(--border-color);
            padding: 6px 16px;
            border-radius: var(--radius-sm);
            font-weight: 600;
            font-size: 0.8rem;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 6px;
            font-family: 'Inter', sans-serif;
        }
        .section-header .btn-guide:hover {
            background: var(--primary);
            color: var(--white);
            border-color: var(--primary);
            transform: translateY(-1px);
        }
        
        .surveys-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-bottom: 28px;
        }
        .survey-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 20px 22px;
            box-shadow: var(--shadow-sm);
            border: 1px solid rgba(0,0,0,0.04);
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
        }
        .survey-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
            border-color: var(--primary);
        }
        .survey-card .survey-info {
            flex: 1;
        }
        .survey-card .survey-info h4 {
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 4px;
        }
        .survey-card .survey-info .survey-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            font-size: 0.75rem;
            color: var(--gray);
        }
        .survey-card .survey-info .survey-meta span {
            display: flex;
            align-items: center;
            gap: 4px;
        }
        .survey-card .survey-right {
            text-align: right;
            flex-shrink: 0;
        }
        .survey-card .survey-right .reward {
            font-size: 1.1rem;
            font-weight: 700;
            color: #10b981;
        }
        .survey-card .survey-right .btn-start {
            background: var(--accent-gradient);
            color: var(--dark);
            border: none;
            padding: 6px 20px;
            border-radius: var(--radius-sm);
            font-weight: 600;
            font-size: 0.8rem;
            cursor: pointer;
            transition: var(--transition);
            margin-top: 4px;
        }
        .survey-card .survey-right .btn-start:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 16px rgba(255,200,61,0.3);
        }

        .dashboard-grid-2 {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
            margin-bottom: 28px;
        }

        .daily-bonus-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 24px 28px;
            box-shadow: var(--shadow-sm);
            border: 1px solid rgba(0,0,0,0.04);
            display: flex;
            align-items: center;
            gap: 28px;
            position: relative;
            overflow: hidden;
        }
        .daily-bonus-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--primary-gradient);
            opacity: 0.6;
            transition: opacity 0.3s ease;
        }
        .daily-bonus-card:hover::before {
            opacity: 1;
        }
        .daily-bonus-card .bonus-left {
            flex: 1;
        }
        .daily-bonus-card .bonus-left h4 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 2px;
        }
        .daily-bonus-card .bonus-left p {
            font-size: 0.85rem;
            color: var(--gray);
            margin-bottom: 12px;
        }
        .daily-bonus-card .bonus-left .streak {
            display: flex;
            gap: 6px;
            align-items: center;
        }
        .daily-bonus-card .bonus-left .streak .day {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            font-weight: 600;
            background: var(--light-gray);
            color: var(--gray);
            transition: var(--transition);
        }
        .daily-bonus-card .bonus-left .streak .day.active {
            background: var(--accent-yellow);
            color: var(--dark);
        }
        .daily-bonus-card .bonus-left .streak .day.completed {
            background: #10b981;
            color: var(--white);
        }
        .daily-bonus-card .btn-claim {
            background: var(--accent-gradient);
            color: var(--dark);
            border: none;
            padding: 10px 32px;
            border-radius: var(--radius-sm);
            font-weight: 700;
            font-size: 0.9rem;
            cursor: pointer;
            transition: var(--transition);
        }
        .daily-bonus-card .btn-claim:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(255,200,61,0.35);
        }
        .progress-ring {
            position: relative;
            width: 80px;
            height: 80px;
            flex-shrink: 0;
        }
        .progress-ring svg {
            transform: rotate(-90deg);
        }
        .progress-ring .ring-bg {
            fill: none;
            stroke: var(--light-gray);
            stroke-width: 6;
        }
        .progress-ring .ring-fg {
            fill: none;
            stroke: var(--accent-yellow);
            stroke-width: 6;
            stroke-linecap: round;
            stroke-dasharray: 188.5;
            stroke-dashoffset: 37.7;
            transition: stroke-dashoffset 0.8s ease;
        }
        .progress-ring .ring-label {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--dark);
        }
        .progress-ring .ring-label small {
            font-size: 0.6rem;
            font-weight: 400;
            color: var(--gray);
        }

        .verify-container {
            background: var(--white);
            border-radius: 16px;
            border: 1px solid var(--border-color);
            padding: 1.2rem 1.4rem;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            justify-content: center;
            min-height: 100%;
            height: 100%;
            position: relative;
            overflow: hidden;
        }
        .verify-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--primary-gradient);
            opacity: 0.6;
        }
        .verify-container:hover {
            border-color: var(--primary);
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
        }
        .verify-container .verify-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 0.8rem;
            gap: 10px;
        }
        .verify-container .verify-header .verify-header-left {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .verify-container .verify-header .shield-icon {
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--primary-light);
            border-radius: 50%;
            flex-shrink: 0;
        }
        .verify-container .verify-header .shield-icon svg {
            width: 18px;
            height: 18px;
        }
        .verify-container .verify-header .verify-title {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--dark);
            line-height: 1.3;
        }
        .verify-container .verify-header .verify-percent {
            font-weight: 700;
            color: var(--primary);
            font-size: 0.9rem;
            background: var(--primary-light);
            padding: 2px 12px;
            border-radius: 20px;
            white-space: nowrap;
        }
        .verify-container .verify-progress {
            background: var(--light-gray);
            border-radius: 10px;
            height: 8px;
            margin-bottom: 1rem;
            overflow: hidden;
            position: relative;
            border: 1px solid var(--border-color);
        }
        .verify-container .verify-progress .verify-progress-bar {
            height: 8px;
            background: var(--primary-gradient);
            border-radius: 10px;
            transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }
        .verify-container .verify-progress .verify-progress-bar::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            animation: shimmer 1.5s infinite;
        }
        @keyframes shimmer {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }
        .verify-container .verify-steps {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }
        .verify-container .verify-step-btn {
            background: var(--white);
            border: 1.5px solid var(--border-color);
            padding: 6px 14px;
            border-radius: 30px;
            color: var(--gray);
            font-size: 0.7rem;
            font-weight: 500;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: var(--transition);
            font-family: 'Inter', sans-serif;
            text-decoration: none;
        }
        .verify-container .verify-step-btn:hover {
            background: var(--primary-light);
            border-color: var(--primary);
            color: var(--primary);
            transform: translateY(-1px);
        }
        .verify-container .verify-step-btn i {
            font-size: 0.7rem;
        }
        .verify-container .verify-step-btn.completed {
            background: rgba(16, 185, 129, 0.08);
            border-color: rgba(16, 185, 129, 0.25);
            color: #10b981;
        }
        .verify-container .verify-step-btn.completed i {
            color: #10b981;
        }
        .verify-container .verify-step-btn.pending {
            background: rgba(245, 158, 11, 0.08);
            border-color: rgba(245, 158, 11, 0.25);
            color: #d97706;
        }
        .verify-container .verify-step-btn.pending i {
            color: #d97706;
        }
        .verify-container .verify-step-btn .status-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            display: inline-block;
            margin-left: 2px;
        }
        .verify-container .verify-step-btn .status-dot.verified {
            background: #10b981;
        }
        .verify-container .verify-step-btn .status-dot.pending {
            background: #d97706;
            animation: pulse-dot 1.5s ease-in-out infinite;
        }
        @keyframes pulse-dot {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.4; transform: scale(0.8); }
        }

        .referral-bonus-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 28px;
        }
        .referral-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 24px 28px;
            box-shadow: var(--shadow-sm);
            border: 1px solid rgba(0,0,0,0.04);
            position: relative;
            overflow: hidden;
        }
        .referral-card h4 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 4px;
        }
        .referral-card p {
            font-size: 0.85rem;
            color: var(--gray);
            margin-bottom: 12px;
        }
        .referral-card .referral-link {
            display: flex;
            align-items: center;
            gap: 10px;
            background: var(--light-gray);
            border-radius: var(--radius-sm);
            padding: 8px 12px;
            margin-bottom: 12px;
        }
        .referral-card .referral-link input {
            flex: 1;
            border: none;
            background: transparent;
            font-size: 0.85rem;
            font-family: 'Inter', sans-serif;
            color: var(--dark);
            outline: none;
        }
        .referral-card .referral-link .btn-copy {
            background: var(--primary);
            color: var(--white);
            border: none;
            padding: 4px 16px;
            border-radius: var(--radius-sm);
            font-weight: 600;
            font-size: 0.75rem;
            cursor: pointer;
            transition: var(--transition);
        }
        .referral-card .referral-link .btn-copy:hover {
            background: var(--primary-dark);
        }
        .referral-card .share-buttons {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }
        .referral-card .share-buttons button {
            padding: 6px 14px;
            border-radius: var(--radius-sm);
            border: 1px solid var(--border-color);
            background: var(--white);
            font-size: 0.8rem;
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 6px;
            color: var(--gray);
        }
        .referral-card .share-buttons button:hover {
            border-color: var(--primary);
            color: var(--primary);
        }

        .live-activity-section {
            background: var(--white);
            border-radius: var(--radius);
            padding: 24px 28px;
            box-shadow: var(--shadow-sm);
            border: 1px solid rgba(0,0,0,0.04);
            margin-bottom: 28px;
            width: 100%;
            max-width: 100%;
            overflow: hidden;
            box-sizing: border-box;
        }
        .live-activity-section .la-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 16px;
            flex-wrap: wrap;
            gap: 8px;
        }
        .live-activity-section .la-header .la-left {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }
        .live-activity-section .la-header .la-left .live-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #10b981;
            animation: pulse-dot 1.8s ease-in-out infinite;
            flex-shrink: 0;
        }
        .live-activity-section .la-header .la-left .la-title {
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--dark);
            white-space: nowrap;
        }
        .live-activity-section .la-header .la-left .la-sub {
            font-size: 0.75rem;
            color: var(--gray);
            margin-left: 4px;
        }
        .live-activity-section .la-header .la-right {
            font-size: 0.65rem;
            color: var(--gray);
            display: flex;
            align-items: center;
            gap: 6px;
            white-space: nowrap;
        }
        .live-activity-section .la-header .la-right i {
            font-size: 0.6rem;
            color: #10b981;
        }
        .live-activity-section .la-row {
            margin-bottom: 14px;
        }
        .live-activity-section .la-row:last-child {
            margin-bottom: 0;
        }
        .live-activity-section .la-row .la-row-title {
            font-size: 0.7rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            color: var(--gray);
            margin-bottom: 8px;
            opacity: 0.6;
        }
        .live-activity-section .la-scroll {
            overflow: hidden;
            position: relative;
            width: 100%;
            max-width: 100%;
        }
        .live-activity-section .la-scroll .la-track {
            display: flex;
            gap: 10px;
            animation: scrollHorizontal 25s linear infinite;
            width: max-content;
        }
        .live-activity-section .la-scroll:hover .la-track {
            animation-play-state: paused;
        }
        @keyframes scrollHorizontal {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        .live-activity-section .la-pill {
            display: flex;
            align-items: center;
            gap: 10px;
            background: var(--light-gray);
            border-radius: 50px;
            padding: 6px 14px 6px 6px;
            border: 1px solid var(--border-color);
            transition: var(--transition);
            flex-shrink: 0;
        }
        .live-activity-section .la-pill:hover {
            background: var(--primary-light);
            transform: scale(1.03);
            border-color: var(--primary);
        }
        .live-activity-section .la-pill .la-avatar {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: var(--primary-gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-weight: 700;
            font-size: 0.55rem;
            flex-shrink: 0;
        }
        .live-activity-section .la-pill .la-info {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        .live-activity-section .la-pill .la-info .la-flag {
            font-size: 0.8rem;
        }
        .live-activity-section .la-pill .la-info .la-name {
            font-size: 0.75rem;
            font-weight: 500;
            color: var(--dark);
        }
        .live-activity-section .la-pill .la-info .la-action {
            font-size: 0.65rem;
            color: var(--gray);
        }
        .live-activity-section .la-pill .la-info .la-reward {
            font-weight: 700;
            font-size: 0.8rem;
            color: #10b981;
        }
        .live-activity-section .la-pill .la-info .la-time {
            font-size: 0.55rem;
            color: var(--gray);
            opacity: 0.6;
        }
        .live-activity-section .la-pill .la-info .la-payment-icon {
            color: var(--primary);
            font-size: 0.7rem;
        }
        .live-activity-section .la-pill.withdrawal .la-info .la-reward {
            color: var(--primary);
        }

        .verification-locked-div {
            width: 100%;
            background: var(--white);
            border-radius: var(--radius);
            padding: 24px 20px;
            box-shadow: var(--shadow-sm);
            border: 1px solid rgba(0,0,0,0.04);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            grid-column: 1 / -1;
        }

        .verification-locked-div:hover {
            border-color: var(--primary);
            box-shadow: var(--shadow-md);
        }

        .verification-locked-div .skeleton-items {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .verification-locked-div .skeleton-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            background: var(--light-gray);
            border-radius: var(--radius);
            padding: 18px 22px;
            border: 1px solid var(--border-color);
            animation: skeletonPulse 1.5s ease-in-out infinite;
            position: relative;
            cursor: pointer;
            transition: var(--transition);
            overflow: hidden;
            min-height: 80px;
        }

        .verification-locked-div .skeleton-item:hover {
            transform: translateY(-3px);
            border-color: var(--primary);
            box-shadow: var(--shadow-md);
            animation-play-state: paused;
        }

        .verification-locked-div .skeleton-info {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .verification-locked-div .skeleton-title {
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--dark);
            background: var(--border-color);
            width: 70%;
            height: 20px;
            border-radius: 4px;
            animation: skeletonPulse 1.5s ease-in-out infinite;
        }

        .verification-locked-div .skeleton-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            font-size: 0.75rem;
            color: var(--gray);
        }

        .verification-locked-div .skeleton-meta span {
            display: flex;
            align-items: center;
            gap: 4px;
            background: var(--border-color);
            height: 18px;
            width: 60px;
            border-radius: 4px;
            animation: skeletonPulse 1.5s ease-in-out infinite;
        }

        .verification-locked-div .skeleton-meta .badge-text {
            width: auto !important;
            padding: 2px 10px !important;
            height: auto !important;
            background: var(--border-color) !important;
            border-radius: 20px !important;
            font-size: 0.65rem !important;
            font-weight: 600 !important;
            animation: skeletonPulse 1.5s ease-in-out infinite;
        }

        .verification-locked-div .skeleton-right {
            text-align: right;
            flex-shrink: 0;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 6px;
        }

        .verification-locked-div .skeleton-reward {
            font-size: 1.1rem;
            font-weight: 700;
            color: #10b981;
            background: var(--border-color);
            width: 70px;
            height: 22px;
            border-radius: 4px;
            animation: skeletonPulse 1.5s ease-in-out infinite;
        }

        .verification-locked-div .skeleton-circle {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: var(--border-color);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            animation: skeletonPulse 1.5s ease-in-out infinite;
        }

        .verification-locked-div .skeleton-circle i {
            color: var(--gray);
            font-size: 0.9rem;
            opacity: 0.5;
            transition: var(--transition);
        }

        .verification-locked-div .skeleton-item:hover .skeleton-circle i {
            color: var(--primary);
            opacity: 1;
            transform: scale(1.15);
        }

        .verification-locked-div .lock-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.55);
            backdrop-filter: blur(3px);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 4px;
            opacity: 0;
            transition: var(--transition);
            border-radius: var(--radius);
            pointer-events: none;
        }

        .verification-locked-div .skeleton-item:hover .lock-overlay {
            opacity: 1;
        }

        .verification-locked-div .lock-overlay i {
            color: #fff;
            font-size: 1.8rem;
            animation: lockBounce 2s ease-in-out infinite;
        }

        .verification-locked-div .lock-overlay span {
            color: #fff;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            text-shadow: 0 2px 8px rgba(0,0,0,0.3);
        }

        @keyframes lockBounce {
            0%, 100% { transform: translateY(0) scale(1); }
            50% { transform: translateY(-5px) scale(1.08); }
        }

        @keyframes skeletonPulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        /* DASHBOARD CONTENT - RESPONSIVE */
        @media (max-width: 1200px) {
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .surveys-grid {
                grid-template-columns: 1fr;
            }
            .dashboard-grid-2 {
                grid-template-columns: 1fr;
            }
            .referral-bonus-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 992px) {
            .dashboard-content {
                padding-bottom: 80px;
            }
            .welcome-hero {
                padding: 20px 20px;
                flex-direction: column;
                align-items: flex-start;
            }
            .welcome-hero .welcome-left .site-logo {
                width: 48px;
                height: 48px;
            }
            .welcome-hero .welcome-left .welcome-text .welcome-username {
                font-size: 1.2rem;
            }
            .welcome-hero .hero-actions {
                width: 100%;
            }
            .welcome-hero .hero-actions .btn-hero {
                flex: 1;
                justify-content: center;
            }
            .daily-bonus-card {
                flex-direction: column;
                text-align: center;
            }
            .daily-bonus-card .bonus-left .streak {
                justify-content: center;
            }
            .live-activity-section .la-scroll .la-track {
                animation-duration: 30s;
            }
            .live-activity-section {
                padding: 18px 16px;
            }
            .verification-locked-div .skeleton-items {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 600px) {
            .dashboard-content {
                padding: 16px;
            }
            .stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: 12px;
            }
            .stat-card {
                padding: 14px 16px;
                gap: 12px;
            }
            .stat-card .stat-number {
                font-size: 1.4rem;
            }
            .stat-card .stat-icon {
                width: 36px;
                height: 36px;
                font-size: 1rem;
            }
            .survey-card {
                flex-direction: column;
                align-items: flex-start;
                padding: 16px 18px;
            }
            .survey-card .survey-right {
                text-align: left;
                width: 100%;
            }
            .survey-card .survey-right .btn-start {
                width: 100%;
            }
            .welcome-hero {
                padding: 16px 16px;
            }
            .welcome-hero .welcome-left .site-logo {
                width: 40px;
                height: 40px;
            }
            .welcome-hero .welcome-left .welcome-text .welcome-username {
                font-size: 1rem;
            }
            .welcome-hero .welcome-left .welcome-text .welcome-title {
                font-size: 0.7rem;
            }
            .welcome-hero .welcome-left .welcome-text .welcome-membership {
                font-size: 0.6rem;
            }
            .daily-bonus-card {
                padding: 18px 16px;
            }
            .verify-container {
                padding: 0.75rem;
            }
            .verify-container .verify-steps {
                gap: 6px;
            }
            .verify-container .verify-step-btn {
                font-size: 0.6rem;
                padding: 4px 10px;
            }
            .referral-card {
                padding: 18px 16px;
            }
            .bonus-code-card {
                padding: 18px 16px;
            }
            .bonus-code-card .bonus-input-group {
                flex-direction: column;
                align-items: center;
            }
            .bonus-code-card .bonus-input-group input {
                max-width: 100%;
            }
            .referral-bonus-grid {
                grid-template-columns: 1fr;
            }
            .referral-card .referral-link {
                flex-wrap: wrap;
            }
            .referral-card .referral-link input {
                width: 100%;
            }
            .referral-card .share-buttons {
                justify-content: center;
            }
            .live-activity-section {
                padding: 14px 12px;
            }
            .live-activity-section .la-pill {
                padding: 4px 10px 4px 4px;
            }
            .live-activity-section .la-pill .la-info .la-name {
                font-size: 0.65rem;
            }
            .live-activity-section .la-pill .la-info .la-action {
                font-size: 0.55rem;
            }
            .live-activity-section .la-pill .la-info .la-reward {
                font-size: 0.7rem;
            }
            .live-activity-section .la-pill .la-info .la-time {
                font-size: 0.5rem;
            }
            .live-activity-section .la-scroll .la-track {
                animation-duration: 35s;
            }
            .verification-locked-div {
                padding: 16px 12px;
            }
            .verification-locked-div .skeleton-item {
                padding: 14px 16px;
                flex-wrap: wrap;
                min-height: 70px;
            }
            .verification-locked-div .skeleton-right {
                flex-direction: row;
                align-items: center;
                gap: 12px;
                width: 100%;
                justify-content: space-between;
            }
            .verification-locked-div .skeleton-title {
                width: 80%;
            }
        }

        @media (max-width: 400px) {
            .stats-grid {
                grid-template-columns: 1fr;
            }
        }

.leaderboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 28px;
    padding: 24px 28px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.04);
}

.leaderboard-title-section {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.leaderboard-main-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: -0.5px;
}

.leaderboard-subtitle {
    font-size: 0.85rem;
    color: var(--gray);
    font-weight: 400;
}

.leaderboard-stats {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.lb-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lb-stat-number {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
}

.lb-stat-label {
    font-size: 0.7rem;
    color: var(--gray);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.leaderboard-table-wrapper {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.04);
    overflow: hidden;
    margin-bottom: 28px;
}

.leaderboard-table-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.leaderboard-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    min-width: 400px;
}

.leaderboard-table thead th {
    text-align: left;
    padding: 14px 16px;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--gray);
    border-bottom: 2px solid var(--border-color);
}

.leaderboard-table tbody td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
}

.leaderboard-table tbody tr:hover {
    background: var(--primary-light);
    transition: var(--transition);
}

.leaderboard-table tbody tr:last-child td {
    border-bottom: none;
}

.col-rank {
    width: 60px;
    text-align: center !important;
    font-weight: 700;
    color: var(--gray);
}

.rank-badge {
    font-size: 1.4rem;
    display: inline-block;
}

.col-username {
    min-width: 180px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-color);
    flex-shrink: 0;
}

.username {
    font-weight: 600;
    color: var(--dark);
}

.user-badge {
    font-size: 0.9rem;
    margin-left: 2px;
}

.col-earned {
    font-weight: 600;
    color: var(--dark);
}

.col-reward {
    font-weight: 700;
    color: #10b981;
}

.rank-1 td {
    background: rgba(255, 200, 61, 0.06);
}
.rank-1 .col-earned {
    color: var(--accent-yellow-dark);
}
.rank-1 .col-reward {
    color: var(--accent-yellow-dark);
}

.rank-2 td {
    background: rgba(107, 114, 128, 0.06);
}
.rank-2 .col-earned {
    color: #6B7280;
}
.rank-2 .col-reward {
    color: #6B7280;
}

.rank-3 td {
    background: rgba(205, 127, 50, 0.06);
}
.rank-3 .col-earned {
    color: #CD7F32;
}
.rank-3 .col-reward {
    color: #CD7F32;
}

@media (max-width: 992px) {
    .leaderboard-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 20px;
    }

    .leaderboard-main-title {
        font-size: 1.3rem;
    }

    .leaderboard-stats {
        width: 100%;
        justify-content: space-around;
        gap: 12px;
    }

    .lb-stat-number {
        font-size: 1.1rem;
    }
}

@media (max-width: 600px) {
    .leaderboard-header {
        padding: 16px 16px;
    }

    .leaderboard-main-title {
        font-size: 1.1rem;
        gap: 8px;
    }

    .leaderboard-subtitle {
        font-size: 0.75rem;
    }

    .leaderboard-stats {
        gap: 16px;
        justify-content: space-around;
    }

    .lb-stat-number {
        font-size: 0.95rem;
    }

    .lb-stat-label {
        font-size: 0.6rem;
    }

    .leaderboard-table-wrapper {
        padding: 12px 12px;
    }

    .leaderboard-table {
        font-size: 0.75rem;
        min-width: 320px;
    }

    .leaderboard-table thead th {
        padding: 10px 10px;
        font-size: 0.65rem;
    }

    .leaderboard-table tbody td {
        padding: 10px 10px;
    }

    .col-rank {
        width: 40px;
        font-size: 0.8rem;
    }

    .rank-badge {
        font-size: 1.1rem;
    }

    .user-avatar {
        width: 26px;
        height: 26px;
    }

    .username {
        font-size: 0.75rem;
    }

    .col-earned,
    .col-reward {
        font-size: 0.75rem;
    }
}

@media (max-width: 400px) {
    .leaderboard-table {
        min-width: 280px;
        font-size: 0.65rem;
    }

    .leaderboard-table thead th {
        padding: 8px 6px;
        font-size: 0.55rem;
    }

    .leaderboard-table tbody td {
        padding: 8px 6px;
    }

    .col-rank {
        width: 30px;
    }

    .rank-badge {
        font-size: 0.9rem;
    }

    .user-avatar {
        width: 22px;
        height: 22px;
    }

    .username {
        font-size: 0.65rem;
    }
}

body.dark-mode .leaderboard-header {
    background: #16213e;
    border-color: rgba(255,255,255,0.04);
}

body.dark-mode .leaderboard-main-title {
    color: #ffffff !important;
}

body.dark-mode .leaderboard-subtitle {
    color: #94a3b8 !important;
}

body.dark-mode .lb-stat-number {
    color: var(--primary) !important;
}

body.dark-mode .lb-stat-label {
    color: #94a3b8 !important;
}

body.dark-mode .leaderboard-table-wrapper {
    background: #16213e;
    border-color: rgba(255,255,255,0.04);
}

body.dark-mode .leaderboard-table thead th {
    color: #94a3b8 !important;
    border-bottom-color: #2d3748;
}

body.dark-mode .leaderboard-table tbody td {
    border-bottom-color: #2d3748;
}

body.dark-mode .leaderboard-table tbody tr:hover {
    background: #1e2a4a;
}

body.dark-mode .username {
    color: #ffffff !important;
}

body.dark-mode .col-earned {
    color: #ffffff !important;
}

body.dark-mode .col-reward {
    color: #10b981 !important;
}

body.dark-mode .rank-1 td {
    background: rgba(255, 200, 61, 0.08);
}
body.dark-mode .rank-2 td {
    background: rgba(107, 114, 128, 0.08);
}
body.dark-mode .rank-3 td {
    background: rgba(205, 127, 50, 0.08);
}

.tabs-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 24px;
    padding: 24px 28px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.04);
}

.tabs-title-section {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.tabs-main-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: -0.5px;
}

.tabs-subtitle {
    font-size: 0.85rem;
    color: var(--gray);
    font-weight: 400;
}

/* TABS NAVIGATION */
.tabs-navigation {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    flex-wrap: wrap;
    background: var(--white);
    padding: 8px 12px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.04);
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: none;
    background: transparent;
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.tab-btn:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.tab-btn.active {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(43,92,171,0.25);
}

.tab-btn i {
    font-size: 1rem;
}

.tab-count {
    background: var(--light-gray);
    color: var(--gray);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 1px 8px;
    border-radius: 20px;
    margin-left: 2px;
}

.tab-btn.active .tab-count {
    background: rgba(255,255,255,0.2);
    color: var(--white);
}

.tab-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.tab-content.active {
    display: block;
}

.tab-table-wrapper {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.04);
    overflow: hidden;
    margin-bottom: 28px;
}

.tab-stats-mini {
    display: flex;
    gap: 30px;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
    flex-wrap: wrap;
}

.tab-stat-mini {
    display: flex;
    flex-direction: column;
}

.tab-stat-label {
    font-size: 0.7rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.tab-stat-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
}

.tab-table-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.tab-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
    min-width: 500px;
}

.tab-table thead th {
    text-align: left;
    padding: 12px 14px;
    font-weight: 600;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--gray);
    border-bottom: 2px solid var(--border-color);
}

.tab-table tbody td {
    padding: 10px 14px;
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
}

.tab-table tbody tr:hover {
    background: var(--primary-light);
    transition: var(--transition);
}

.tab-table tbody tr:last-child td {
    border-bottom: none;
}

.col-date {
    min-width: 100px;
}

.date-main {
    display: block;
    font-weight: 600;
    color: var(--dark);
    font-size: 0.8rem;
}

.date-time {
    display: block;
    font-size: 0.65rem;
    color: var(--gray);
}

.col-name {
    min-width: 160px;
}

.offer-name {
    display: block;
    font-weight: 500;
    color: var(--dark);
    font-size: 0.85rem;
}

.offer-source {
    display: block;
    font-size: 0.65rem;
    color: var(--gray);
}

.col-partner {
    min-width: 100px;
}

.partner-name {
    font-weight: 500;
    color: var(--dark);
    font-size: 0.8rem;
}

.col-payment {
    min-width: 100px;
}

.payment-time {
    font-size: 0.75rem;
    color: var(--gray);
    font-weight: 500;
}

.col-method {
    min-width: 130px;
}

.method-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.method-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid var(--border-color);
}

.method-info span {
    font-weight: 500;
    color: var(--dark);
    font-size: 0.8rem;
}

.col-reward,
.col-amount {
    font-weight: 700;
    color: var(--dark);
    font-size: 0.9rem;
}

.col-status {
    min-width: 110px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    white-space: nowrap;
}

.status-badge i {
    font-size: 0.7rem;
}

.status-badge.completed {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.15);
}

.status-badge.pending {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
    border: 1px solid rgba(245, 158, 11, 0.15);
}

.status-badge.failed {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.15);
}

@media (max-width: 992px) {
    .tabs-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 20px;
    }

    .tabs-main-title {
        font-size: 1.3rem;
    }

    .tabs-navigation {
        padding: 8px 8px;
        gap: 4px;
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .tab-btn {
        padding: 8px 14px;
        font-size: 0.75rem;
        white-space: nowrap;
    }

    .tab-btn i {
        font-size: 0.85rem;
    }

    .tab-count {
        font-size: 0.55rem;
        padding: 0 6px;
    }

    .tab-stats-mini {
        gap: 20px;
    }

    .tab-stat-value {
        font-size: 1rem;
    }
}

@media (max-width: 600px) {
    .tabs-header {
        padding: 16px 16px;
    }

    .tabs-main-title {
        font-size: 1.1rem;
        gap: 8px;
    }

    .tabs-subtitle {
        font-size: 0.75rem;
    }

    .tab-btn {
        padding: 6px 10px;
        font-size: 0.65rem;
        gap: 4px;
    }

    .tab-btn i {
        font-size: 0.7rem;
    }

    .tab-count {
        font-size: 0.5rem;
        padding: 0 5px;
    }

    .tab-table-wrapper {
        padding: 12px 12px;
    }

    .tab-table {
        font-size: 0.7rem;
        min-width: 380px;
    }

    .tab-table thead th {
        padding: 8px 8px;
        font-size: 0.6rem;
    }

    .tab-table tbody td {
        padding: 8px 8px;
    }

    .col-date {
        min-width: 70px;
    }

    .date-main {
        font-size: 0.65rem;
    }

    .date-time {
        font-size: 0.55rem;
    }

    .col-name {
        min-width: 120px;
    }

    .offer-name {
        font-size: 0.7rem;
    }

    .offer-source {
        font-size: 0.55rem;
    }

    .col-method {
        min-width: 100px;
    }

    .method-icon {
        width: 22px;
        height: 22px;
    }

    .method-info span {
        font-size: 0.65rem;
    }

    .col-reward,
    .col-amount {
        font-size: 0.7rem;
    }

    .col-status {
        min-width: 90px;
    }

    .status-badge {
        font-size: 0.6rem;
        padding: 3px 8px;
        gap: 4px;
    }

    .status-badge i {
        font-size: 0.6rem;
    }

    .col-partner {
        min-width: 80px;
    }

    .partner-name {
        font-size: 0.65rem;
    }

    .col-payment {
        min-width: 80px;
    }

    .payment-time {
        font-size: 0.6rem;
    }

    .tab-stats-mini {
        gap: 14px;
        padding-bottom: 10px;
        margin-bottom: 10px;
    }

    .tab-stat-label {
        font-size: 0.6rem;
    }

    .tab-stat-value {
        font-size: 0.85rem;
    }
}

@media (max-width: 400px) {
    .tab-table {
        min-width: 320px;
        font-size: 0.6rem;
    }

    .tab-table thead th {
        padding: 6px 6px;
        font-size: 0.5rem;
    }

    .tab-table tbody td {
        padding: 6px 6px;
    }

    .col-date {
        min-width: 60px;
    }

    .date-main {
        font-size: 0.55rem;
    }

    .date-time {
        font-size: 0.45rem;
    }

    .offer-name {
        font-size: 0.6rem;
    }

    .method-icon {
        width: 18px;
        height: 18px;
    }

    .method-info span {
        font-size: 0.55rem;
    }

    .col-reward,
    .col-amount {
        font-size: 0.6rem;
    }

    .status-badge {
        font-size: 0.5rem;
        padding: 2px 6px;
        gap: 3px;
    }

    .status-badge i {
        font-size: 0.5rem;
    }

    .tab-btn {
        padding: 4px 8px;
        font-size: 0.55rem;
        gap: 3px;
    }

    .tab-btn i {
        font-size: 0.6rem;
    }

    .tab-count {
        font-size: 0.45rem;
        padding: 0 4px;
    }
}

body.dark-mode .tabs-header {
    background: #16213e;
    border-color: rgba(255,255,255,0.04);
}

body.dark-mode .tabs-main-title {
    color: #ffffff !important;
}

body.dark-mode .tabs-subtitle {
    color: #94a3b8 !important;
}

body.dark-mode .tabs-navigation {
    background: #16213e;
    border-color: rgba(255,255,255,0.04);
}

body.dark-mode .tab-btn {
    color: #94a3b8 !important;
}

body.dark-mode .tab-btn:hover {
    background: #1e2a4a;
    color: #ffffff !important;
}

body.dark-mode .tab-btn.active {
    background: var(--primary);
    color: #ffffff !important;
}

body.dark-mode .tab-count {
    background: #1e2a4a;
    color: #94a3b8 !important;
}

body.dark-mode .tab-btn.active .tab-count {
    background: rgba(255,255,255,0.2);
    color: #ffffff !important;
}

body.dark-mode .tab-table-wrapper {
    background: #16213e;
    border-color: rgba(255,255,255,0.04);
}

body.dark-mode .tab-table thead th {
    color: #94a3b8 !important;
    border-bottom-color: #2d3748;
}

body.dark-mode .tab-table tbody td {
    border-bottom-color: #2d3748;
}

body.dark-mode .tab-table tbody tr:hover {
    background: #1e2a4a;
}

body.dark-mode .date-main {
    color: #ffffff !important;
}

body.dark-mode .date-time {
    color: #94a3b8 !important;
}

body.dark-mode .offer-name {
    color: #ffffff !important;
}

body.dark-mode .offer-source {
    color: #94a3b8 !important;
}

body.dark-mode .partner-name {
    color: #ffffff !important;
}

body.dark-mode .payment-time {
    color: #94a3b8 !important;
}

body.dark-mode .method-info span {
    color: #ffffff !important;
}

body.dark-mode .col-reward,
body.dark-mode .col-amount {
    color: #ffffff !important;
}

body.dark-mode .tab-stats-mini {
    border-bottom-color: #2d3748;
}

body.dark-mode .tab-stat-label {
    color: #94a3b8 !important;
}

body.dark-mode .tab-stat-value {
    color: #ffffff !important;
}

body.dark-mode .status-badge.completed {
    background: rgba(16, 185, 129, 0.15);
    color: #34d399 !important;
    border-color: rgba(16, 185, 129, 0.2);
}

body.dark-mode .status-badge.pending {
    background: rgba(245, 158, 11, 0.15);
    color: #fbbf24 !important;
    border-color: rgba(245, 158, 11, 0.2);
}

body.dark-mode .status-badge.failed {
    background: rgba(239, 68, 68, 0.15);
    color: #f87171 !important;
    border-color: rgba(239, 68, 68, 0.2);
}

.pagination-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0 10px;
    margin-top: 10px;
}

.pagination {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    justify-content: center;
}

.page-item {
    display: inline-block;
    margin: 0 2px;
}

.page-item .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--gray);
    font-size: 0.85rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    border: 1.5px solid var(--border-color);
    transition: var(--transition);
    cursor: pointer;
}

.page-item .page-link:hover {
    background: var(--primary-light);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(43, 92, 171, 0.1);
}

.page-item.active .page-link {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(43, 92, 171, 0.25);
    font-weight: 700;
    cursor: default;
}

.page-item.active .page-link:hover {
    transform: none;
    box-shadow: 0 4px 16px rgba(43, 92, 171, 0.25);
}

.page-item.disabled .page-link {
    background: transparent;
    border-color: transparent;
    color: var(--gray);
    cursor: default;
    opacity: 0.5;
    pointer-events: none;
}

.page-item.disabled .page-link:hover {
    transform: none;
    background: transparent;
    border-color: transparent;
    color: var(--gray);
}

.page-item:first-child .page-link,
.page-item:last-child .page-link {
    font-size: 1.1rem;
    font-weight: 300;
}

@media (max-width: 768px) {
    .pagination-wrapper {
        padding: 16px 0 8px;
    }

    .page-item .page-link {
        min-width: 34px;
        height: 34px;
        padding: 0 10px;
        font-size: 0.75rem;
    }

    .page-item:first-child .page-link,
    .page-item:last-child .page-link {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .pagination {
        gap: 4px;
    }

    .page-item .page-link {
        min-width: 30px;
        height: 30px;
        padding: 0 8px;
        font-size: 0.65rem;
        border-radius: 8px;
    }

    .page-item:first-child .page-link,
    .page-item:last-child .page-link {
        font-size: 0.85rem;
        min-width: 30px;
        padding: 0 6px;
    }

    .page-item:not(.active):not(.disabled):not(:first-child):not(:last-child) {
        display: none;
    }
    .page-item.active {
        display: inline-block;
    }

    .page-item.disabled {
        display: inline-block;
    }

    .page-item:first-child {
        display: inline-block;
    }

    .page-item:last-child {
        display: inline-block;
    }

    .page-item:nth-last-child(3) {
        display: inline-block;
    }
}

@media (max-width: 360px) {
    .page-item .page-link {
        min-width: 26px;
        height: 26px;
        padding: 0 6px;
        font-size: 0.6rem;
        border-radius: 6px;
    }

    .page-item:first-child .page-link,
    .page-item:last-child .page-link {
        font-size: 0.75rem;
        min-width: 26px;
        padding: 0 4px;
    }
}

body.dark-mode .page-item .page-link {
    background: #16213e;
    border-color: #2d3748;
    color: #94a3b8 !important;
}

body.dark-mode .page-item .page-link:hover {
    background: #1e2a4a;
    border-color: var(--primary);
    color: var(--primary) !important;
}

body.dark-mode .page-item.active .page-link {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff !important;
}

body.dark-mode .page-item.active .page-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff !important;
}

body.dark-mode .page-item.disabled .page-link {
    background: transparent;
    border-color: transparent;
    color: #94a3b8 !important;
}

body.dark-mode .page-item.disabled .page-link:hover {
    background: transparent;
    border-color: transparent;
    color: #94a3b8 !important;
}

.notifications-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 24px;
    padding: 24px 28px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.04);
}

.notifications-title-section {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.notifications-main-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: -0.5px;
}

.notifications-subtitle {
    font-size: 0.85rem;
    color: var(--gray);
    font-weight: 400;
}

.notifications-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.notif-count {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray);
    background: var(--light-gray);
    padding: 4px 14px;
    border-radius: 50px;
}

.btn-mark-all {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.8rem;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: var(--transition);
}

.btn-mark-all:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(43, 92, 171, 0.25);
}

.notifications-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding: 14px 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.04);
    margin-bottom: 20px;
}

.toolbar-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray);
}

.checkbox-wrapper input[type="checkbox"] {
    display: none;
}

.checkbox-wrapper .checkmark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    transition: var(--transition);
    flex-shrink: 0;
}

.checkbox-wrapper .checkmark svg {
    opacity: 0;
    transform: scale(0.5);
    transition: var(--transition);
    color: var(--white);
}

.checkbox-wrapper input:checked + .checkmark {
    background: var(--primary);
    border-color: var(--primary);
}

.checkbox-wrapper input:checked + .checkmark svg {
    opacity: 1;
    transform: scale(1);
}

.checkbox-wrapper .checkbox-label {
    font-size: 0.8rem;
    color: var(--gray);
}

.toolbar-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.notif-action-select {
    padding: 8px 14px;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-family: 'Inter', sans-serif;
    background: var(--white);
    color: var(--dark);
    cursor: pointer;
    outline: none;
    transition: var(--transition);
}

.notif-action-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(43, 92, 171, 0.06);
}

.btn-apply-action {
    padding: 8px 18px;
    background: var(--accent-gradient);
    color: var(--dark);
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.8rem;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: var(--transition);
}

.btn-apply-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255, 200, 61, 0.3);
}

.notifications-list-wrapper {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.04);
    margin-bottom: 28px;
}

/* EMPTY STATE */
.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-icon {
    color: var(--gray);
    opacity: 0.4;
    margin-bottom: 16px;
}

.empty-state h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.empty-state p {
    font-size: 0.9rem;
    color: var(--gray);
    opacity: 0.6;
}

.notifications-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.notif-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 18px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
}

.notif-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.notif-item.unread {
    background: var(--primary-light);
    border-color: rgba(43, 92, 171, 0.15);
}

.notif-item.unread::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary);
    border-radius: 0 4px 4px 0;
}

.notif-item.read {
    background: var(--white);
    opacity: 0.8;
}

.notif-item.read .notif-title {
    font-weight: 400;
}

.notif-check {
    padding-top: 2px;
}

.notif-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary);
}

.notif-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    background: var(--light-gray);
    color: var(--primary);
    flex-shrink: 0;
}

.notif-item.unread .notif-icon {
    background: rgba(43, 92, 171, 0.1);
}

.notif-content {
    flex: 1;
    min-width: 0;
}

.notif-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 4px;
}

.notif-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
}

.notif-item.unread .notif-title {
    font-weight: 700;
}

.notif-date {
    font-size: 0.7rem;
    color: var(--gray);
    white-space: nowrap;
}

.notif-message {
    font-size: 0.82rem;
    color: var(--gray);
    line-height: 1.5;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.notif-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.notif-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    border: none;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: var(--transition);
    background: var(--light-gray);
    color: var(--gray);
}

.notif-btn:hover {
    background: var(--primary-light);
    color: var(--primary);
    transform: translateY(-1px);
}

.notif-btn.delete:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

@media (max-width: 992px) {
    .notifications-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 20px;
    }

    .notifications-main-title {
        font-size: 1.3rem;
    }

    .notifications-actions {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 600px) {
    .notifications-header {
        padding: 16px 16px;
    }

    .notifications-main-title {
        font-size: 1.1rem;
        gap: 8px;
    }

    .notifications-subtitle {
        font-size: 0.75rem;
    }

    .notifications-toolbar {
        flex-direction: column;
        align-items: stretch;
        padding: 12px 14px;
    }

    .toolbar-left {
        justify-content: space-between;
    }

    .toolbar-right {
        flex-wrap: wrap;
    }

    .notif-action-select {
        flex: 1;
        min-width: 120px;
    }

    .btn-apply-action {
        flex: 1;
        justify-content: center;
    }

    .notifications-list-wrapper {
        padding: 12px 12px;
    }

    .notif-item {
        flex-wrap: wrap;
        padding: 12px 14px;
        gap: 10px;
    }

    .notif-icon {
        width: 32px;
        height: 32px;
        min-width: 32px;
        font-size: 0.8rem;
    }

    .notif-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
    }

    .notif-title {
        font-size: 0.8rem;
    }

    .notif-date {
        font-size: 0.6rem;
    }

    .notif-message {
        font-size: 0.75rem;
        -webkit-line-clamp: 3;
    }

    .notif-check input[type="checkbox"] {
        width: 16px;
        height: 16px;
    }

    .btn-mark-all {
        font-size: 0.7rem;
        padding: 6px 14px;
    }

    .notif-count {
        font-size: 0.75rem;
        padding: 2px 12px;
    }
}

@media (max-width: 400px) {
    .notif-item {
        padding: 10px 10px;
    }

    .notif-content {
        width: 100%;
        order: 2;
    }

    .notif-check {
        order: 1;
    }

    .notif-icon {
        order: 0;
        width: 28px;
        height: 28px;
        min-width: 28px;
        font-size: 0.7rem;
    }

    .notif-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .notif-btn {
        font-size: 0.6rem;
        padding: 3px 10px;
    }
}

body.dark-mode .notifications-header {
    background: #16213e;
    border-color: rgba(255,255,255,0.04);
}

body.dark-mode .notifications-main-title {
    color: #ffffff !important;
}

body.dark-mode .notifications-subtitle {
    color: #94a3b8 !important;
}

body.dark-mode .notif-count {
    background: #1e2a4a;
    color: #94a3b8 !important;
}

body.dark-mode .notifications-toolbar {
    background: #16213e;
    border-color: rgba(255,255,255,0.04);
}

body.dark-mode .checkbox-wrapper .checkbox-label {
    color: #94a3b8 !important;
}

body.dark-mode .checkbox-wrapper .checkmark {
    border-color: #2d3748;
}

body.dark-mode .notif-action-select {
    background: #16213e;
    border-color: #2d3748;
    color: #ffffff !important;
}

body.dark-mode .notif-action-select option {
    background: #16213e;
    color: #ffffff;
}

body.dark-mode .notifications-list-wrapper {
    background: #16213e;
    border-color: rgba(255,255,255,0.04);
}

body.dark-mode .notif-item {
    border-color: #2d3748;
}

body.dark-mode .notif-item.unread {
    background: #1a2645;
    border-color: rgba(43, 92, 171, 0.3);
}

body.dark-mode .notif-item.read {
    background: transparent;
}

body.dark-mode .notif-title {
    color: #ffffff !important;
}

body.dark-mode .notif-date {
    color: #94a3b8 !important;
}

body.dark-mode .notif-message {
    color: #94a3b8 !important;
}

body.dark-mode .notif-icon {
    background: #1e2a4a;
    color: var(--primary) !important;
}

body.dark-mode .notif-btn {
    background: #1e2a4a;
    color: #94a3b8 !important;
}

body.dark-mode .notif-btn:hover {
    background: #2d3748;
    color: #ffffff !important;
}

body.dark-mode .notif-btn.delete:hover {
    background: rgba(239, 68, 68, 0.15);
    color: #f87171 !important;
}

body.dark-mode .empty-state h2 {
    color: #ffffff !important;
}

body.dark-mode .empty-state p {
    color: #94a3b8 !important;
}

body.dark-mode .empty-icon {
    color: #94a3b8 !important;
}

.profile-hero .welcome-left {
    gap: 20px;
}

.profile-avatar-wrapper {
    position: relative;
    flex-shrink: 0;
}

.profile-avatar {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    border: 3px solid rgba(255,255,255,0.15) !important;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3) !important;
    transition: var(--transition);
}

.profile-avatar:hover {
    transform: scale(1.05);
    border-color: var(--accent-yellow);
}

.profile-level-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--accent-yellow);
    box-shadow: 0 4px 12px rgba(43,92,171,0.35);
    font-weight: 700;
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
}

.profile-account-status {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.profile-account-status i {
    font-size: 0.5rem;
}

.profile-account-status.active {
    color: #10b981;
    background: rgba(16, 185, 129, 0.12);
}

.profile-account-status.inactive {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.12);
}

.profile-welcome-text .welcome-title {
    font-size: 0.7rem !important;
    opacity: 0.5 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.profile-welcome-text .welcome-username {
    font-size: 1.3rem !important;
}

.profile-welcome-text .welcome-membership {
    font-size: 0.75rem !important;
    gap: 6px;
}

.profile-welcome-text .welcome-membership i {
    font-size: 0.7rem;
    opacity: 0.6;
}

.profile-progress-bar-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 4px;
    max-width: 320px;
    width: 100%;
}

.profile-progress-bar {
    flex: 1;
    height: 6px;
    background: rgba(255,255,255,0.12);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
}

.profile-progress-fill {
    height: 100%;
    background: var(--accent-gradient);
    border-radius: 10px;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.profile-progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: profileShimmer 1.5s infinite;
}

@keyframes profileShimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.profile-progress-percent {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 0.8;
    min-width: 36px;
    text-align: right;
}

.profile-info-card,
.profile-verification-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.04);
    overflow: hidden;
    margin-bottom: 24px;
}

.profile-card-header {
    padding: 16px 24px;
    border-bottom: 1px solid var(--border-color);
}

.profile-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.profile-card-body {
    padding: 20px 24px;
}

.profile-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px 32px;
}

.profile-info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.profile-info-item:last-child,
.profile-info-item:nth-last-child(2) {
    border-bottom: none;
}

.profile-info-label {
    font-size: 0.8rem;
    color: var(--gray);
    font-weight: 500;
    flex-shrink: 0;
}

.profile-info-value {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 6px;
    text-align: right;
}

.membership-badge {
    display: inline-block;
    padding: 2px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
}

.membership-badge.basic {
    background: rgba(107, 114, 128, 0.1);
    color: #6B7280;
}

.membership-badge.premium {
    background: rgba(43, 92, 171, 0.1);
    color: var(--primary);
}

.membership-badge.platinum {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
}

.status-badge i {
    font-size: 0.4rem;
}

.status-badge.completed {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.status-badge.pending {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
}

.profile-verification-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.profile-verification-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--light-gray);
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--border-color);
    transition: var(--transition);
}

.profile-verification-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.profile-verification-item.verified {
    border-color: rgba(16, 185, 129, 0.3);
    background: rgba(16, 185, 129, 0.04);
}

.profile-verification-item.pending {
    border-color: rgba(245, 158, 11, 0.3);
    background: rgba(245, 158, 11, 0.04);
}

.profile-verification-item.failed {
    border-color: rgba(239, 68, 68, 0.15);
    background: rgba(239, 68, 68, 0.1);
}

.verification-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.profile-verification-item.verified .verification-icon {
    background: rgba(16, 185, 129, 0.1);
}

.profile-verification-item.pending .verification-icon {
    background: rgba(245, 158, 11, 0.1);
}

.verification-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.verification-name {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--dark);
}

.verification-status .status-badge {
    font-size: 0.6rem;
    padding: 1px 10px;
}

@media (max-width: 992px) {
    .profile-hero .welcome-left {
        flex-wrap: wrap;
        gap: 14px;
    }

    .profile-avatar {
        width: 64px !important;
        height: 64px !important;
    }

    .profile-level-badge {
        width: 28px;
        height: 28px;
        font-size: 0.7rem;
    }

    .profile-welcome-text .welcome-username {
        font-size: 1.1rem !important;
    }

    .profile-progress-bar-wrapper {
        max-width: 100%;
    }

    .profile-info-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .profile-info-item {
        padding: 8px 0;
    }

    .profile-info-item:last-child {
        border-bottom: none;
    }

    .profile-verification-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        align-items: flex-start !important;
        width: 100%;
        margin-top: 4px;
    }
}

@media (max-width: 600px) {
    .profile-hero .welcome-left {
        gap: 12px;
    }

    .profile-avatar {
        width: 52px !important;
        height: 52px !important;
    }

    .profile-level-badge {
        width: 24px;
        height: 24px;
        font-size: 0.6rem;
        bottom: -2px;
        right: -2px;
    }

    .profile-welcome-text .welcome-title {
        font-size: 0.6rem !important;
    }

    .profile-welcome-text .welcome-username {
        font-size: 0.95rem !important;
    }

    .profile-welcome-text .welcome-membership {
        font-size: 0.65rem !important;
    }

    .profile-progress-bar-wrapper {
        gap: 6px;
    }

    .profile-progress-percent {
        font-size: 0.6rem;
        min-width: 30px;
    }

    .profile-card-header {
        padding: 12px 16px;
    }

    .profile-card-title {
        font-size: 0.85rem;
    }

    .profile-card-body {
        padding: 12px 16px;
    }

    .profile-info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
        padding: 8px 0;
    }

    .profile-info-value {
        text-align: left;
        font-size: 0.8rem;
    }

    .profile-info-label {
        font-size: 0.7rem;
    }

    .profile-verification-item {
        padding: 10px 12px;
        gap: 10px;
    }

    .verification-name {
        font-size: 0.7rem;
    }

    .profile-account-status {
        font-size: 0.75rem;
        padding: 3px 12px;
    }

    .hero-actions {
        align-items: flex-start !important;
    }

    .hero-actions .btn-hero {
        padding: 6px 14px;
        font-size: 0.7rem;
    }
}

@media (max-width: 400px) {
    .profile-hero .welcome-left {
        flex-direction: row;
        align-items: center;
        text-align: center;
    }

    .profile-welcome-text {
        text-align: center;
    }

    .profile-welcome-text .welcome-membership {
        justify-content: center;
    }

    .profile-progress-bar-wrapper {
        align-items: center;
        gap: 4px;
    }

    .profile-progress-percent {
        text-align: center;
    }

    .hero-actions {
        align-items: center !important;
    }

    .profile-account-status {
        font-size: 0.7rem;
    }
}

body.dark-mode .profile-info-card,
body.dark-mode .profile-verification-card {
    background: #16213e;
    border-color: rgba(255,255,255,0.04);
}

body.dark-mode .profile-card-header {
    border-bottom-color: #2d3748;
}

body.dark-mode .profile-card-title {
    color: #ffffff !important;
}

body.dark-mode .profile-info-label {
    color: #94a3b8 !important;
}

body.dark-mode .profile-info-value {
    color: #ffffff !important;
}

body.dark-mode .profile-info-item {
    border-bottom-color: rgba(255,255,255,0.04);
}

body.dark-mode .profile-verification-item {
    background: #1a1a2e;
    border-color: #2d3748;
}

body.dark-mode .profile-verification-item.verified {
    background: rgba(16, 185, 129, 0.06);
    border-color: rgba(16, 185, 129, 0.2);
}

body.dark-mode .profile-verification-item.pending {
    background: rgba(245, 158, 11, 0.06);
    border-color: rgba(245, 158, 11, 0.2);
}

body.dark-mode .verification-name {
    color: #ffffff !important;
}

body.dark-mode .membership-badge.basic {
    background: rgba(107, 114, 128, 0.15);
    color: #94a3b8 !important;
}

body.dark-mode .membership-badge.premium {
    background: rgba(43, 92, 171, 0.15);
    color: #60a5fa !important;
}

body.dark-mode .membership-badge.platinum {
    background: rgba(139, 92, 246, 0.15);
    color: #a78bfa !important;
}

body.dark-mode .status-badge.completed {
    background: rgba(16, 185, 129, 0.15);
    color: #34d399 !important;
}

body.dark-mode .status-badge.pending {
    background: rgba(245, 158, 11, 0.15);
    color: #fbbf24 !important;
}

body.dark-mode .profile-account-status.active {
    background: rgba(16, 185, 129, 0.12);
    color: #34d399 !important;
}

body.dark-mode .profile-account-status.inactive {
    background: rgba(239, 68, 68, 0.12);
    color: #f87171 !important;
}

.profile-verification-item.not-submitted {
    border-color: rgba(148, 163, 184, 0.3);
    background: rgba(148, 163, 184, 0.04);
}

.profile-verification-item.not-submitted .verification-icon {
    background: rgba(148, 163, 184, 0.1);
}

.status-badge.not-submitted {
    background: rgba(148, 163, 184, 0.1);
    color: #94a3b8;
    border: 1px solid rgba(148, 163, 184, 0.15);
}

.status-badge.failed {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.15);
}

body.dark-mode .profile-verification-item.not-submitted {
    background: rgba(148, 163, 184, 0.04);
    border-color: rgba(148, 163, 184, 0.15);
}

body.dark-mode .profile-verification-item.not-submitted .verification-icon {
    background: rgba(148, 163, 184, 0.08);
}

body.dark-mode .status-badge.not-submitted {
    background: rgba(148, 163, 184, 0.1);
    color: #94a3b8 !important;
    border-color: rgba(148, 163, 184, 0.15);
}

body.dark-mode .status-badge.failed {
    background: rgba(239, 68, 68, 0.15);
    color: #f87171 !important;
    border-color: rgba(239, 68, 68, 0.2);
}

.settings-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 28px;
    padding: 24px 28px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.04);
}

.settings-title-section {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.settings-main-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: -0.5px;
}

.settings-subtitle {
    font-size: 0.85rem;
    color: var(--gray);
    font-weight: 400;
}

.settings-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 28px;
}

.settings-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.04);
    overflow: hidden;
    transition: var(--transition);
}

.settings-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.settings-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 24px;
    border-bottom: 1px solid var(--border-color);
}

.settings-card-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.settings-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
}

.settings-card-body {
    padding: 16px 24px;
}

.settings-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    gap: 16px;
}

.settings-item-left {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    min-width: 0;
}

.settings-item-left > i {
    width: 20px;
    font-size: 1rem;
    color: var(--gray);
    flex-shrink: 0;
}

.settings-item-left > div {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.settings-item-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--dark);
}

.settings-item-desc {
    font-size: 0.75rem;
    color: var(--gray);
}

.settings-item-desc.status-pending {
    color: #d97706;
}

.settings-item-desc.status-completed {
    color: #10b981;
}

.settings-item-desc.status-failed {
    color: #ef4444;
}

.settings-item-btn {
    padding: 6px 18px;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    flex-shrink: 0;
}

.settings-item-btn.primary {
    background: var(--primary);
    color: var(--white);
}

.settings-item-btn.primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(43, 92, 171, 0.25);
}

.settings-item-btn.success {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    cursor: default;
}

.settings-item-btn.success:hover {
    transform: none;
    box-shadow: none;
}

.settings-item-btn.secondary {
    background: var(--light-gray);
    color: var(--gray);
    border: 1px solid var(--border-color);
}

.settings-item-btn.secondary:hover {
    background: var(--border-color);
    color: var(--dark);
}

.settings-item-btn.danger {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.15);
}

.settings-item-btn.danger:hover {
    background: #ef4444;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.25);
}

.settings-divider {
    height: 1px;
    background: var(--border-color);
    margin: 0 0;
}

.settings-card-danger {
    border-color: rgba(239, 68, 68, 0.15);
}

.settings-card-danger:hover {
    border-color: #ef4444;
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.08);
}

.settings-toggle {
    position: relative;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
    cursor: pointer;
}

.settings-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.settings-toggle-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--border-color);
    border-radius: 50px;
    transition: var(--transition);
}

.settings-toggle-slider::before {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    left: 3px;
    bottom: 3px;
    background: var(--white);
    border-radius: 50%;
    transition: var(--transition);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.settings-toggle input:checked + .settings-toggle-slider {
    background: var(--primary);
}

.settings-toggle input:checked + .settings-toggle-slider::before {
    transform: translateX(20px);
}

.settings-select {
    padding: 6px 14px;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-family: 'Inter', sans-serif;
    background: var(--white);
    color: var(--dark);
    cursor: pointer;
    outline: none;
    transition: var(--transition);
    flex-shrink: 0;
}

.settings-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(43, 92, 171, 0.06);
}

.settings-select option {
    background: var(--white);
    color: var(--dark);
}

.settings-grid-inline {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

.settings-grid-inline .settings-item {
    padding: 12px 0;
}


@media (max-width: 1200px) {
    .settings-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .settings-header {
        padding: 20px 20px;
        flex-direction: column;
        align-items: flex-start;
    }

    .settings-main-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 600px) {
    .settings-header {
        padding: 16px 16px;
    }

    .settings-main-title {
        font-size: 1.1rem;
        gap: 8px;
    }

    .settings-subtitle {
        font-size: 0.75rem;
    }

    .settings-card-header {
        padding: 14px 16px;
    }

    .settings-card-body {
        padding: 12px 16px;
    }

    .settings-item {
        flex-wrap: wrap;
        padding: 10px 0;
        gap: 10px;
    }

    .settings-item-left {
        width: 100%;
        gap: 12px;
    }

    .settings-item-left > i {
        width: 18px;
        font-size: 0.9rem;
    }

    .settings-item-label {
        font-size: 0.8rem;
    }

    .settings-item-desc {
        font-size: 0.7rem;
    }

    .settings-item-btn {
        font-size: 0.7rem;
        padding: 5px 14px;
        width: 100%;
        text-align: center;
    }

    .settings-card-icon {
        width: 34px;
        height: 34px;
        font-size: 0.9rem;
    }

    .settings-card-title {
        font-size: 0.9rem;
    }

    .settings-toggle {
        width: 38px;
        height: 20px;
    }

    .settings-toggle-slider::before {
        width: 14px;
        height: 14px;
        left: 3px;
        bottom: 3px;
    }

    .settings-toggle input:checked + .settings-toggle-slider::before {
        transform: translateX(18px);
    }

    .settings-select {
        width: 100%;
        font-size: 0.75rem;
        padding: 5px 12px;
    }

    .settings-grid {
        gap: 16px;
    }

    .settings-item-desc.status-pending,
    .settings-item-desc.status-completed,
    .settings-item-desc.status-failed {
        display: inline-block;
    }
}

@media (max-width: 400px) {
    .settings-item-left {
        flex-wrap: wrap;
        gap: 8px;
    }

    .settings-item-left > i {
        width: 16px;
        font-size: 0.8rem;
    }

    .settings-item-btn {
        font-size: 0.65rem;
        padding: 4px 10px;
    }
}

body.dark-mode .settings-header {
    background: #16213e;
    border-color: rgba(255,255,255,0.04);
}

body.dark-mode .settings-main-title {
    color: #ffffff !important;
}

body.dark-mode .settings-subtitle {
    color: #94a3b8 !important;
}

body.dark-mode .settings-card {
    background: #16213e;
    border-color: rgba(255,255,255,0.04);
}

body.dark-mode .settings-card:hover {
    border-color: var(--primary);
}

body.dark-mode .settings-card-header {
    border-bottom-color: #2d3748;
}

body.dark-mode .settings-card-title {
    color: #ffffff !important;
}

body.dark-mode .settings-item-label {
    color: #ffffff !important;
}

body.dark-mode .settings-item-desc {
    color: #94a3b8 !important;
}

body.dark-mode .settings-item-left > i {
    color: #94a3b8 !important;
}

body.dark-mode .settings-divider {
    background: #2d3748;
}

body.dark-mode .settings-item-btn.secondary {
    background: #1e2a4a;
    border-color: #2d3748;
    color: #94a3b8 !important;
}

body.dark-mode .settings-item-btn.secondary:hover {
    background: #2d3748;
    color: #ffffff !important;
}

body.dark-mode .settings-item-btn.success {
    background: rgba(16, 185, 129, 0.15);
    color: #34d399 !important;
}

body.dark-mode .settings-item-btn.danger {
    background: rgba(239, 68, 68, 0.12);
    border-color: rgba(239, 68, 68, 0.2);
    color: #f87171 !important;
}

body.dark-mode .settings-item-btn.danger:hover {
    background: #ef4444;
    color: #ffffff !important;
}

body.dark-mode .settings-card-danger {
    border-color: rgba(239, 68, 68, 0.15);
}

body.dark-mode .settings-card-danger:hover {
    border-color: #ef4444;
}

body.dark-mode .settings-toggle-slider {
    background: #2d3748;
}

body.dark-mode .settings-toggle input:checked + .settings-toggle-slider {
    background: var(--primary);
}

body.dark-mode .settings-select {
    background: #16213e;
    border-color: #2d3748;
    color: #ffffff !important;
}

body.dark-mode .settings-select option {
    background: #16213e;
    color: #ffffff !important;
}

body.dark-mode .settings-select:focus {
    border-color: var(--primary);
}

body.dark-mode .settings-item-desc.status-pending {
    color: #fbbf24 !important;
}

body.dark-mode .settings-item-desc.status-completed {
    color: #34d399 !important;
}

body.dark-mode .settings-item-desc.status-failed {
    color: #f87171 !important;
}

.settings-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: modalFadeIn 0.3s ease;
}

.settings-modal-overlay.active {
    display: flex;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.settings-modal-box {
    background: var(--white);
    border-radius: var(--radius);
    max-width: 520px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0,0,0,0.04);
    animation: modalSlideUp 0.3s ease;
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.settings-modal-box::-webkit-scrollbar {
    width: 4px;
}

.settings-modal-box::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}

.settings-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    border-bottom: 1px solid var(--border-color);
}

.settings-modal-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.settings-modal-close {
    background: none;
    border: none;
    font-size: 1.6rem;
    color: var(--gray);
    cursor: pointer;
    transition: var(--transition);
    padding: 0 4px;
    line-height: 1;
}

.settings-modal-close:hover {
    color: var(--dark);
    transform: rotate(90deg);
}

.settings-modal-body {
    padding: 24px;
}

.settings-modal-desc {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 20px;
}

.avatar-selection-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.avatar-option {
    position: relative;
    aspect-ratio: 1;
}

.avatar-option input[type="radio"] {
    display: none;
}

.avatar-option label {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-sm);
    border: 2.5px solid var(--border-color);
    cursor: pointer;
    transition: var(--transition);
    background: var(--light-gray);
    overflow: hidden;
}

.avatar-option label img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.avatar-option input[type="radio"]:checked + label {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(43, 92, 171, 0.15);
    transform: scale(1.05);
}

.avatar-option label:hover {
    border-color: var(--primary);
    transform: scale(1.05);
}

.settings-modal-instructions {
    background: var(--light-gray);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
}

.settings-modal-instructions strong {
    display: block;
    font-size: 0.85rem;
    color: var(--dark);
    margin-bottom: 8px;
}

.settings-modal-instructions ul {
    margin: 0;
    padding-left: 20px;
    font-size: 0.8rem;
    color: var(--gray);
    line-height: 1.8;
}

.settings-modal-instructions ul li strong {
    display: inline;
    color: var(--dark);
}

.settings-modal-instructions code {
    background: var(--border-color);
    padding: 1px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    color: var(--dark);
}

.file-input-group {
    margin-bottom: 16px;
}

.file-input-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
}

.file-input-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.file-input-wrapper input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.file-input-wrapper .file-input-label {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px 16px;
    border: 2px dashed var(--border-color);
    border-radius: var(--radius-sm);
    background: var(--light-gray);
    font-size: 0.8rem;
    color: var(--gray);
    transition: var(--transition);
}

.file-input-wrapper:hover .file-input-label {
    border-color: var(--primary);
    color: var(--primary);
}

.file-input-wrapper input[type="file"]:focus + .file-input-label {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(43, 92, 171, 0.06);
}

.preview-img {
    margin-top: 10px;
    max-width: 100%;
    max-height: 150px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    object-fit: contain;
}

.auth-disabled {
    opacity: 0.5;
    pointer-events: none;
}

.auth-disabled .file-input-wrapper input[type="file"] {
    cursor: not-allowed;
}

.password-input-group .input-group {
    position: relative;
    margin-bottom: 16px;
}

.password-input-group .input-group .icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    fill: var(--gray);
    pointer-events: none;
}

.password-input-group .input-group input {
    width: 100%;
    padding: 12px 44px 12px 44px;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
    background: var(--white);
    color: var(--dark);
    outline: none;
    transition: var(--transition);
}

.password-input-group .input-group input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(43, 92, 171, 0.06);
}

.password-input-group .input-group input::placeholder {
    color: var(--gray);
    opacity: 0.6;
}

.password-input-group .input-group .toggle-password {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.password-input-group .input-group .toggle-password svg {
    width: 18px;
    height: 18px;
    fill: var(--gray);
    transition: var(--transition);
}

.password-input-group .input-group .toggle-password:hover svg {
    fill: var(--primary);
}

.settings-modal-submit {
    width: 100%;
    padding: 12px 24px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: var(--transition);
}

.settings-modal-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(43, 92, 171, 0.25);
}

.settings-modal-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.settings-modal-danger .settings-modal-header {
    border-bottom-color: rgba(239, 68, 68, 0.1);
}

.delete-warning {
    text-align: center;
    padding: 10px 0 20px;
}

.delete-warning h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin: 12px 0 4px;
}

.delete-warning p {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.6;
    max-width: 380px;
    margin: 0 auto 20px;
}

.delete-warning p strong {
    color: #ef4444;
}

.delete-confirm-input {
    text-align: left;
}

.delete-confirm-input label {
    display: block;
    font-size: 0.85rem;
    color: var(--dark);
    margin-bottom: 6px;
}

.delete-confirm-input input {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
    background: var(--white);
    color: var(--dark);
    outline: none;
    transition: var(--transition);
}

.delete-confirm-input input:focus {
    border-color: #ef4444;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.06);
}

.delete-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.settings-modal-cancel {
    flex: 1;
    padding: 10px 20px;
    background: var(--light-gray);
    color: var(--gray);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: var(--transition);
}

.settings-modal-cancel:hover {
    background: var(--border-color);
    color: var(--dark);
}

.settings-modal-delete {
    flex: 1;
    padding: 10px 20px;
    background: #ef4444;
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: var(--transition);
}

/*.settings-modal-delete:hover:not(:disabled) {*/
/*    background: #dc2626;*/
/*    transform: translateY(-2px);*/
/*    box-shadow: 0 4px 16px rgba(239, 68, 68, 0.3);*/
/*}*/

/*.settings-modal-delete:disabled {*/
/*    opacity: 0.4;*/
/*    cursor: not-allowed;*/
/*    transform: none;*/
/*}*/

@media (max-width: 600px) {
    .settings-modal-box {
        max-width: 100%;
        margin: 10px;
        border-radius: var(--radius-sm);
    }

    .settings-modal-header {
        padding: 14px 16px;
    }

    .settings-modal-title {
        font-size: 0.95rem;
    }

    .settings-modal-body {
        padding: 16px;
    }

    .avatar-selection-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }

    .delete-actions {
        flex-direction: column;
    }

    .settings-modal-close {
        font-size: 1.4rem;
    }

    .password-input-group .input-group input {
        padding: 10px 38px 10px 38px;
        font-size: 0.8rem;
    }

    .settings-modal-submit {
        font-size: 0.8rem;
        padding: 10px 20px;
    }
}

@media (max-width: 400px) {
    .avatar-selection-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .settings-modal-instructions ul {
        font-size: 0.7rem;
        padding-left: 16px;
    }
}

body.dark-mode .settings-modal-box {
    background: #16213e;
    border-color: rgba(255,255,255,0.04);
}

body.dark-mode .settings-modal-header {
    border-bottom-color: #2d3748;
}

body.dark-mode .settings-modal-title {
    color: #ffffff !important;
}

body.dark-mode .settings-modal-close {
    color: #94a3b8 !important;
}

body.dark-mode .settings-modal-close:hover {
    color: #ffffff !important;
}

body.dark-mode .settings-modal-desc {
    color: #94a3b8 !important;
}

body.dark-mode .settings-modal-instructions {
    background: #1a1a2e;
    border-color: #2d3748;
}

body.dark-mode .settings-modal-instructions strong {
    color: #ffffff !important;
}

body.dark-mode .settings-modal-instructions ul {
    color: #94a3b8 !important;
}

body.dark-mode .settings-modal-instructions ul li strong {
    color: #ffffff !important;
}

body.dark-mode .settings-modal-instructions code {
    background: #2d3748;
    color: #94a3b8 !important;
}

body.dark-mode .file-input-group label {
    color: #ffffff !important;
}

body.dark-mode .file-input-wrapper .file-input-label {
    background: #1a1a2e;
    border-color: #2d3748;
    color: #94a3b8 !important;
}

body.dark-mode .file-input-wrapper:hover .file-input-label {
    border-color: var(--primary);
    color: var(--primary) !important;
}

body.dark-mode .preview-img {
    border-color: #2d3748;
}

body.dark-mode .password-input-group .input-group input {
    background: #16213e;
    border-color: #2d3748;
    color: #ffffff !important;
}

body.dark-mode .password-input-group .input-group input::placeholder {
    color: #94a3b8 !important;
}

body.dark-mode .password-input-group .input-group .icon {
    fill: #94a3b8;
}

body.dark-mode .password-input-group .input-group .toggle-password svg {
    fill: #94a3b8;
}

body.dark-mode .password-input-group .input-group .toggle-password:hover svg {
    fill: var(--primary);
}

body.dark-mode .auth-disabled {
    opacity: 0.4;
}

body.dark-mode .delete-warning h4 {
    color: #ffffff !important;
}

body.dark-mode .delete-warning p {
    color: #94a3b8 !important;
}

body.dark-mode .delete-confirm-input label {
    color: #ffffff !important;
}

body.dark-mode .delete-confirm-input input {
    background: #16213e;
    border-color: #2d3748;
    color: #ffffff !important;
}

body.dark-mode .settings-modal-cancel {
    background: #1e2a4a;
    border-color: #2d3748;
    color: #94a3b8 !important;
}

body.dark-mode .settings-modal-cancel:hover {
    background: #2d3748;
    color: #ffffff !important;
}

body.dark-mode .settings-modal-overlay {
    background: rgba(0, 0, 0, 0.7);
}

.alert-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    border: 1px solid transparent;
    animation: alertSlideDown 0.5s ease;
    position: relative;
}

.alert-box i:first-child {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.alert-box span {
    flex: 1;
    font-size: 0.85rem;
    font-weight: 500;
}

.alert-success {
    background: rgba(16, 185, 129, 0.06);
    border-color: rgba(16, 185, 129, 0.2);
    color: #065f46;
}

.alert-success i:first-child {
    color: #10b981;
}

.alert-error {
    background: rgba(239, 68, 68, 0.06);
    border-color: rgba(239, 68, 68, 0.2);
    color: #991b1b;
}

.alert-error i:first-child {
    color: #ef4444;
}

.alert-close {
    background: none;
    border: none;
    color: inherit;
    font-size: 1rem;
    cursor: pointer;
    opacity: 0.5;
    transition: var(--transition);
    padding: 4px;
    line-height: 1;
}

.alert-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}


.demographic-app {
    background: var(--color-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.04);
    overflow: hidden;
    margin-bottom: 28px;
    animation: fadeIn 0.5s ease;
}

.demographic-app-header {
    background: linear-gradient(135deg, rgba(10, 20, 40, 0.95) 0%, rgba(20, 40, 70, 0.85) 100%);
    padding: 20px 28px 18px;
    color: var(--color-white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.demographic-app-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 14px;
}

.demographic-app-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.demographic-app-brand__badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-white);
}

.demographic-app-brand__badge i {
    color: var(--accent-yellow);
    font-size: 1.1rem;
}

.demographic-header-actions {
    display: flex;
    gap: 10px;
}

.demographic-btn-restart {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: var(--transition);
}

.demographic-btn-restart:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}


.demographic-btn_flex{
    display: flex;
    justify-content: space-between;
}

.demographic-header-progress {
    margin-bottom: 12px;
}

.demographic-header-progress__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.demographic-header-progress__title {
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0.7;
    display: flex;
    align-items: center;
    gap: 6px;
}

.demographic-header-progress__percentage {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-yellow);
}

.demographic-header-progress__bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.demographic-header-progress__fill {
    height: 100%;
    background: var(--accent-gradient);
    border-radius: 10px;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.demographic-header-progress__fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: progressShimmer 1.5s infinite;
}

@keyframes progressShimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.demographic-header-banner {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 0.75rem;
    opacity: 0.8;
    line-height: 1.5;
}

.demographic-header-banner i {
    color: var(--accent-yellow);
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.demographic-app-content {
    padding: 24px 28px 28px;
}

.demographic-sections-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.demographic-section-card {
    background: var(--color-gray-light);
    border-radius: var(--radius);
    padding: 18px 20px;
    border: 1.5px solid var(--color-border);
    transition: var(--transition);
    position: relative;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.demographic-section-card:hover {
    border-color: var(--color-blue);
    box-shadow: var(--shadow-sm);
    transform: translateY(-3px);
}

.demographic-section-card--completed {
    border-color: rgba(16, 185, 129, 0.3);
    background: rgba(16, 185, 129, 0.03);
}

.demographic-section-card--completed::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--color-green);
    border-radius: 0 4px 4px 0;
}

.demographic-section-card--locked {
    opacity: 0.6;
    cursor: not-allowed;
}

.demographic-section-card--locked:hover {
    transform: none;
    border-color: var(--color-border);
}

.demographic-section-card__status {
    position: absolute;
    top: 12px;
    right: 14px;
    font-size: 0.8rem;
    color: var(--color-gray);
}

.demographic-section-card--completed .demographic-section-card__status {
    color: var(--color-green);
}

.demographic-section-card__icon {
    font-size: 1.1rem;
    color: var(--color-blue);
    margin-bottom: 2px;
}

.demographic-section-card__title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-dark);
}

.demographic-section-card__sub {
    font-size: 0.7rem;
    color: var(--color-gray);
}

.demographic-section-card__number {
    font-size: 0.6rem;
    color: var(--color-gray);
    opacity: 0.5;
    margin-top: 4px;
}

.demographic-section-card__lock {
    position: absolute;
    top: 12px;
    right: 14px;
    color: var(--color-gray);
    font-size: 0.8rem;
}

.demographic-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding-top: 8px;
    flex-wrap: wrap;
}

.demographic-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 28px;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: var(--transition);
}

.demographic-btn--outline {
    background: transparent;
    color: var(--color-gray);
    border: 1.5px solid var(--color-border);
}

.demographic-btn--outline:hover {
    background: var(--color-gray-light);
    border-color: var(--color-blue);
    color: var(--color-blue);
}

.demographic-btn--success {
    background: var(--accent-gradient);
    color: var(--color-dark);
}

.demographic-btn--success:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 200, 61, 0.35);
}

.demographic-btn--success:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.demographic-btn__spinner {
    display: none;
}

.demographic-btn.loading .demographic-btn__text {
    display: none;
}

.demographic-btn.loading .demographic-btn__spinner {
    display: inline-block;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.demographic-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.demographic-modal-overlay--open {
    display: flex;
}

.demographic-modal {
    background: var(--color-white);
    border-radius: var(--radius);
    max-width: 620px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.04);
    animation: modalSlideUp 0.3s ease;
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.demographic-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    border-bottom: 1px solid var(--color-border);
}

.demographic-modal-header__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.demographic-modal-header__title i {
    color: var(--color-blue);
}

.demographic-modal-header__close {
    background: none;
    border: none;
    font-size: 1.3rem;
    color: var(--color-gray);
    cursor: pointer;
    transition: var(--transition);
    padding: 4px;
    line-height: 1;
}

.demographic-modal-header__close:hover {
    color: var(--color-dark);
    transform: rotate(90deg);
}

.demographic-modal-body {
    padding: 24px;
    overflow-y: auto;
    max-height: 60vh;
}

.demographic-modal-body::-webkit-scrollbar {
    width: 4px;
}

.demographic-modal-body::-webkit-scrollbar-thumb {
    background: var(--color-border);
    border-radius: 4px;
}

.demographic-question-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.demographic-question-card__category {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-gray);
    display: flex;
    align-items: center;
    gap: 6px;
}

.demographic-question-card__title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-dark);
    display: flex;
    align-items: center;
}

.demographic-question-card__input {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.demographic-question-card__hint {
    font-size: 0.75rem;
    color: var(--color-gray);
    padding: 8px 12px;
    background: var(--color-gray-light);
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    gap: 8px;
}

.demographic-question-card__hint i {
    color: var(--color-orange);
}

.demographic-form-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.demographic-form-group label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-gray);
    display: flex;
    align-items: center;
    gap: 6px;
}

.demographic-form-group label i {
    font-size: 0.7rem;
    color: var(--color-gray);
}

.demographic-form-group input,
.demographic-form-group select,
.demographic-form-group textarea {
    padding: 8px 12px;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    font-family: 'Inter', sans-serif;
    background: var(--color-white);
    color: var(--color-dark);
    outline: none;
    transition: var(--transition);
    width: 100%;
}

.demographic-form-group input:focus,
.demographic-form-group select:focus,
.demographic-form-group textarea:focus {
    border-color: var(--color-blue);
    box-shadow: 0 0 0 4px rgba(43, 92, 171, 0.06);
}

.demographic-form-group input:disabled,
.demographic-form-group select:disabled,
.demographic-form-group textarea:disabled {
    background: var(--color-gray-light);
    opacity: 0.7;
    cursor: not-allowed;
}

.demographic-form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.demographic-field-disabled {
    background: var(--color-gray-light) !important;
    opacity: 0.7 !important;
    cursor: not-allowed !important;
}

.demographic-input-error {
    border-color: var(--color-red) !important;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.06) !important;
}

.demographic-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.demographic-form-row-full {
    grid-column: 1 / -1;
}

.demographic-age-error-message {
    display: none;
    font-size: 0.75rem;
    color: var(--color-red);
    padding: 8px 12px;
    background: var(--color-red-light);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(239, 68, 68, 0.15);
    align-items: center;
    gap: 8px;
}

.demographic-age-error-message--visible {
    display: flex;
}

.demographic-age-error-message i {
    font-size: 0.8rem;
}

.demographic-char-count {
    font-size: 0.65rem;
    color: var(--color-gray);
    margin-top: 4px;
}

.demographic-char-count--success {
    color: var(--color-green);
}

.demographic-char-count--warning {
    color: var(--color-orange);
}

.demographic-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 14px 24px;
    border-top: 1px solid var(--color-border);
}

.demographic-btn--sm {
    padding: 7px 18px;
    font-size: 0.75rem;
}

.demographic-btn--primary {
    background: var(--color-blue);
    color: var(--color-white);
}

.demographic-btn--primary:hover {
    background: var(--color-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(43, 92, 171, 0.2);
}

@media (max-width: 992px) {
    .demographic-app-header {
        padding: 16px 20px 14px;
    }

    .demographic-app-content {
        padding: 20px 20px 24px;
    }

    .demographic-sections-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .demographic-app-header {
        padding: 14px 16px 12px;
    }

    .demographic-app-header__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .demographic-app-brand__badge {
        font-size: 0.9rem;
    }

    .demographic-btn-restart {
        font-size: 0.7rem;
        padding: 5px 12px;
    }

    .demographic-header-banner {
        font-size: 0.7rem;
        padding: 8px 12px;
        flex-wrap: wrap;
    }

    .demographic-app-content {
        padding: 16px 16px 20px;
    }

    .demographic-section-card {
        padding: 14px 16px;
    }

    .demographic-section-card__title {
        font-size: 0.8rem;
    }

    .demographic-modal {
        max-width: 100%;
        margin: 10px;
        border-radius: var(--radius-sm);
    }

    .demographic-modal-header {
        padding: 12px 16px;
    }

    .demographic-modal-header__title {
        font-size: 0.9rem;
    }

    .demographic-modal-body {
        padding: 16px;
        max-height: 50vh;
    }

    .demographic-modal-footer {
        padding: 12px 16px;
        flex-wrap: wrap;
    }

    .demographic-modal-footer .demographic-btn {
        flex: 1;
        justify-content: center;
    }

    .demographic-form-row {
        grid-template-columns: 1fr;
    }

    .demographic-question-card__title {
        font-size: 0.9rem;
    }

    .demographic-btn {
        font-size: 0.8rem;
        padding: 8px 20px;
        justify-content: center;
    }

    .demographic-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .demographic-header-progress__percentage {
        font-size: 0.7rem;
    }

    .demographic-header-progress__title {
        font-size: 0.7rem;
    }
}

@media (max-width: 400px) {
    .demographic-section-card {
        padding: 12px 14px;
    }

    .demographic-section-card__icon {
        font-size: 0.9rem;
    }

    .demographic-section-card__title {
        font-size: 0.75rem;
    }

    .demographic-form-group input,
    .demographic-form-group select,
    .demographic-form-group textarea {
        font-size: 0.75rem;
        padding: 6px 10px;
    }

    .demographic-modal-body {
        padding: 12px;
    }

    .demographic-modal-footer .demographic-btn {
        font-size: 0.7rem;
        padding: 6px 14px;
    }

    .demographic-age-error-message {
        font-size: 0.65rem;
        padding: 6px 10px;
    }
}

body.dark-mode .demographic-app {
    background: #16213e;
    border-color: rgba(255, 255, 255, 0.04);
}

body.dark-mode .demographic-app-header {
    background: linear-gradient(135deg, rgba(10, 20, 40, 0.98) 0%, rgba(20, 40, 70, 0.9) 100%);
}

body.dark-mode .demographic-app-brand__badge {
    color: #ffffff !important;
}

body.dark-mode .demographic-btn-restart {
    color: #94a3b8 !important;
}

body.dark-mode .demographic-btn-restart:hover {
    color: #ffffff !important;
}

body.dark-mode .demographic-header-banner {
    color: #94a3b8 !important;
}

body.dark-mode .demographic-section-card {
    background: #1a1a2e;
    border-color: #2d3748;
}

body.dark-mode .demographic-section-card:hover {
    border-color: var(--color-blue);
}

body.dark-mode .demographic-section-card--completed {
    border-color: rgba(16, 185, 129, 0.2);
    background: rgba(16, 185, 129, 0.04);
}

body.dark-mode .demographic-section-card__title {
    color: #ffffff !important;
}

body.dark-mode .demographic-section-card__sub {
    color: #94a3b8 !important;
}

body.dark-mode .demographic-section-card__number {
    color: #94a3b8 !important;
}

body.dark-mode .demographic-section-card__status {
    color: #94a3b8 !important;
}

body.dark-mode .demographic-section-card--completed .demographic-section-card__status {
    color: #34d399 !important;
}

body.dark-mode .demographic-question-card__title {
    color: #ffffff !important;
}

body.dark-mode .demographic-question-card__category {
    color: #94a3b8 !important;
}

body.dark-mode .demographic-form-group label {
    color: #94a3b8 !important;
}

body.dark-mode .demographic-form-group label i {
    color: #94a3b8 !important;
}

body.dark-mode .demographic-form-group input,
body.dark-mode .demographic-form-group select,
body.dark-mode .demographic-form-group textarea {
    background: #16213e;
    border-color: #2d3748;
    color: #ffffff !important;
}

body.dark-mode .demographic-form-group input:disabled,
body.dark-mode .demographic-form-group select:disabled,
body.dark-mode .demographic-form-group textarea:disabled {
    background: #1a1a2e;
    color: #94a3b8 !important;
}

body.dark-mode .demographic-form-group input:focus,
body.dark-mode .demographic-form-group select:focus,
body.dark-mode .demographic-form-group textarea:focus {
    border-color: var(--color-blue);
}

body.dark-mode .demographic-field-disabled {
    background: #1a1a2e !important;
}

body.dark-mode .demographic-modal {
    background: #16213e;
    border-color: rgba(255, 255, 255, 0.04);
}

body.dark-mode .demographic-modal-header {
    border-bottom-color: #2d3748;
}

body.dark-mode .demographic-modal-header__title {
    color: #ffffff !important;
}

body.dark-mode .demographic-modal-header__title i {
    color: var(--color-blue) !important;
}

body.dark-mode .demographic-modal-header__close {
    color: #94a3b8 !important;
}

body.dark-mode .demographic-modal-header__close:hover {
    color: #ffffff !important;
}

body.dark-mode .demographic-modal-footer {
    border-top-color: #2d3748;
}

body.dark-mode .demographic-btn--outline {
    color: #94a3b8 !important;
    border-color: #2d3748;
}

body.dark-mode .demographic-btn--outline:hover {
    background: #1e2a4a;
    border-color: var(--color-blue);
    color: #ffffff !important;
}

body.dark-mode .demographic-btn--primary {
    background: var(--color-blue);
    color: #ffffff !important;
}

body.dark-mode .demographic-btn--primary:hover {
    background: var(--color-blue-dark);
}

body.dark-mode .demographic-question-card__hint {
    background: #1a1a2e;
    border-color: #2d3748;
    color: #94a3b8 !important;
}

body.dark-mode .demographic-age-error-message {
    background: rgba(239, 68, 68, 0.08);
    border-color: rgba(239, 68, 68, 0.15);
    color: #f87171 !important;
}

body.dark-mode .demographic-char-count {
    color: #94a3b8 !important;
}

body.dark-mode .demographic-char-count--success {
    color: #34d399 !important;
}

body.dark-mode .demographic-char-count--warning {
    color: #fbbf24 !important;
}

body.dark-mode .demographic-modal-overlay {
    background: rgba(0, 0, 0, 0.7);
}

body.dark-mode .demographic-btn--success {
    color: var(--color-dark) !important;
}

body.dark-mode .demographic-header-progress__title {
    color: #94a3b8 !important;
}

body.dark-mode .demographic-header-progress__percentage {
    color: var(--accent-yellow) !important;
}

.withdraw-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 28px;
    padding: 24px 28px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.04);
}

.withdraw-title-section {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.withdraw-main-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: -0.5px;
}

.withdraw-subtitle {
    font-size: 0.85rem;
    color: var(--gray);
    font-weight: 400;
}

.withdraw-balance-card {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(43, 92, 171, 0.05) 100%);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(43, 92, 171, 0.1);
    min-width: 150px;
}

.withdraw-balance-label {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--gray);
    font-weight: 600;
}

.withdraw-balance-amount {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.withdraw-container {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.04);
    margin-bottom: 28px;
}

.withdraw-category {
    padding: 4px 0;
}

.withdraw-category:last-of-type {
    padding-bottom: 0;
}

.withdraw-category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 14px;
    margin-bottom: 18px;
    border-bottom: 1px solid var(--border-color);
}

.withdraw-category-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.withdraw-category-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.withdraw-category-title h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.withdraw-category-count {
    font-size: 0.7rem;
    color: var(--gray);
    background: var(--light-gray);
    padding: 2px 12px;
    border-radius: 50px;
    font-weight: 500;
}


.withdraw-divider {
    height: 1px;
    background: var(--border-color);
    margin: 24px 0;
}


.withdraw-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 16px;
}

.withdraw-method-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 14px 16px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 130px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.withdraw-method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, transparent 100%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.withdraw-method-card:hover::before {
    opacity: 1;
}

.withdraw-method-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    border-color: rgba(255,255,255,0.3);
}

.withdraw-method-card:active {
    transform: translateY(-2px) scale(0.98);
}

.withdraw-method-card.out-of-stock {
    opacity: 0.5;
    cursor: not-allowed;
    filter: grayscale(0.3);
}

.withdraw-method-card.out-of-stock:hover {
    transform: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    border-color: transparent;
}

.withdraw-method-card.out-of-stock:hover::before {
    opacity: 0;
}

.withdraw-method-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    padding: 8px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.withdraw-method-card:hover .withdraw-method-icon {
    transform: scale(1.05);
}

.withdraw-method-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.withdraw-method-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--white);
    text-align: center;
    word-break: break-word;
    line-height: 1.2;
    text-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.withdraw-method-min {
    font-size: 0.6rem;
    color: rgba(255,255,255,0.7);
    margin-top: 2px;
    font-weight: 500;
    text-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.withdraw-method-badge {
    font-size: 0.55rem;
    font-weight: 600;
    padding: 2px 10px;
    border-radius: 50px;
    margin-top: 6px;
    background: rgba(255,255,255,0.2);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.1);
}

.withdraw-method-badge.cash {
    background: rgba(255, 200, 61, 0.25);
}

.withdraw-method-badge.giftcard {
    background: rgba(16, 185, 129, 0.25);
}

.withdraw-method-badge.skin {
    background: rgba(139, 92, 246, 0.25);
}

.withdraw-method-stock {
    font-size: 0.6rem;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(0,0,0,0.2);
    padding: 2px 10px;
    border-radius: 50px;
    backdrop-filter: blur(4px);
}

.withdraw-method-stock i {
    font-size: 0.65rem;
}

.withdraw-method-login {
    font-size: 0.55rem;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(255,255,255,0.15);
    padding: 2px 12px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.1);
}

.withdraw-modal-info {
    margin-bottom: 20px;
}

.withdraw-modal-method {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: var(--light-gray);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    margin-bottom: 16px;
}

.withdraw-modal-method img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: contain;
    background: var(--white);
    padding: 4px;
}

.withdraw-modal-method span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
}

.withdraw-modal-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.withdraw-detail {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 10px 14px;
    background: var(--light-gray);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
}

.withdraw-detail-label {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray);
    font-weight: 600;
}

.withdraw-detail-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
}

.withdraw-form-group {
    margin-bottom: 16px;
}

.withdraw-form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
}

.withdraw-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.withdraw-currency {
    position: absolute;
    left: 14px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray);
    pointer-events: none;
}

.withdraw-input-wrapper input {
    width: 100%;
    padding: 12px 14px 12px 32px;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    background: var(--white);
    color: var(--dark);
    outline: none;
    transition: var(--transition);
}

.withdraw-input-wrapper input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(43, 92, 171, 0.06);
}

.withdraw-input-wrapper input::placeholder {
    color: var(--gray);
    font-weight: 400;
    opacity: 0.5;
}

.withdraw-input-help {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: var(--gray);
    margin-top: 4px;
}

.withdraw-input-help strong {
    color: var(--dark);
}

.withdraw-form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
    background: var(--white);
    color: var(--dark);
    outline: none;
    transition: var(--transition);
    resize: vertical;
    min-height: 80px;
}

.withdraw-form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(43, 92, 171, 0.06);
}

.withdraw-form-group textarea::placeholder {
    color: var(--gray);
    opacity: 0.5;
}

@media (max-width: 992px) {
    .withdraw-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 20px;
    }

    .withdraw-main-title {
        font-size: 1.3rem;
    }

    .withdraw-balance-card {
        width: 100%;
        align-items: center;
        flex-direction: row;
        justify-content: space-between;
        padding: 10px 18px;
    }

    .withdraw-balance-amount {
        font-size: 1.3rem;
    }

    .withdraw-container {
        padding: 20px 20px;
    }

    .withdraw-modal-details {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .withdraw-header {
        padding: 16px 16px;
    }

    .withdraw-main-title {
        font-size: 1.1rem;
        gap: 8px;
    }

    .withdraw-subtitle {
        font-size: 0.75rem;
    }

    .withdraw-container {
        padding: 14px 14px;
        border-radius: var(--radius-sm);
    }

    .withdraw-category-header {
        flex-wrap: wrap;
        gap: 8px;
    }

    .withdraw-category-title h3 {
        font-size: 0.85rem;
    }

    .withdraw-category-icon {
        width: 24px;
        height: 24px;
    }

    .withdraw-methods-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .withdraw-method-card {
        min-height: 110px;
        padding: 16px 10px 12px;
    }

    .withdraw-method-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 6px;
    }

    .withdraw-method-name {
        font-size: 0.7rem;
    }

    .withdraw-method-min {
        font-size: 0.55rem;
    }

    .withdraw-method-badge {
        font-size: 0.5rem;
        padding: 1px 8px;
    }

    .withdraw-divider {
        margin: 16px 0;
    }

    .withdraw-modal-method {
        padding: 10px 14px;
        gap: 10px;
    }

    .withdraw-modal-method img {
        width: 36px;
        height: 36px;
    }

    .withdraw-modal-method span {
        font-size: 0.85rem;
    }

    .withdraw-modal-details {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .withdraw-detail {
        padding: 8px 12px;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .withdraw-detail-label {
        font-size: 0.55rem;
    }

    .withdraw-detail-value {
        font-size: 0.8rem;
    }

    .withdraw-input-wrapper input {
        padding: 10px 14px 10px 30px;
        font-size: 0.9rem;
    }

    .withdraw-form-group textarea {
        font-size: 0.8rem;
        padding: 10px 12px;
    }

    .withdraw-balance-label {
        font-size: 0.55rem;
    }

    .withdraw-balance-amount {
        font-size: 1.1rem;
    }

    .withdraw-category-count {
        font-size: 0.6rem;
        padding: 1px 10px;
    }

    .withdraw-method-stock {
        font-size: 0.5rem;
        padding: 1px 8px;
    }

    .withdraw-method-login {
        font-size: 0.5rem;
        padding: 1px 8px;
    }
}

@media (max-width: 400px) {
    .withdraw-methods-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .withdraw-method-card {
        min-height: 90px;
        padding: 12px 8px 10px;
        border-radius: 8px;
    }

    .withdraw-method-icon {
        width: 36px;
        height: 36px;
        padding: 4px;
    }

    .withdraw-method-name {
        font-size: 0.6rem;
    }

    .withdraw-method-min {
        font-size: 0.5rem;
    }

    .withdraw-method-badge {
        font-size: 0.45rem;
        padding: 1px 6px;
    }

    .withdraw-container {
        padding: 10px 10px;
    }
}

body.dark-mode .withdraw-header {
    background: #16213e;
    border-color: rgba(255,255,255,0.04);
}

body.dark-mode .withdraw-main-title {
    color: #ffffff !important;
}

body.dark-mode .withdraw-subtitle {
    color: #94a3b8 !important;
}

body.dark-mode .withdraw-balance-card {
    background: #1e2a4a;
    border-color: rgba(255,255,255,0.04);
}

body.dark-mode .withdraw-balance-label {
    color: #94a3b8 !important;
}

body.dark-mode .withdraw-balance-amount {
    color: var(--primary) !important;
}

body.dark-mode .withdraw-container {
    background: #16213e;
    border-color: rgba(255,255,255,0.04);
}

body.dark-mode .withdraw-category-header {
    border-bottom-color: #2d3748;
}

body.dark-mode .withdraw-category-title h3 {
    color: #ffffff !important;
}

body.dark-mode .withdraw-category-count {
    background: #1e2a4a;
    color: #94a3b8 !important;
}

body.dark-mode .withdraw-divider {
    background: #2d3748;
}

body.dark-mode .withdraw-method-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

body.dark-mode .withdraw-modal-method {
    background: #1a1a2e;
    border-color: #2d3748;
}

body.dark-mode .withdraw-modal-method span {
    color: #ffffff !important;
}

body.dark-mode .withdraw-detail {
    background: #1a1a2e;
    border-color: #2d3748;
}

body.dark-mode .withdraw-detail-label {
    color: #94a3b8 !important;
}

body.dark-mode .withdraw-detail-value {
    color: #ffffff !important;
}

body.dark-mode .withdraw-form-group label {
    color: #ffffff !important;
}

body.dark-mode .withdraw-input-wrapper input {
    background: #16213e;
    border-color: #2d3748;
    color: #ffffff !important;
}

body.dark-mode .withdraw-input-wrapper input:focus {
    border-color: var(--primary);
}

body.dark-mode .withdraw-input-wrapper input::placeholder {
    color: #94a3b8 !important;
}

body.dark-mode .withdraw-currency {
    color: #94a3b8 !important;
}

body.dark-mode .withdraw-input-help {
    color: #94a3b8 !important;
}

body.dark-mode .withdraw-input-help strong {
    color: #ffffff !important;
}

body.dark-mode .withdraw-form-group textarea {
    background: #16213e;
    border-color: #2d3748;
    color: #ffffff !important;
}

body.dark-mode .withdraw-form-group textarea::placeholder {
    color: #94a3b8 !important;
}

body.dark-mode .withdraw-method-badge.cash {
    background: rgba(255, 200, 61, 0.15);
}

body.dark-mode .withdraw-method-badge.giftcard {
    background: rgba(16, 185, 129, 0.15);
}

body.dark-mode .withdraw-method-badge.skin {
    background: rgba(139, 92, 246, 0.15);
}

.withdraw-content-div {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px 28px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0,0,0,0.04);
    margin-top: 24px;
    animation: contentSlideDown 0.4s ease;
}

@keyframes contentSlideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.withdraw-content-wrapper {
    max-width: 100%;
}


.withdraw-content-top {
display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 18px;
    flex-direction: column;
}

.withdraw-content-left {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: space-between;
    width: 100%;
}

.withdraw-content-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.withdraw-content-logo img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: contain;
    background: var(--light-gray);
    padding: 4px;
}

.withdraw-content-logo h2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
}

.withdraw-content-close {
    background: none;
    border: none;
    color: var(--gray);
    cursor: pointer;
    padding: 4px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.withdraw-content-close:hover {
    color: var(--dark);
    transform: rotate(90deg);
}

.withdraw-content-info {
    font-size: 0.85rem;
    color: var(--gray);
}

.withdraw-content-address {
    margin-bottom: 18px;
}

.withdraw-content-fixed-payment {
display: flex;
  margin-top: 47px;
  margin-bottom: 36px;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.withdrawCardButton{
        position: relative;
    cursor: pointer;
    width: 24%;
    height: 125px;
    margin-top: 12px;
    border-radius: 5px;
    overflow: hidden;
}

.withdrawCardButtonLogo{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    padding: 8px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.withdrawCardButtonAmount{
    position: absolute;
  top: 15px;
  right: 15px;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
}

.withdraw-content-row {
    position: relative;
    margin-bottom: 10px;
}

.withdraw-content-input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    background: var(--white);
    color: var(--dark);
    outline: none;
    transition: var(--transition);
}

.withdraw-content-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(43, 92, 171, 0.06);
}

.withdraw-content-input::placeholder {
    color: var(--gray);
    opacity: 0.5;
}

.withdraw-amount-input {
    padding-right: 40px;
    font-weight: 600;
    font-size: 1.1rem;
}

.withdraw-amount-currency {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gray);
    pointer-events: none;
}

.withdraw-content-helper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.75rem;
    color: var(--gray);
    padding: 4px 4px 0;
}

.withdraw-content-helper p {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

.withdraw-helper-value {
    font-weight: 700;
    color: var(--dark);
}

.withdraw-content-helper svg {
    fill: var(--gray);
}

.withdraw-content-gateway {
    background: var(--light-gray);
    border-radius: var(--radius-sm);
    padding: 16px 18px;
    border: 1px solid var(--border-color);
    margin-bottom: 18px;
}

.withdraw-gateway-hint {
    font-size: 0.75rem;
    color: var(--gray);
    margin: 0 0 10px 0;
    line-height: 1.4;
}

.withdraw-content-save-row {
    display: flex;
    gap: 8px;
    margin-bottom: 0;
}

.withdraw-content-save-row .withdraw-content-input {
    flex: 1;
}

.withdraw-content-save-btn {
    padding: 10px 24px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.withdraw-content-save-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(43, 92, 171, 0.2);
}

.withdraw-content-seperator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 18px 0;
}

.withdraw-seperator-line {
    flex: 1;
    height: 1px;
    background: var(--border-color);
}

.withdraw-seperator-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-color);
    flex-shrink: 0;
}

.withdraw-content-checkout {
    background: var(--light-gray);
    border-radius: var(--radius-sm);
    padding: 18px 20px;
    border: 1px solid var(--border-color);
}

.withdraw-checkout-table {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.withdraw-checkout-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--gray);
}

.withdraw-checkout-row span:first-child {
    font-weight: 500;
}

.withdraw-checkout-price {
    font-weight: 600;
    color: var(--dark);
}

.withdraw-checkout-row--highlight {
    padding-top: 10px;
    border-top: 1px solid var(--border-color);
    margin-top: 4px;
    font-size: 1rem;
}

.withdraw-checkout-row--highlight span:first-child {
    font-weight: 700;
    color: var(--dark);
}

.withdraw-checkout-row--highlight .withdraw-checkout-price {
    font-size: 1.2rem;
    color: var(--accent-yellow);
    font-weight: 800;
}

.withdraw-checkout-total {
    color: var(--accent-yellow);
}

.withdraw-content-confirm {
    width: 100%;
    padding: 14px 24px;
    background: var(--accent-gradient);
    color: var(--dark);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 14px;
}

.withdraw-content-confirm:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 200, 61, 0.35);
}

.withdraw-content-confirm:active {
    transform: scale(0.98);
}

@media (max-width: 600px) {
    .withdraw-content-div {
        padding: 16px 14px;
        border-radius: var(--radius-sm);
        margin-top: 16px;
    }

    .withdraw-content-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .withdraw-content-left {
        width: 100%;
        justify-content: space-between;
    }

    .withdraw-content-logo h2 {
        font-size: 0.95rem;
    }

    .withdraw-content-logo img {
        width: 36px;
        height: 36px;
    }

    .withdraw-content-info {
        font-size: 0.75rem;
        width: 100%;
    }

    .withdraw-content-input {
        padding: 10px 14px;
        font-size: 0.8rem;
    }

    .withdraw-amount-input {
        font-size: 0.95rem;
        padding-right: 36px;
    }

    .withdraw-amount-currency {
        font-size: 0.8rem;
        right: 12px;
    }

    .withdraw-content-gateway {
        padding: 12px 14px;
    }

    .withdraw-gateway-hint {
        font-size: 0.7rem;
    }

    .withdraw-content-save-row {
        flex-direction: column;
    }

    .withdraw-content-save-btn {
        width: 100%;
        justify-content: center;
    }

    .withdraw-checkout-row {
        font-size: 0.75rem;
    }

    .withdraw-checkout-row--highlight {
        font-size: 0.9rem;
    }

    .withdraw-checkout-row--highlight .withdraw-checkout-price {
        font-size: 1rem;
    }

    .withdraw-content-confirm {
        font-size: 0.85rem;
        padding: 12px 20px;
    }

    .withdraw-content-helper {
        font-size: 0.65rem;
    }

    .withdraw-content-helper svg {
        width: 20px !important;
        height: 20px !important;
    }
}

@media (max-width: 400px) {
    .withdraw-content-div {
        padding: 12px 10px;
    }

    .withdraw-content-logo h2 {
        font-size: 0.85rem;
    }

    .withdraw-content-logo img {
        width: 30px;
        height: 30px;
    }

    .withdraw-content-input {
        padding: 8px 12px;
        font-size: 0.75rem;
    }

    .withdraw-amount-input {
        font-size: 0.85rem;
        padding-right: 32px;
    }

    .withdraw-amount-currency {
        font-size: 0.7rem;
        right: 10px;
    }
}

body.dark-mode .withdraw-content-div {
    background: #16213e;
    border-color: rgba(255,255,255,0.04);
}

body.dark-mode .withdraw-content-top {
    border-bottom-color: #2d3748;
}

body.dark-mode .withdraw-content-logo h2 {
    color: #ffffff !important;
}

body.dark-mode .withdraw-content-close {
    color: #94a3b8 !important;
}

body.dark-mode .withdraw-content-close:hover {
    color: #ffffff !important;
}

body.dark-mode .withdraw-content-info {
    color: #94a3b8 !important;
}

body.dark-mode .withdraw-content-input {
    background: #16213e;
    border-color: #2d3748;
    color: #ffffff !important;
}

body.dark-mode .withdraw-content-input:focus {
    border-color: var(--primary);
}

body.dark-mode .withdraw-content-input::placeholder {
    color: #94a3b8 !important;
}

body.dark-mode .withdraw-amount-currency {
    color: #94a3b8 !important;
}

body.dark-mode .withdraw-helper-value {
    color: #ffffff !important;
}

body.dark-mode .withdraw-content-gateway {
    background: #1a1a2e;
    border-color: #2d3748;
}

body.dark-mode .withdraw-gateway-hint {
    color: #94a3b8 !important;
}

body.dark-mode .withdraw-content-save-btn {
    background: var(--primary);
}

body.dark-mode .withdraw-content-save-btn:hover {
    background: var(--primary-dark);
}

body.dark-mode .withdraw-seperator-line {
    background: #2d3748;
}

body.dark-mode .withdraw-seperator-dot {
    background: #2d3748;
}

body.dark-mode .withdraw-content-checkout {
    background: #1a1a2e;
    border-color: #2d3748;
}

body.dark-mode .withdraw-checkout-row {
    color: #94a3b8 !important;
}

body.dark-mode .withdraw-checkout-price {
    color: #ffffff !important;
}

body.dark-mode .withdraw-checkout-row--highlight {
    border-top-color: #2d3748;
}

body.dark-mode .withdraw-checkout-row--highlight span:first-child {
    color: #ffffff !important;
}

body.dark-mode .withdraw-checkout-row--highlight .withdraw-checkout-price {
    color: var(--accent-yellow) !important;
}

body.dark-mode .withdraw-checkout-total {
    color: var(--accent-yellow) !important;
}

body.dark-mode .withdraw-content-confirm {
    color: var(--dark) !important;
}

.rev_con {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
    animation: revFadeIn 0.3s ease;
}

@keyframes revFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.rev_section {
    background: var(--white);
    border-radius: var(--radius);
    max-width: 480px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    animation: revSlideUp 0.3s ease;
}

@keyframes revSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.rev_section::-webkit-scrollbar {
    width: 4px;
}

.rev_section::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}

.rev_close {
    position: absolute;
    top: 16px;
    right: 18px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    transition: var(--transition);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rev_close svg path {
    stroke: var(--gray);
    transition: var(--transition);
}

.rev_close:hover svg path {
    stroke: var(--dark);
}

.rev_close:hover {
    transform: rotate(90deg);
}

.rev_parent {
    padding: 32px 28px 28px;
}

.rev_body {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}

.rev_img_body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.rev_img_header {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.rev_img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.rev_header_text {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
}

.rev_text {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
    max-width: 380px;
}

.rev_text:first-of-type {
    margin-top: 4px;
}

.rev_dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 8px 0 12px;
}

.rev_dots::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gray);
}

.rev_dots::after {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gray);
}

.rev_dots {
    position: relative;
}

.rev_dots::before {
    animation: revDotPulse 1.5s ease-in-out infinite;
}

.rev_dots::after {
    animation: revDotPulse 1.5s ease-in-out infinite 0.5s;
}

@keyframes revDotPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(0.8);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.rev_link_body {
    display: flex;
    justify-content: center;
    margin-top: 4px;
}

.rev_link_header {
    display: inline-block;
}

.rev_link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 28px;
    background: var(--accent-gradient);
    color: var(--dark);
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

.rev_link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 200, 61, 0.35);
}

.rev_link:active {
    transform: scale(0.97);
}

@media (max-width: 600px) {
    .rev_con {
        padding: 12px;
    }

    .rev_parent {
        padding: 28px 18px 20px;
    }

    .rev_close {
        top: 12px;
        right: 14px;
    }

    .rev_img_header {
        width: 64px;
        height: 64px;
        padding: 12px;
    }

    .rev_header_text {
        font-size: 1.1rem;
    }

    .rev_text {
        font-size: 0.8rem;
        max-width: 100%;
    }

    .rev_link {
        padding: 8px 20px;
        font-size: 0.8rem;
    }

    .rev_section {
        border-radius: var(--radius-sm);
    }
}

@media (max-width: 400px) {
    .rev_parent {
        padding: 20px 14px 16px;
    }

    .rev_img_header {
        width: 56px;
        height: 56px;
        padding: 10px;
    }

    .rev_header_text {
        font-size: 0.95rem;
    }

    .rev_text {
        font-size: 0.75rem;
    }

    .rev_link {
        padding: 6px 16px;
        font-size: 0.75rem;
    }

    .rev_close svg {
        width: 9px;
        height: 9px;
    }
}

body.dark-mode .rev_con {
    background: rgba(0, 0, 0, 0.7);
}

body.dark-mode .rev_section {
    background: #16213e;
    border-color: rgba(255, 255, 255, 0.04);
}

body.dark-mode .rev_close svg path {
    stroke: #94a3b8;
}

body.dark-mode .rev_close:hover svg path {
    stroke: #ffffff;
}

body.dark-mode .rev_header_text {
    color: #ffffff !important;
}

body.dark-mode .rev_text {
    color: #94a3b8 !important;
}

body.dark-mode .rev_img_header {
    background: #1e2a4a;
}

body.dark-mode .rev_dots::before,
body.dark-mode .rev_dots::after {
    background: #94a3b8;
}

body.dark-mode .rev_link {
    color: var(--dark) !important;
}

.partner-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 28px;
    padding: 24px 28px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.04);
}

.partner-title-section {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.partner-main-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: -0.5px;
}

.partner-subtitle {
    font-size: 0.85rem;
    color: var(--gray);
    font-weight: 400;
}

.partner-stats {
    display: flex;
    gap: 24px;
}

.partner-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.partner-stat-number {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
}

.partner-stat-label {
    font-size: 0.65rem;
    color: var(--gray);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.verify-banner {
    background: linear-gradient(145deg, rgba(22, 28, 38, 0.96), rgba(12, 16, 24, 0.98));
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 20px 24px;
    margin-bottom: 24px;
}

.verify-banner-header {
    color: #ccc;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.verify-banner-header i {
    color: var(--primary);
}

.verify-banner-progress {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    height: 6px;
    margin-bottom: 14px;
    overflow: hidden;
}

.verify-banner-progress-bar {
    height: 100%;
    background: var(--primary);
    border-radius: 10px;
    transition: width 0.6s ease;
}

.verify-banner-steps {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.verify-banner-step {
    background: rgba(78, 132, 179, 0.15);
    border: 1px solid rgba(78, 132, 179, 0.3);
    padding: 6px 14px;
    border-radius: 50px;
    color: #4e84b3;
    font-size: 0.7rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
}

.verify-banner-step:hover {
    background: rgba(78, 132, 179, 0.25);
    transform: translateY(-1px);
}

.partner-grid-section {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px 24px 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.04);
    margin-bottom: 24px;
}

.partner-grid-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.partner-grid-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.partner-grid-count {
    font-size: 0.7rem;
    color: var(--gray);
    background: var(--light-gray);
    padding: 2px 12px;
    border-radius: 50px;
    font-weight: 500;
    flex-shrink: 0;
}

.partner-grid-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 16px;
    max-width: 100%;
    width: 100%;
}

.partner-card {
    background: var(--white);
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    border: 1px solid var(--border-color);
    position: relative;
}

.partner-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    border-color: var(--primary);
}

.partner-card:active {
    transform: translateY(-2px) scale(0.98);
}

.partner-card-locked {
    opacity: 0.7;
}

.partner-card-locked:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}

.partner-card-top {
    padding: 16px 12px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 100px;
}

.partner-card-heart {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
}

.partner-heart-btn {
    background: rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 3px 8px;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    backdrop-filter: blur(4px);
}

.partner-heart-btn:hover {
    transform: scale(1.1);
    background: rgba(0, 0, 0, 0.35);
}

.partner-heart-btn:active {
    transform: scale(0.9);
}

.partner-heart-svg {
    width: 14px;
    height: 14px;
    transition: all 0.3s ease;
}

.partner-heart-btn span {
    font-size: 0.65rem;
    font-weight: 600;
    color: #fff;
    text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.partner-card-image {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    margin-top: 6px;
}

.partner-card:hover .partner-card-image {
    transform: scale(1.05);
}

.partner-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.partner-card-body {
    padding: 12px 14px 14px;
    text-align: center;
}

.partner-card-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--dark);
    margin: 0 0 4px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.partner-card-stars {
    display: flex;
    gap: 2px;
    align-items: center;
    justify-content: center;
}

.partner-card-stars .star-svg {
    width: 11px;
    height: 11px;
    fill: var(--accent-yellow);
    flex-shrink: 0;
}

.partner-card-stars .star-svg.empty {
    fill: rgba(0, 0, 0, 0.08);
}

body.dark-mode .partner-card-stars .star-svg.empty {
    fill: rgba(255, 255, 255, 0.08);
}

.partner-card-lock-label {
    font-size: 0.55rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 4px;
    justify-content: center;
    margin-top: 4px;
}

.partner-card-lock-label i {
    font-size: 0.55rem;
}

.partner-card-lock-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(0 0 0 / 43%);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    backdrop-filter: blur(0.2px);
}

.partner-card-lock-overlay i {
    font-size: 24px;
    color: var(--color-blue-light);
    opacity: 0.4;
}

@media (max-width: 992px) {
    .partner-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 20px;
    }

    .partner-main-title {
        font-size: 1.3rem;
    }

    .partner-stats {
        width: 100%;
        justify-content: space-around;
    }

    .partner-grid-section {
        padding: 18px 18px 20px;
    }

    .partner-grid {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    }
}

@media (max-width: 600px) {
    .partner-header {
        padding: 16px 16px;
    }

    .partner-main-title {
        font-size: 1.1rem;
        gap: 8px;
    }

    .partner-subtitle {
        font-size: 0.75rem;
    }

    .partner-stat-number {
        font-size: 1.1rem;
    }

    .partner-grid-section {
        padding: 14px 14px 16px;
        border-radius: var(--radius-sm);
    }

    .partner-grid-header {
        flex-wrap: wrap;
        gap: 8px;
        padding-bottom: 12px;
        margin-bottom: 14px;
    }

    .partner-grid-title {
        font-size: 0.85rem;
    }

    .partner-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .partner-card-top {
        min-height: 80px;
        padding: 12px 10px 10px;
    }

    .partner-card-image {
        width: 44px;
        height: 44px;
        padding: 6px;
    }

    .partner-card-body {
        padding: 10px 10px 12px;
    }

    .partner-card-title {
        font-size: 0.7rem;
    }

    .partner-card-stars .star-svg {
        width: 9px;
        height: 9px;
    }

    .partner-heart-btn {
        padding: 2px 6px;
    }

    .partner-heart-svg {
        width: 12px;
        height: 12px;
    }

    .partner-heart-btn span {
        font-size: 0.55rem;
    }

    .verify-banner {
        padding: 14px 16px;
    }

    .verify-banner-header {
        font-size: 0.75rem;
    }

    .verify-banner-step {
        font-size: 0.6rem;
        padding: 4px 10px;
    }

    .partner-card-lock-overlay i {
        font-size: 18px;
    }

    .partner-card-lock-label {
        font-size: 0.5rem;
    }

    .partner-grid-count {
        font-size: 0.6rem;
        padding: 2px 10px;
    }
}

@media (max-width: 400px) {
    .partner-grid-section {
        padding: 10px 10px 12px;
    }

    .partner-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .partner-grid-header {
        flex-direction: row;
        justify-content: space-between;
    }

    .partner-grid-title {
        font-size: 0.75rem;
    }

    .partner-grid-count {
        font-size: 0.55rem;
        padding: 1px 8px;
    }

    .partner-card-top {
        min-height: 68px;
        padding: 10px 8px 8px;
    }

    .partner-card-image {
        width: 38px;
        height: 38px;
        padding: 5px;
    }

    .partner-card-body {
        padding: 8px 8px 10px;
    }

    .partner-card-title {
        font-size: 0.6rem;
    }

    .partner-card-stars .star-svg {
        width: 8px;
        height: 8px;
    }

    .partner-heart-btn {
        padding: 2px 5px;
    }

    .partner-heart-svg {
        width: 10px;
        height: 10px;
    }

    .partner-heart-btn span {
        font-size: 0.5rem;
    }
}

body.dark-mode .partner-header {
    background: #16213e;
    border-color: rgba(255,255,255,0.04);
}

body.dark-mode .partner-main-title {
    color: #ffffff !important;
}

body.dark-mode .partner-subtitle {
    color: #94a3b8 !important;
}

body.dark-mode .partner-stat-number {
    color: var(--primary) !important;
}

body.dark-mode .partner-stat-label {
    color: #94a3b8 !important;
}

body.dark-mode .partner-grid-section {
    background: #16213e;
    border-color: rgba(255,255,255,0.04);
}

body.dark-mode .partner-grid-header {
    border-bottom-color: #2d3748;
}

body.dark-mode .partner-grid-title {
    color: #ffffff !important;
}

body.dark-mode .partner-grid-count {
    background: #1e2a4a;
    color: #94a3b8 !important;
}

body.dark-mode .partner-card {
    background: #1a1a2e;
    border-color: #2d3748;
}

body.dark-mode .partner-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    border-color: var(--primary);
}

body.dark-mode .partner-card-title {
    color: #ffffff !important;
}

body.dark-mode .partner-heart-btn {
    background: rgba(0, 0, 0, 0.3);
}

body.dark-mode .partner-heart-btn:hover {
    background: rgba(0, 0, 0, 0.45);
}

body.dark-mode .partner-heart-btn span {
    color: #fff !important;
}

body.dark-mode .verify-banner {
    background: linear-gradient(145deg, rgba(22, 28, 38, 0.96), rgba(12, 16, 24, 0.98));
    border-color: rgba(255,255,255,0.04);
}

body.dark-mode .verify-banner-header {
    color: #94a3b8 !important;
}

body.dark-mode .verify-banner-step {
    color: #60a5fa !important;
    border-color: rgba(96, 165, 250, 0.2);
    background: rgba(96, 165, 250, 0.08);
}

body.dark-mode .verify-banner-step:hover {
    background: rgba(96, 165, 250, 0.15);
}

body.dark-mode .partner-card-lock-overlay i {
    color: #94a3b8;
}

body.dark-mode .partner-card-lock-label {
    color: #94a3b8 !important;
}

.custom-fullscreen-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    animation: modalFadeIn 0.3s ease;
}

.custom-fullscreen-modal.active {
    display: flex;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.96);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.custom-modal-content {
    background: var(--white);
    border-radius: 16px;
    width: 100%;
    max-width: 1120px;
    height: 88vh;
    max-height: 88vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
    animation: modalSlideUp 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.custom-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    flex-shrink: 0;
    min-height: 64px;
}

.custom-modal-header-left {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 16px;
}

.custom-modal-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.custom-modal-logo {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.04);
    padding: 4px;
}

.custom-modal-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.3px;
}

.custom-modal-actions {
    display: flex;
    align-items: center;
    gap: 6px;
}

.custom-modal-action-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    color: #94a3b8;
    border: 1px solid rgba(255, 255, 255, 0.04);
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    text-decoration: none;
}

.custom-modal-action-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
}

.custom-modal-action-btn:active {
    transform: scale(0.96);
}

.custom-modal-action-btn svg {
    flex-shrink: 0;
}

.custom-close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.04);
    color: #94a3b8;
    cursor: pointer;
    transition: all 0.25s ease;
    flex-shrink: 0;
    margin-left: 4px;
}

.custom-close-btn:hover {
    background: rgba(239, 68, 68, 0.12);
    color: #ef4444;
    border-color: rgba(239, 68, 68, 0.15);
    transform: rotate(90deg);
}

.custom-close-btn:active {
    transform: rotate(90deg) scale(0.9);
}

.custom-close-btn svg {
    width: 20px;
    height: 20px;
}

.custom-modal-body {
    flex: 1;
    position: relative;
    background: var(--light-gray);
    overflow: hidden;
}

#offerwallIframe {
    width: 100%;
    height: 100%;
    border: none;
    background: var(--white);
    display: block;
}

.custom-iframe-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    gap: 20px;
}

.custom-iframe-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-spinner {
    position: relative;
    width: 48px;
    height: 48px;
}

.loading-spinner-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid transparent;
}

.loading-spinner-ring:nth-child(1) {
    border-top-color: var(--primary);
    animation: spinnerRotate 1s linear infinite;
}

.loading-spinner-ring:nth-child(2) {
    border-right-color: var(--accent-yellow);
    animation: spinnerRotate 1.2s linear infinite reverse;
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
}

.loading-spinner-ring:nth-child(3) {
    border-bottom-color: #10b981;
    animation: spinnerRotate 0.8s linear infinite;
    width: 40%;
    height: 40%;
    top: 30%;
    left: 30%;
}

@keyframes spinnerRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.loading-text {
    font-size: 0.85rem;
    color: var(--gray);
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    animation: loadingPulseText 1.5s ease-in-out infinite;
}

@keyframes loadingPulseText {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

.custom-fullscreen-modal.fullscreen .custom-modal-content {
    max-width: 100%;
    height: 100%;
    max-height: 100%;
    border-radius: 0;
}

.custom-fullscreen-modal.fullscreen {
    padding: 0;
}

.custom-fullscreen-modal.fullscreen .custom-modal-header {
    border-radius: 0;
    padding: 16px 28px;
}

@media (max-width: 992px) {
    .custom-modal-content {
        max-width: 100%;
        height: 100%;
        max-height: 100%;
        border-radius: 12px;
    }

    .custom-modal-header {
        padding: 14px 18px;
        min-height: 56px;
    }

    .custom-modal-title {
        font-size: 0.95rem;
    }

    .custom-modal-action-btn span {
        display: none;
    }

    .custom-modal-action-btn {
        padding: 6px 10px;
    }
}

@media (max-width: 600px) {
    .custom-fullscreen-modal {
        padding: 8px;
    }

    .custom-modal-content {
        height: 100%;
        max-height: 100%;
        border-radius: 10px;
    }

    .custom-modal-header {
        padding: 10px 14px;
        min-height: 48px;
    }

    .custom-modal-title {
        font-size: 0.85rem;
    }

    .custom-modal-logo {
        width: 26px;
        height: 26px;
    }

    .custom-modal-actions {
        gap: 4px;
    }

    .custom-modal-action-btn {
        padding: 4px 8px;
        border-radius: 6px;
    }

    .custom-modal-action-btn svg {
        width: 15px;
        height: 15px;
    }

    .custom-close-btn {
        width: 30px;
        height: 30px;
    }

    .custom-close-btn svg {
        width: 16px;
        height: 16px;
    }

    .loading-spinner {
        width: 36px;
        height: 36px;
    }

    .loading-text {
        font-size: 0.75rem;
    }
}

@media (max-width: 400px) {
    .custom-fullscreen-modal {
        padding: 4px;
    }

    .custom-modal-content {
        border-radius: 8px;
    }

    .custom-modal-header {
        padding: 8px 10px;
        min-height: 40px;
    }

    .custom-modal-title {
        font-size: 0.75rem;
    }

    .custom-modal-logo {
        width: 22px;
        height: 22px;
        border-radius: 6px;
        padding: 3px;
    }

    .custom-modal-brand {
        gap: 8px;
    }

    .custom-modal-action-btn {
        padding: 3px 6px;
    }

    .custom-modal-action-btn svg {
        width: 13px;
        height: 13px;
    }

    .custom-close-btn {
        width: 26px;
        height: 26px;
    }

    .custom-close-btn svg {
        width: 14px;
        height: 14px;
    }

    .loading-spinner {
        width: 30px;
        height: 30px;
    }

    .loading-text {
        font-size: 0.65rem;
    }
}

body.dark-mode .custom-fullscreen-modal {
    background: rgba(0, 0, 0, 0.8);
}

body.dark-mode .custom-modal-content {
    background: #16213e;
    border-color: rgba(255, 255, 255, 0.04);
}

body.dark-mode .custom-modal-header {
    background: linear-gradient(135deg, #0a0a12 0%, #16213e 100%);
    border-bottom-color: rgba(255, 255, 255, 0.04);
}

body.dark-mode .custom-modal-title {
    color: #ffffff !important;
}

body.dark-mode .custom-modal-action-btn {
    background: rgba(255, 255, 255, 0.04);
    color: #94a3b8 !important;
    border-color: rgba(255, 255, 255, 0.04);
}

body.dark-mode .custom-modal-action-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.08);
}

body.dark-mode .custom-close-btn {
    background: rgba(255, 255, 255, 0.04);
    color: #94a3b8 !important;
    border-color: rgba(255, 255, 255, 0.04);
}

body.dark-mode .custom-close-btn:hover {
    background: rgba(239, 68, 68, 0.12);
    color: #f87171 !important;
    border-color: rgba(239, 68, 68, 0.15);
}

body.dark-mode .custom-modal-body {
    background: #1a1a2e;
}

body.dark-mode #offerwallIframe {
    background: #16213e;
}

body.dark-mode .custom-iframe-loader {
    background: #16213e;
}

body.dark-mode .loading-text {
    color: #94a3b8 !important;
}

        .guide-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.5);
            backdrop-filter: blur(6px);
            z-index: 10000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px;
            animation: fadeIn 0.3s ease;
        }
        .guide-modal-box {
            background: var(--white);
            border-radius: var(--radius);
            max-width: 520px;
            width: 100%;
            box-shadow: var(--shadow-lg);
            overflow: hidden;
            animation: slideUp 0.3s ease;
        }
        .guide-modal-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 18px 24px;
            border-bottom: 1px solid var(--border-color);
        }
        .guide-modal-header h3 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--dark);
        }
        .guide-modal-header .guide-modal-close {
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--gray);
            cursor: pointer;
            transition: var(--transition);
            padding: 0 4px;
        }
        .guide-modal-header .guide-modal-close:hover {
            color: var(--dark);
            transform: rotate(90deg);
        }
        .guide-modal-body {
            padding: 24px;
            min-height: 200px;
        }
        .guide-modal-body .guide-content {
            text-align: center;
        }
        .guide-modal-body .guide-content .guide-step-number {
            display: inline-block;
            background: var(--primary-light);
            color: var(--primary);
            font-size: 0.75rem;
            font-weight: 700;
            padding: 4px 14px;
            border-radius: 50px;
            margin-bottom: 12px;
        }
        .guide-modal-body .guide-content h4 {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        .guide-modal-body .guide-content h4 i {
            color: var(--primary);
            font-size: 1.2rem;
        }
        .guide-modal-body .guide-content p {
            font-size: 0.95rem;
            color: var(--gray);
            line-height: 1.7;
        }
        .guide-modal-footer {
            padding: 14px 24px;
            border-top: 1px solid var(--border-color);
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 10px;
        }
        .guide-modal-footer .guide-nav {
            display: flex;
            gap: 10px;
        }
        .guide-modal-footer .guide-nav button {
            padding: 8px 20px;
            border-radius: var(--radius-sm);
            font-weight: 600;
            font-size: 0.85rem;
            cursor: pointer;
            transition: var(--transition);
            font-family: 'Inter', sans-serif;
            border: 1px solid var(--border-color);
            background: var(--white);
            color: var(--gray);
        }
        .guide-modal-footer .guide-nav button:hover {
            border-color: var(--primary);
            color: var(--primary);
        }
        .guide-modal-footer .guide-nav button.guide-primary {
            background: var(--primary);
            color: var(--white);
            border-color: var(--primary);
        }
        .guide-modal-footer .guide-nav button.guide-primary:hover {
            background: var(--primary-dark);
            border-color: var(--primary-dark);
        }
        .guide-modal-footer .guide-nav button:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }
        .guide-modal-footer .guide-skip {
            background: transparent;
            border: none;
            color: var(--gray);
            font-size: 0.85rem;
            cursor: pointer;
            transition: var(--transition);
            font-family: 'Inter', sans-serif;
            font-weight: 500;
        }
        .guide-modal-footer .guide-skip:hover {
            color: var(--primary);
        }

        body.dark-mode .guide-modal-box {
            background: #16213e;
            border-color: #2d3748;
        }
        body.dark-mode .guide-modal-header {
            border-color: #2d3748;
        }
        body.dark-mode .guide-modal-header h3 {
            color: #ffffff !important;
        }
        body.dark-mode .guide-modal-body .guide-content h4 {
            color: #ffffff !important;
        }
        body.dark-mode .guide-modal-body .guide-content h4 i {
            color: var(--primary) !important;
        }
        body.dark-mode .guide-modal-body .guide-content p {
            color: #94a3b8 !important;
        }
        body.dark-mode .guide-modal-footer {
            border-color: #2d3748;
        }
        body.dark-mode .guide-modal-footer .guide-nav button {
            background: #1e2a4a;
            border-color: #2d3748;
            color: #94a3b8 !important;
        }
        body.dark-mode .guide-modal-footer .guide-nav button:hover {
            border-color: var(--primary);
            color: var(--primary) !important;
        }
        body.dark-mode .guide-modal-footer .guide-nav button.guide-primary {
            background: var(--primary);
            color: #ffffff !important;
            border-color: var(--primary);
        }
        body.dark-mode .guide-modal-footer .guide-skip {
            color: #94a3b8 !important;
        }
        body.dark-mode .guide-modal-footer .guide-skip:hover {
            color: var(--primary) !important;
        }

        .streak-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 16px;
            margin-bottom: 20px;
            padding: 18px 24px;
            background: var(--white);
            border-radius: 14px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
            border: 1px solid var(--border-color);
        }
        
        .streak-header-left {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }
        
        .streak-title-group {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .streak-icon {
            font-size: 1.2rem;
            line-height: 1;
        }
        
        .streak-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--dark);
            margin: 0;
            letter-spacing: -0.3px;
        }
        
        .streak-subtitle {
            font-size: 0.8rem;
            color: var(--gray);
            margin: 0;
            font-weight: 400;
        }
        
        .streak-stats {
            display: flex;
            gap: 28px;
            flex-shrink: 0;
        }
        
        .streak-stat {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .streak-stat-number {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--dark);
            line-height: 1.2;
        }
        
        .streak-stat-label {
            font-size: 0.6rem;
            color: var(--gray);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.4px;
        }
        
        .streak-counter-section {
            background: var(--white);
            border-radius: 14px;
            padding: 20px 24px 18px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
            border: 1px solid var(--border-color);
            margin-bottom: 20px;
            text-align: center;
        }
        
        .streak-counter {
            display: flex;
            align-items: baseline;
            justify-content: center;
            gap: 10px;
            margin-bottom: 14px;
        }
        
        .streak-counter-number {
            font-size: 2.4rem;
            font-weight: 700;
            color: var(--primary);
            letter-spacing: -0.5px;
            line-height: 1;
        }
        
        .streak-counter-label {
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--gray);
        }
        
        .streak-progress-wrapper {
            max-width: 480px;
            margin: 0 auto;
        }
        
        .streak-progress-bar {
            height: 6px;
            background: var(--light-gray);
            border-radius: 4px;
            overflow: hidden;
            border: 1px solid var(--border-color);
        }
        
        .streak-progress-fill {
            height: 100%;
            background: var(--primary);
            border-radius: 4px;
            transition: width 0.8s ease;
        }
        
        .streak-progress-info {
            display: flex;
            justify-content: space-between;
            font-size: 0.75rem;
            color: var(--gray);
            margin-top: 8px;
        }
        
        .streak-progress-info span:last-child {
            font-weight: 600;
            color: var(--dark);
        }
        
        .streak-reset-note {
            font-size: 0.7rem;
            color: var(--gray);
            margin: 10px 0 0 0;
            font-weight: 400;
        }
        
        .streak-timeline-section {
            background: var(--white);
            border-radius: 14px;
            padding: 18px 22px 20px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
            border: 1px solid var(--border-color);
            margin-bottom: 20px;
        }
        
        .streak-timeline-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 14px;
        }
        
        .streak-timeline-title {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--dark);
            margin: 0;
        }
        
        .streak-timeline-badge {
            font-size: 0.6rem;
            font-weight: 500;
            color: var(--gray);
            background: var(--light-gray);
            padding: 2px 12px;
            border-radius: 20px;
            border: 1px solid var(--border-color);
        }
        
        .streak-timeline {
            display: flex;
            gap: 4px;
            align-items: stretch;
        }
        
        .streak-timeline-item {
            flex: 1;
            min-width: 36px;
            padding: 10px 4px 8px;
            border-radius: 8px;
            background: var(--light-gray);
            border: 1px solid var(--border-color);
            text-align: center;
            transition: all 0.25s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1px;
            position: relative;
            cursor: default;
        }
        
        .streak-timeline-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
        }
        
        .streak-timeline-item .tl-day {
            font-size: 0.55rem;
            font-weight: 500;
            color: var(--gray);
            text-transform: uppercase;
            letter-spacing: 0.3px;
        }
        
        .streak-timeline-item .tl-reward {
            font-size: 0.7rem;
            font-weight: 600;
            color: var(--dark);
        }
        
        .streak-timeline-item .tl-status {
            font-size: 0.5rem;
            font-weight: 500;
            margin-top: 1px;
        }
        
        .streak-timeline-item.completed {
            background: rgba(16, 185, 129, 0.06);
            border-color: rgba(16, 185, 129, 0.25);
        }
        
        .streak-timeline-item.completed .tl-status {
            color: #10b981;
        }
        
        .streak-timeline-item.today {
            background: rgba(43, 92, 171, 0.04);
            border-color: var(--primary);
            box-shadow: 0 0 0 2px rgba(43, 92, 171, 0.1);
        }
        
        .streak-timeline-item.today .tl-status {
            color: var(--primary);
            font-weight: 600;
        }
        
        .streak-timeline-item.mystery {
            border-color: #d4a843;
            background: rgba(212, 168, 67, 0.04);
        }
        
        .streak-timeline-item.mystery .tl-reward {
            color: #d4a843;
        }
        
        .streak-timeline-item.upcoming {
            opacity: 0.4;
        }
        
        .streak-timeline-item.upcoming .tl-status {
            color: var(--gray);
        }
        
        .streak-milestones-section {
            background: var(--white);
            border-radius: 14px;
            padding: 18px 22px 20px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
            border: 1px solid var(--border-color);
            margin-bottom: 20px;
        }
        
        .streak-milestones-title {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--dark);
            margin: 0 0 14px 0;
        }
        
        .streak-milestones {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        
        .streak-milestone {
            flex: 1;
            min-width: 110px;
            padding: 14px 16px;
            border-radius: 10px;
            background: var(--light-gray);
            border: 1px solid var(--border-color);
            transition: all 0.25s ease;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .streak-milestone:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
        }
        
        .streak-milestone .ms-icon {
            font-size: 1.3rem;
            flex-shrink: 0;
        }
        
        .streak-milestone .ms-info {
            flex: 1;
        }
        
        .streak-milestone .ms-label {
            font-size: 0.7rem;
            font-weight: 600;
            color: var(--dark);
        }
        
        .streak-milestone .ms-reward {
            font-size: 0.6rem;
            color: var(--gray);
        }
        
        .streak-milestone .ms-progress {
            font-size: 0.55rem;
            color: var(--gray);
            display: block;
            margin-top: 2px;
        }
        
        .streak-milestone.achieved {
            border-color: #10b981;
            background: rgba(16, 185, 129, 0.04);
        }
        
        .streak-milestone.achieved .ms-progress {
            color: #10b981;
            font-weight: 600;
        }
        
        .streak-milestone.unlocked {
            border-color: var(--primary);
            background: rgba(43, 92, 171, 0.04);
        }
        
        .streak-milestone.unlocked .ms-progress {
            color: var(--primary);
        }
        
        .streak-milestone.locked {
            opacity: 0.5;
        }
        
        .streak-claim-wrapper {
            padding: 4px 0 6px;
        }
        
        .streak-claim-btn {
            display: inline-block;
            padding: 10px 36px;
            background: var(--primary);
            color: var(--white);
            border: none;
            border-radius: 8px;
            font-size: 0.9rem;
            font-weight: 600;
            font-family: 'Inter', sans-serif;
            cursor: pointer;
            transition: all 0.25s ease;
            letter-spacing: 0.2px;
            width: 100%;
            text-align: center;
        }
        
        .streak-claim-btn:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 4px 16px rgba(43, 92, 171, 0.15);
        }
        
        .streak-claim-btn:active {
            transform: scale(0.97);
        }
        
        .streak-claim-btn:disabled {
            opacity: 0.4;
            cursor: not-allowed;
            transform: none !important;
            box-shadow: none !important;
        }
        
        .streak-claim-btn.pulse {
            animation: claimPulse 2s ease-in-out infinite;
        }
        
        @keyframes claimPulse {
            0%, 100% {
                box-shadow: 0 0 0 0 rgba(43, 92, 171, 0.15);
            }
            50% {
                box-shadow: 0 0 0 6px rgba(43, 92, 171, 0);
            }
        }
        
        .streak-countdown {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-top: 10px;
        }
        
        .countdown-label {
            font-size: 0.7rem;
            color: var(--gray);
            font-weight: 400;
        }
        
        .countdown-pill {
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--dark);
            background: var(--light-gray);
            padding: 4px 14px;
            border-radius: 50px;
            border: 1px solid var(--border-color);
            font-family: 'Inter', monospace;
        }
        
        @media (max-width: 992px) {
            .streak-header {
                flex-direction: column;
                align-items: flex-start;
                padding: 16px 20px;
            }
        
            .streak-title {
                font-size: 1.2rem;
            }
        
            .streak-stats {
                width: 100%;
                justify-content: space-around;
                gap: 12px;
            }
        
            .streak-timeline {
                gap: 3px;
            }
        
            .streak-timeline-item {
                min-width: 32px;
                padding: 8px 3px 6px;
            }
        
            .streak-claim-btn {
                padding: 10px 24px;
            }
        }
        
        @media (max-width: 600px) {
            .streak-header {
                padding: 14px 16px;
                border-radius: 12px;
            }
        
            .streak-title {
                font-size: 1rem;
            }
        
            .streak-subtitle {
                font-size: 0.7rem;
            }
        
            .streak-stat-number {
                font-size: 1rem;
            }
        
            .streak-counter-section {
                padding: 16px 14px 14px;
                border-radius: 12px;
            }
        
            .streak-counter-number {
                font-size: 2rem;
            }
        
            .streak-counter-label {
                font-size: 0.75rem;
            }
        
            .streak-progress-info {
                font-size: 0.7rem;
                flex-direction: column;
                align-items: center;
                gap: 2px;
            }
        
            .streak-reset-note {
                font-size: 0.65rem;
            }
        
            .streak-timeline-section {
                padding: 14px 14px 16px;
                border-radius: 12px;
            }
        
            .streak-timeline-title {
                font-size: 0.8rem;
            }
        
            .streak-timeline {
                gap: 3px;
                flex-wrap: nowrap;
                overflow-x: auto;
                padding-bottom: 4px;
            }
        
            .streak-timeline-item {
                min-width: 40px;
                padding: 8px 3px 6px;
                flex-shrink: 0;
            }
        
            .streak-timeline-item .tl-day {
                font-size: 0.45rem;
            }
        
            .streak-timeline-item .tl-reward {
                font-size: 0.6rem;
            }
        
            .streak-timeline-item .tl-status {
                font-size: 0.45rem;
            }
        
            .streak-milestones-section {
                padding: 14px 14px 16px;
                border-radius: 12px;
            }
        
            .streak-milestones-title {
                font-size: 0.8rem;
            }
        
            .streak-milestones {
                flex-direction: column;
                gap: 6px;
            }
        
            .streak-milestone {
                min-width: auto;
                padding: 10px 14px;
            }
        
            .streak-milestone .ms-icon {
                font-size: 1.1rem;
            }
        
            .streak-claim-btn {
                padding: 8px 20px;
                font-size: 0.8rem;
            }
        
            .countdown-label {
                font-size: 0.65rem;
            }
        
            .countdown-pill {
                font-size: 0.65rem;
                padding: 3px 12px;
            }
        }
        
        @media (max-width: 400px) {
            .streak-counter-number {
                font-size: 1.6rem;
            }
        
            .streak-timeline-item {
                min-width: 34px;
                padding: 6px 2px 4px;
            }
        
            .streak-timeline-item .tl-day {
                font-size: 0.4rem;
            }
        
            .streak-timeline-item .tl-reward {
                font-size: 0.5rem;
            }
        
            .streak-timeline-item .tl-status {
                font-size: 0.4rem;
            }
        
            .streak-stats {
                gap: 10px;
            }
        
            .streak-stat-number {
                font-size: 0.85rem;
            }
        
            .streak-stat-label {
                font-size: 0.5rem;
            }
        
            .streak-claim-btn {
                font-size: 0.75rem;
                padding: 8px 16px;
            }
        
            .streak-timeline-badge {
                font-size: 0.5rem;
                padding: 1px 10px;
            }
        }
        
        body.dark-mode .streak-header {
            background: #16213e;
            border-color: rgba(255, 255, 255, 0.04);
        }
        
        body.dark-mode .streak-title {
            color: #ffffff !important;
        }
        
        body.dark-mode .streak-subtitle {
            color: #94a3b8 !important;
        }
        
        body.dark-mode .streak-stat-number {
            color: #ffffff !important;
        }
        
        body.dark-mode .streak-stat-label {
            color: #94a3b8 !important;
        }
        
        body.dark-mode .streak-counter-section {
            background: #16213e;
            border-color: rgba(255, 255, 255, 0.04);
        }
        
        body.dark-mode .streak-counter-number {
            color: var(--primary) !important;
        }
        
        body.dark-mode .streak-counter-label {
            color: #94a3b8 !important;
        }
        
        body.dark-mode .streak-progress-bar {
            background: #1a1a2e;
            border-color: #2d3748;
        }
        
        body.dark-mode .streak-progress-info span:last-child {
            color: #ffffff !important;
        }
        
        body.dark-mode .streak-reset-note {
            color: #94a3b8 !important;
        }
        
        body.dark-mode .streak-timeline-section {
            background: #16213e;
            border-color: rgba(255, 255, 255, 0.04);
        }
        
        body.dark-mode .streak-timeline-title {
            color: #ffffff !important;
        }
        
        body.dark-mode .streak-timeline-badge {
            color: #94a3b8 !important;
            background: #1a1a2e;
            border-color: #2d3748;
        }
        
        body.dark-mode .streak-timeline-item {
            background: #1a1a2e;
            border-color: #2d3748;
        }
        
        body.dark-mode .streak-timeline-item .tl-day {
            color: #94a3b8;
        }
        
        body.dark-mode .streak-timeline-item .tl-reward {
            color: #ffffff !important;
        }
        
        body.dark-mode .streak-timeline-item.completed {
            background: rgba(16, 185, 129, 0.06);
            border-color: rgba(16, 185, 129, 0.2);
        }
        
        body.dark-mode .streak-timeline-item.today {
            background: rgba(43, 92, 171, 0.08);
            border-color: var(--primary);
        }
        
        body.dark-mode .streak-timeline-item.mystery {
            border-color: rgba(212, 168, 67, 0.3);
            background: rgba(212, 168, 67, 0.04);
        }
        
        body.dark-mode .streak-timeline-item.mystery .tl-reward {
            color: #d4a843 !important;
        }
        
        body.dark-mode .streak-milestones-section {
            background: #16213e;
            border-color: rgba(255, 255, 255, 0.04);
        }
        
        body.dark-mode .streak-milestones-title {
            color: #ffffff !important;
        }
        
        body.dark-mode .streak-milestone {
            background: #1a1a2e;
            border-color: #2d3748;
        }
        
        body.dark-mode .streak-milestone .ms-label {
            color: #ffffff !important;
        }
        
        body.dark-mode .streak-milestone .ms-reward {
            color: #94a3b8 !important;
        }
        
        body.dark-mode .streak-milestone .ms-progress {
            color: #94a3b8 !important;
        }
        
        body.dark-mode .streak-milestone.achieved {
            border-color: rgba(16, 185, 129, 0.3);
            background: rgba(16, 185, 129, 0.04);
        }
        
        body.dark-mode .streak-milestone.achieved .ms-progress {
            color: #34d399 !important;
        }
        
        body.dark-mode .streak-milestone.unlocked {
            border-color: var(--primary);
            background: rgba(43, 92, 171, 0.06);
        }
        
        body.dark-mode .streak-milestone.unlocked .ms-progress {
            color: var(--primary) !important;
        }
        
        body.dark-mode .streak-countdown .countdown-label {
            color: #94a3b8 !important;
        }
        
        body.dark-mode .streak-countdown .countdown-pill {
            color: #ffffff !important;
            background: #1a1a2e;
            border-color: #2d3748;
        }
        
        .referral-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 16px;
            margin-bottom: 20px;
            padding: 18px 24px;
            background: var(--white);
            border-radius: 14px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
            border: 1px solid var(--border-color);
        }
        
        .referral-header-left {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }
        
        .referral-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--dark);
            display: flex;
            align-items: center;
            gap: 10px;
            margin: 0;
            letter-spacing: -0.3px;
        }
        
        .referral-subtitle {
            font-size: 0.8rem;
            color: var(--gray);
            margin: 0;
            font-weight: 400;
        }
        
        .referral-stats {
            display: flex;
            gap: 28px;
            flex-shrink: 0;
        }
        
        .referral-stat {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .referral-stat-number {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--dark);
            line-height: 1.2;
        }
        
        .referral-stat-label {
            font-size: 0.6rem;
            color: var(--gray);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.4px;
        }
        
        .referral-link-section {
            background: var(--white);
            border-radius: 14px;
            padding: 18px 22px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
            border: 1px solid var(--border-color);
            margin-bottom: 20px;
        }
        
        .referral-link-wrapper {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        
        .referral-link-label {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--dark);
        }
        
        .referral-link-label i {
            color: var(--primary);
        }
        
        .referral-link-input-group {
            display: flex;
            gap: 10px;
        }
        
        .referral-link-input {
            flex: 1;
            padding: 10px 14px;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            font-size: 0.85rem;
            font-family: 'Inter', sans-serif;
            background: var(--light-gray);
            color: var(--dark);
            outline: none;
            transition: var(--transition);
        }
        
        .referral-link-input:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(43, 92, 171, 0.06);
        }
        
        .referral-link-copy {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 10px 20px;
            background: var(--primary);
            color: var(--white);
            border: none;
            border-radius: 8px;
            font-size: 0.8rem;
            font-weight: 600;
            font-family: 'Inter', sans-serif;
            cursor: pointer;
            transition: var(--transition);
            white-space: nowrap;
        }
        
        .referral-link-copy:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(43, 92, 171, 0.15);
        }
        
        .referral-link-copy:active {
            transform: scale(0.96);
        }
        
        .referral-link-copy.copied {
            background: #10b981;
        }
        
        .referral-link-note {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 0.75rem;
            color: var(--gray);
        }
        
        .referral-link-note i {
            color: var(--primary);
        }
        
        .referral-link-note strong {
            color: var(--primary);
        }
        
        .referral-table-section {
            background: var(--white);
            border-radius: 14px;
            padding: 18px 22px 20px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
            border: 1px solid var(--border-color);
            margin-bottom: 20px;
        }
        
        .referral-table-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
            padding-bottom: 14px;
            border-bottom: 1px solid var(--border-color);
            margin-bottom: 16px;
        }
        
        .referral-table-title {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--dark);
            display: flex;
            align-items: center;
            gap: 8px;
            margin: 0;
        }
        
        .referral-table-actions {
            display: flex;
            align-items: center;
            gap: 14px;
        }
        
        .referral-select-all {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 0.75rem;
            font-weight: 500;
            color: var(--gray);
            cursor: pointer;
        }
        
        .referral-select-all input[type="checkbox"] {
            width: 16px;
            height: 16px;
            accent-color: var(--primary);
            cursor: pointer;
        }
        
        .referral-table-count {
            font-size: 0.7rem;
            color: var(--gray);
            background: var(--light-gray);
            padding: 2px 12px;
            border-radius: 20px;
            border: 1px solid var(--border-color);
        }
        
        .referral-table-wrapper {
            overflow-x: auto;
        }
        
        .referral-table-container {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }
        
        .referral-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.85rem;
            min-width: 600px;
        }
        
        .referral-table thead th {
            text-align: left;
            padding: 10px 12px;
            font-weight: 600;
            font-size: 0.65rem;
            text-transform: uppercase;
            letter-spacing: 0.4px;
            color: var(--gray);
            border-bottom: 2px solid var(--border-color);
            white-space: nowrap;
        }
        
        .referral-table thead th a {
            color: var(--gray);
            text-decoration: none;
            transition: var(--transition);
        }
        
        .referral-table thead th a:hover {
            color: var(--primary);
        }
        
        .referral-table tbody td {
            padding: 10px 12px;
            border-bottom: 1px solid var(--border-color);
            vertical-align: middle;
        }
        
        .referral-table tbody tr:hover {
            background: var(--primary-light);
            transition: var(--transition);
        }
        
        .referral-table tbody tr:last-child td {
            border-bottom: none;
        }
        
        .referral-username {
            min-width: 150px;
        }
        
        .referral-user-info {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .referral-avatar {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            overflow: hidden;
            flex-shrink: 0;
            border: 2px solid var(--border-color);
        }
        
        .referral-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .referral-avatar-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--primary);
            color: var(--white);
            font-size: 0.7rem;
            font-weight: 600;
        }
        
        .referral-name {
            font-weight: 500;
            color: var(--dark);
        }
        
        .referral-badge {
            font-size: 0.55rem;
            font-weight: 600;
            padding: 2px 10px;
            border-radius: 20px;
            text-transform: uppercase;
            letter-spacing: 0.3px;
        }
        
        .referral-badge.active {
            background: rgba(16, 185, 129, 0.1);
            color: #10b981;
        }
        
        .referral-badge.inactive {
            background: rgba(239, 68, 68, 0.08);
            color: #ef4444;
        }
        
        .referral-country {
            min-width: 80px;
            font-size: 0.8rem;
            color: var(--dark);
        }
        
        .referral-flag {
            margin-right: 4px;
        }
        
        .referral-date {
            min-width: 100px;
        }
        
        .referral-date-main {
            display: block;
            font-size: 0.75rem;
            font-weight: 500;
            color: var(--dark);
        }
        
        .referral-date-time {
            display: block;
            font-size: 0.6rem;
            color: var(--gray);
        }
        
        .referral-clicks {
            text-align: center;
        }
        
        .referral-clicks-badge {
            display: inline-block;
            padding: 2px 12px;
            background: var(--light-gray);
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--dark);
            border: 1px solid var(--border-color);
        }
        
        .referral-earned {
            font-weight: 600;
            color: #10b981;
        }
        
        .referral-earned-amount {
            font-weight: 600;
            color: #10b981;
        }
        
        .referral-source {
            min-width: 80px;
        }
        
        .referral-source-badge {
            display: inline-block;
            padding: 2px 10px;
            background: var(--primary-light);
            color: var(--primary);
            border-radius: 20px;
            font-size: 0.65rem;
            font-weight: 500;
        }
        
        .referral-unknown {
            color: var(--gray);
            font-size: 0.75rem;
        }
        
        .referral-table-check {
            text-align: center;
            width: 40px;
        }
        
        .referral-table-check input[type="checkbox"] {
            width: 16px;
            height: 16px;
            accent-color: var(--primary);
            cursor: pointer;
        }
        
        .referral-empty td {
            padding: 40px 20px !important;
        }
        
        .referral-empty-state {
            text-align: center;
            padding: 20px;
        }
        
        .referral-empty-state i {
            font-size: 2.4rem;
            color: var(--border-color);
            margin-bottom: 10px;
            display: block;
        }
        
        .referral-empty-state h3 {
            font-size: 1rem;
            font-weight: 600;
            color: var(--dark);
            margin: 0 0 4px 0;
        }
        
        .referral-empty-state p {
            font-size: 0.8rem;
            color: var(--gray);
            margin: 0;
        }
        
        .referral-pagination-wrapper {
            display: flex;
            justify-content: center;
            padding-top: 16px;
            border-top: 1px solid var(--border-color);
            margin-top: 16px;
        }
        
        .referral-pagination-wrapper .pagination {
            display: flex;
            gap: 4px;
            align-items: center;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .referral-pagination-wrapper .pagination .page-item {
            display: inline-block;
        }
        
        .referral-pagination-wrapper .pagination .page-link {
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 32px;
            height: 32px;
            padding: 0 10px;
            border-radius: 6px;
            background: var(--white);
            color: var(--gray);
            font-size: 0.75rem;
            font-weight: 500;
            text-decoration: none;
            border: 1px solid var(--border-color);
            transition: var(--transition);
        }
        
        .referral-pagination-wrapper .pagination .page-link:hover {
            background: var(--primary-light);
            border-color: var(--primary);
            color: var(--primary);
        }
        
        .referral-pagination-wrapper .pagination .page-item.active .page-link {
            background: var(--primary);
            border-color: var(--primary);
            color: var(--white);
        }
        
        .referral-pagination-wrapper .pagination .page-item.disabled .page-link {
            opacity: 0.4;
            cursor: not-allowed;
            pointer-events: none;
        }
        
        .referral-bulk-actions {
            display: flex;
            align-items: center;
            gap: 12px;
            padding-top: 14px;
            border-top: 1px solid var(--border-color);
            margin-top: 14px;
        }
        
        .referral-bulk-label {
            font-size: 0.75rem;
            font-weight: 500;
            color: var(--gray);
        }
        
        .referral-bulk-btn {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 6px 16px;
            border: none;
            border-radius: 6px;
            font-size: 0.75rem;
            font-weight: 600;
            font-family: 'Inter', sans-serif;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .referral-bulk-btn.delete {
            background: rgba(239, 68, 68, 0.08);
            color: #ef4444;
        }
        
        .referral-bulk-btn.delete:hover {
            background: #ef4444;
            color: var(--white);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(239, 68, 68, 0.2);
        }
        
        @media (max-width: 992px) {
            .referral-header {
                flex-direction: column;
                align-items: flex-start;
                padding: 16px 20px;
            }
        
            .referral-title {
                font-size: 1.2rem;
            }
        
            .referral-stats {
                width: 100%;
                justify-content: space-around;
                gap: 12px;
            }
        
            .referral-table-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }
        
            .referral-table-actions {
                width: 100%;
                justify-content: space-between;
            }
        }
        
        @media (max-width: 600px) {
            .referral-header {
                padding: 14px 16px;
                border-radius: 12px;
            }
        
            .referral-title {
                font-size: 1rem;
            }
        
            .referral-subtitle {
                font-size: 0.7rem;
            }
        
            .referral-stat-number {
                font-size: 1rem;
            }
        
            .referral-link-section {
                padding: 14px 16px;
                border-radius: 12px;
            }
        
            .referral-link-input-group {
                flex-direction: column;
            }
        
            .referral-link-copy {
                justify-content: center;
            }
        
            .referral-link-input {
                font-size: 0.75rem;
                padding: 8px 12px;
            }
        
            .referral-table-section {
                padding: 14px 14px 16px;
                border-radius: 12px;
            }
        
            .referral-table {
                font-size: 0.75rem;
                min-width: 480px;
            }
        
            .referral-table thead th {
                padding: 8px 10px;
                font-size: 0.6rem;
            }
        
            .referral-table tbody td {
                padding: 8px 10px;
            }
        
            .referral-avatar {
                width: 26px;
                height: 26px;
            }
        
            .referral-name {
                font-size: 0.75rem;
            }
        
            .referral-badge {
                font-size: 0.5rem;
                padding: 1px 8px;
            }
        
            .referral-date-main {
                font-size: 0.7rem;
            }
        
            .referral-date-time {
                font-size: 0.55rem;
            }
        
            .referral-clicks-badge {
                font-size: 0.65rem;
                padding: 1px 10px;
            }
        
            .referral-earned-amount {
                font-size: 0.75rem;
            }
        
            .referral-source-badge {
                font-size: 0.55rem;
                padding: 1px 8px;
            }
        
            .referral-stat-label {
                font-size: 0.55rem;
            }
        
            .referral-table-count {
                font-size: 0.6rem;
                padding: 1px 10px;
            }
        
            .referral-bulk-actions {
                flex-wrap: wrap;
            }
        
            .referral-bulk-btn {
                font-size: 0.7rem;
                padding: 4px 12px;
            }
        
            .referral-pagination-wrapper .pagination .page-link {
                min-width: 28px;
                height: 28px;
                font-size: 0.65rem;
                padding: 0 8px;
            }
        }
        
        @media (max-width: 400px) {
            .referral-table {
                min-width: 400px;
                font-size: 0.65rem;
            }
        
            .referral-table thead th {
                padding: 6px 6px;
                font-size: 0.5rem;
            }
        
            .referral-table tbody td {
                padding: 6px 6px;
            }
        
            .referral-avatar {
                width: 22px;
                height: 22px;
            }
        
            .referral-name {
                font-size: 0.65rem;
            }
        
            .referral-date-main {
                font-size: 0.6rem;
            }
        
            .referral-date-time {
                font-size: 0.5rem;
            }
        
            .referral-stats {
                gap: 8px;
            }
        
            .referral-stat-number {
                font-size: 0.85rem;
            }
        
            .referral-stat-label {
                font-size: 0.5rem;
            }
        
            .referral-flag {
                font-size: 0.7rem;
            }
        }
        
        body.dark-mode .referral-header {
            background: #16213e;
            border-color: rgba(255, 255, 255, 0.04);
        }
        
        body.dark-mode .referral-title {
            color: #ffffff !important;
        }
        
        body.dark-mode .referral-subtitle {
            color: #94a3b8 !important;
        }
        
        body.dark-mode .referral-stat-number {
            color: #ffffff !important;
        }
        
        body.dark-mode .referral-stat-label {
            color: #94a3b8 !important;
        }
        
        body.dark-mode .referral-link-section {
            background: #16213e;
            border-color: rgba(255, 255, 255, 0.04);
        }
        
        body.dark-mode .referral-link-label {
            color: #ffffff !important;
        }
        
        body.dark-mode .referral-link-input {
            background: #1a1a2e;
            border-color: #2d3748;
            color: #ffffff !important;
        }
        
        body.dark-mode .referral-link-input::placeholder {
            color: #94a3b8;
        }
        
        body.dark-mode .referral-link-note {
            color: #94a3b8 !important;
        }
        
        body.dark-mode .referral-table-section {
            background: #16213e;
            border-color: rgba(255, 255, 255, 0.04);
        }
        
        body.dark-mode .referral-table-header {
            border-bottom-color: #2d3748;
        }
        
        body.dark-mode .referral-table-title {
            color: #ffffff !important;
        }
        
        body.dark-mode .referral-table-count {
            color: #94a3b8 !important;
            background: #1a1a2e;
            border-color: #2d3748;
        }
        
        body.dark-mode .referral-table thead th {
            color: #94a3b8 !important;
            border-bottom-color: #2d3748;
        }
        
        body.dark-mode .referral-table thead th a {
            color: #94a3b8 !important;
        }
        
        body.dark-mode .referral-table thead th a:hover {
            color: var(--primary) !important;
        }
        
        body.dark-mode .referral-table tbody td {
            border-bottom-color: #2d3748;
        }
        
        body.dark-mode .referral-table tbody tr:hover {
            background: #1e2a4a;
        }
        
        body.dark-mode .referral-name {
            color: #ffffff !important;
        }
        
        body.dark-mode .referral-date-main {
            color: #ffffff !important;
        }
        
        body.dark-mode .referral-date-time {
            color: #94a3b8 !important;
        }
        
        body.dark-mode .referral-clicks-badge {
            color: #94a3b8 !important;
            background: #1a1a2e;
            border-color: #2d3748;
        }
        
        body.dark-mode .referral-earned-amount {
            color: #34d399 !important;
        }
        
        body.dark-mode .referral-source-badge {
            background: #1e2a4a;
            color: var(--primary) !important;
        }
        
        body.dark-mode .referral-unknown {
            color: #94a3b8 !important;
        }
        
        body.dark-mode .referral-select-all {
            color: #94a3b8 !important;
        }
        
        body.dark-mode .referral-pagination-wrapper {
            border-top-color: #2d3748;
        }
        
        body.dark-mode .referral-pagination-wrapper .pagination .page-link {
            background: #1a1a2e;
            border-color: #2d3748;
            color: #94a3b8 !important;
        }
        
        body.dark-mode .referral-pagination-wrapper .pagination .page-link:hover {
            background: #1e2a4a;
            border-color: var(--primary);
            color: var(--primary) !important;
        }
        
        body.dark-mode .referral-pagination-wrapper .pagination .page-item.active .page-link {
            background: var(--primary);
            border-color: var(--primary);
            color: #ffffff !important;
        }
        
        body.dark-mode .referral-bulk-actions {
            border-top-color: #2d3748;
        }
        
        body.dark-mode .referral-bulk-label {
            color: #94a3b8 !important;
        }
        
        body.dark-mode .referral-empty-state h3 {
            color: #ffffff !important;
        }
        
        body.dark-mode .referral-empty-state p {
            color: #94a3b8 !important;
        }
        
        body.dark-mode .referral-empty-state i {
            color: #2d3748;
        }
        
        body.dark-mode .referral-badge.active {
            background: rgba(16, 185, 129, 0.1);
            color: #34d399 !important;
        }
        
        body.dark-mode .referral-badge.inactive {
            background: rgba(239, 68, 68, 0.08);
            color: #f87171 !important;
        }
        
        body.dark-mode .referral-select-all input[type="checkbox"] {
            accent-color: var(--primary);
        }
        
        .referral-social-share {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
            padding-top: 8px;
            border-top: 1px solid var(--border-color);
            margin-top: 8px;
        }
        
        .referral-share-label {
            font-size: 0.75rem;
            font-weight: 500;
            color: var(--gray);
        }
        
        .referral-share-buttons {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        
        .social-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            color: var(--white);
            text-decoration: none;
            transition: all 0.25s ease;
            font-size: 0.9rem;
            border: none;
            cursor: pointer;
        }
        
        .social-btn:hover {
            transform: translateY(-2px) scale(1.05);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }
        
        .social-btn:active {
            transform: scale(0.95);
        }
        
        .social-btn.email {
            background: #6B7280;
        }
        
        .social-btn.email:hover {
            background: #4B5563;
        }
        
        .social-btn.whatsapp {
            background: #25D366;
        }
        
        .social-btn.whatsapp:hover {
            background: #1DA851;
        }
        
        .social-btn.twitter {
            background: #000000;
        }
        
        .social-btn.twitter:hover {
            background: #1a1a1a;
        }
        
        .social-btn.facebook {
            background: #1877F2;
        }
        
        .social-btn.facebook:hover {
            background: #0D65D9;
        }
        
        .social-btn.telegram {
            background: #0088CC;
        }
        
        .social-btn.telegram:hover {
            background: #006699;
        }
        
        @media (max-width: 600px) {
            .referral-social-share {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }
        
            .referral-share-buttons {
                width: 100%;
                justify-content: flex-start;
            }
        
            .social-btn {
                width: 32px;
                height: 32px;
                font-size: 0.8rem;
            }
        }
        
        @media (max-width: 400px) {
            .social-btn {
                width: 28px;
                height: 28px;
                font-size: 0.7rem;
            }
        }
        
        body.dark-mode .referral-social-share {
            border-top-color: #2d3748;
        }
        
        body.dark-mode .referral-share-label {
            color: #94a3b8 !important;
        }
        
        body.dark-mode .social-btn.email {
            background: #4B5563;
        }
        
        body.dark-mode .social-btn.email:hover {
            background: #374151;
        }
        
        body.dark-mode .social-btn.whatsapp {
            background: #1DA851;
        }
        
        body.dark-mode .social-btn.whatsapp:hover {
            background: #14833d;
        }
        
        body.dark-mode .social-btn.twitter {
            background: #1a1a1a;
        }
        
        body.dark-mode .social-btn.twitter:hover {
            background: #2d2d2d;
        }
        
        body.dark-mode .social-btn.facebook {
            background: #0D65D9;
        }
        
        body.dark-mode .social-btn.facebook:hover {
            background: #0a4fa8;
        }
        
        body.dark-mode .social-btn.telegram {
            background: #006699;
        }
        
        body.dark-mode .social-btn.telegram:hover {
            background: #004d73;
        }

        .onboarding-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            z-index: 10000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px;
            animation: modalOverlayFadeIn 0.3s ease;
        }
        
        .onboarding-modal-overlay.active {
            display: flex;
        }
        
        @keyframes modalOverlayFadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }
        
        .onboarding-modal {
            background: var(--white);
            border-radius: 20px;
            max-width: 520px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            box-shadow: 0 24px 80px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.04);
            animation: modalSlideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
        }
        
        .onboarding-modal::-webkit-scrollbar {
            width: 4px;
        }
        
        .onboarding-modal::-webkit-scrollbar-thumb {
            background: var(--border-color);
            border-radius: 4px;
        }
        
        @keyframes modalSlideUp {
            from {
                opacity: 0;
                transform: translateY(30px) scale(0.95);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }
        
        .onboarding-modal-close {
            position: absolute;
            top: 16px;
            right: 18px;
            background: rgba(0, 0, 0, 0.04);
            border: none;
            border-radius: 50%;
            width: 36px;
            height: 36px;
            color: var(--gray);
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
        }
        
        .onboarding-modal-close:hover {
            background: rgba(239, 68, 68, 0.08);
            color: #ef4444;
            transform: rotate(90deg);
        }
        
        .onboarding-modal-close:active {
            transform: rotate(90deg) scale(0.9);
        }
        
        .onboarding-modal-content {
            padding: 36px 32px 32px;
            text-align: center;
        }
        
        .onboarding-modal-icon {
            font-size: 3rem;
            color: var(--accent-yellow);
            margin-bottom: 12px;
            display: block;
            animation: iconPulse 2s ease-in-out infinite;
        }
        
        @keyframes iconPulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }
        
        .onboarding-modal-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--dark);
            margin: 0 0 16px 0;
            line-height: 1.4;
        }
        
        .onboarding-modal-body {
            text-align: justify;
        }
        
        .onboarding-modal-text {
            font-size: 0.9rem;
            color: var(--gray);
            line-height: 1.8;
            margin: 0 0 12px 0;
        }
        
        .onboarding-modal-text.highlight {
            color: var(--primary);
            font-weight: 600;
            text-align: center;
            font-size: 0.95rem;
        }
        
        .onboarding-modal-buttons {
            display: flex;
            gap: 12px;
            margin-top: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .onboarding-modal-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 28px;
            border-radius: 10px;
            font-size: 0.85rem;
            font-weight: 600;
            font-family: 'Inter', sans-serif;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            flex: 1;
            justify-content: center;
            min-width: 140px;
        }
        
        .onboarding-modal-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
        }
        
        .onboarding-modal-btn:active {
            transform: scale(0.96);
        }
        
        .onboarding-modal-btn i {
            font-size: 1.1rem;
        }
        
        .onboarding-modal-btn.facebook {
            background: #1877F2;
            color: #ffffff;
        }
        
        .onboarding-modal-btn.facebook:hover {
            background: #0D65D9;
            box-shadow: 0 8px 24px rgba(24, 119, 242, 0.25);
        }
        
        .onboarding-modal-btn.whatsapp {
            background: #25D366;
            color: #ffffff;
        }
        
        .onboarding-modal-btn.whatsapp:hover {
            background: #1DA851;
            box-shadow: 0 8px 24px rgba(37, 211, 102, 0.25);
        }

        @media (max-width: 1024px) {
            .onboarding-modal {
                max-width: 460px;
            }
        
            .onboarding-modal-content {
                padding: 30px 28px 28px;
            }
        
            .onboarding-modal-title {
                font-size: 1.2rem;
            }
        
            .onboarding-modal-text {
                font-size: 0.85rem;
            }
        }
        
        @media (max-width: 768px) {
            .onboarding-modal-overlay {
                padding: 16px;
            }
        
            .onboarding-modal {
                max-width: 100%;
                border-radius: 16px;
                max-height: 95vh;
            }
        
            .onboarding-modal-content {
                padding: 28px 20px 22px;
            }
        
            .onboarding-modal-title {
                font-size: 1.1rem;
            }
        
            .onboarding-modal-text {
                font-size: 0.82rem;
                line-height: 1.7;
            }
        
            .onboarding-modal-text.highlight {
                font-size: 0.88rem;
            }
        
            .onboarding-modal-icon {
                font-size: 2.6rem;
            }
        
            .onboarding-modal-buttons {
                flex-direction: column;
                gap: 8px;
            }
        
            .onboarding-modal-btn {
                padding: 10px 20px;
                font-size: 0.8rem;
                min-width: auto;
            }
        
            .onboarding-modal-close {
                top: 12px;
                right: 14px;
                width: 32px;
                height: 32px;
                font-size: 0.9rem;
            }
        }

        @media (max-width: 480px) {
            .onboarding-modal-overlay {
                padding: 12px;
            }
        
            .onboarding-modal {
                border-radius: 14px;
                max-height: 98vh;
            }
        
            .onboarding-modal-content {
                padding: 22px 16px 18px;
            }
        
            .onboarding-modal-title {
                font-size: 1rem;
                margin-bottom: 10px;
            }
        
            .onboarding-modal-text {
                font-size: 0.75rem;
                line-height: 1.6;
                margin-bottom: 8px;
            }
        
            .onboarding-modal-text.highlight {
                font-size: 0.8rem;
            }
        
            .onboarding-modal-icon {
                font-size: 2.2rem;
                margin-bottom: 8px;
            }
        
            .onboarding-modal-btn {
                padding: 8px 16px;
                font-size: 0.7rem;
                gap: 6px;
            }
        
            .onboarding-modal-btn i {
                font-size: 0.85rem;
            }
        
            .onboarding-modal-close {
                top: 10px;
                right: 12px;
                width: 28px;
                height: 28px;
                font-size: 0.8rem;
            }
        
            .onboarding-modal-buttons {
                gap: 6px;
                margin-top: 14px;
            }
        }

        @media (max-width: 360px) {
            .onboarding-modal-overlay {
                padding: 8px;
            }
        
            .onboarding-modal {
                border-radius: 12px;
            }
        
            .onboarding-modal-content {
                padding: 18px 12px 14px;
            }
        
            .onboarding-modal-title {
                font-size: 0.85rem;
            }
        
            .onboarding-modal-text {
                font-size: 0.65rem;
                line-height: 1.5;
            }
        
            .onboarding-modal-text.highlight {
                font-size: 0.7rem;
            }
        
            .onboarding-modal-icon {
                font-size: 1.8rem;
                margin-bottom: 6px;
            }
        
            .onboarding-modal-btn {
                padding: 6px 12px;
                font-size: 0.6rem;
                gap: 4px;
            }
        
            .onboarding-modal-btn i {
                font-size: 0.7rem;
            }
        
            .onboarding-modal-close {
                top: 8px;
                right: 10px;
                width: 24px;
                height: 24px;
                font-size: 0.7rem;
            }
        
            .onboarding-modal-buttons {
                gap: 4px;
                margin-top: 10px;
            }
        }
        
        body.dark-mode .onboarding-modal-overlay {
            background: rgba(0, 0, 0, 0.7);
        }
        
        body.dark-mode .onboarding-modal {
            background: #16213e;
            border-color: rgba(255, 255, 255, 0.04);
            box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
        }
        
        body.dark-mode .onboarding-modal-title {
            color: #ffffff !important;
        }
        
        body.dark-mode .onboarding-modal-text {
            color: #94a3b8 !important;
        }
        
        body.dark-mode .onboarding-modal-text.highlight {
            color: var(--primary) !important;
        }
        
        body.dark-mode .onboarding-modal-close {
            background: rgba(255, 255, 255, 0.04);
            color: #94a3b8 !important;
        }
        
        body.dark-mode .onboarding-modal-close:hover {
            background: rgba(239, 68, 68, 0.12);
            color: #f87171 !important;
        }
        
        body.dark-mode .onboarding-modal-btn.facebook {
            background: #0D65D9;
        }
        
        body.dark-mode .onboarding-modal-btn.facebook:hover {
            background: #0a4fa8;
            box-shadow: 0 8px 24px rgba(24, 119, 242, 0.15);
        }
        
        body.dark-mode .onboarding-modal-btn.whatsapp {
            background: #1DA851;
        }
        
        body.dark-mode .onboarding-modal-btn.whatsapp:hover {
            background: #14833d;
            box-shadow: 0 8px 24px rgba(37, 211, 102, 0.15);
        }        
        
        .support-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 16px;
            margin-bottom: 20px;
            padding: 18px 24px;
            background: var(--white);
            border-radius: 14px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
            border: 1px solid var(--border-color);
        }
        
        .support-header-left {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }
        
        .support-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--dark);
            display: flex;
            align-items: center;
            gap: 10px;
            margin: 0;
            letter-spacing: -0.3px;
        }
        
        .support-subtitle {
            font-size: 0.8rem;
            color: var(--gray);
            margin: 0;
            font-weight: 400;
        }
        
        .support-header-actions {
            flex-shrink: 0;
        }
        
        .support-btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 24px;
            background: var(--primary);
            color: var(--white);
            border: none;
            border-radius: 8px;
            font-size: 0.85rem;
            font-weight: 600;
            font-family: 'Inter', sans-serif;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
        }
        
        .support-btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 4px 16px rgba(43, 92, 171, 0.15);
            color: var(--white);
        }
        
        .support-btn-primary:active {
            transform: scale(0.97);
        }
        
        .support-quick-links {
            margin-bottom: 20px;
        }
        
        .support-quick-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
        }
        
        .support-quick-card {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 14px 18px;
            background: var(--white);
            border-radius: 12px;
            border: 1px solid var(--border-color);
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
            transition: var(--transition);
            text-decoration: none;
            cursor: pointer;
        }
        
        .support-quick-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
            border-color: var(--primary);
        }
        
        .support-quick-card:active {
            transform: scale(0.98);
        }
        
        .support-quick-icon {
            width: 40px;
            height: 40px;
            min-width: 40px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            background: rgba(43, 92, 171, 0.08);
            color: var(--primary);
        }
        
        .support-quick-content {
            flex: 1;
            min-width: 0;
        }
        
        .support-quick-content h4 {
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--dark);
            margin: 0;
        }
        
        .support-quick-content p {
            font-size: 0.7rem;
            color: var(--gray);
            margin: 2px 0 0 0;
        }
        
        .support-quick-arrow {
            color: var(--gray);
            font-size: 0.8rem;
            opacity: 0.4;
            transition: var(--transition);
        }
        
        .support-quick-card:hover .support-quick-arrow {
            opacity: 1;
            color: var(--primary);
            transform: translateX(3px);
        }
        
        .support-tickets-section {
            background: var(--white);
            border-radius: 14px;
            padding: 18px 22px 20px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
            border: 1px solid var(--border-color);
            margin-bottom: 20px;
        }
        
        .support-tickets-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-bottom: 14px;
            border-bottom: 1px solid var(--border-color);
            margin-bottom: 16px;
        }
        
        .support-tickets-title {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--dark);
            display: flex;
            align-items: center;
            gap: 8px;
            margin: 0;
        }
        
        .support-tickets-count {
            font-size: 0.7rem;
            color: var(--gray);
            background: var(--light-gray);
            padding: 2px 12px;
            border-radius: 20px;
            border: 1px solid var(--border-color);
        }
        
        .support-tickets-wrapper {
            overflow-x: auto;
        }
        
        .support-tickets-container {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }
        
        .support-tickets-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.85rem;
            min-width: 480px;
        }
        
        .support-tickets-table thead th {
            text-align: left;
            padding: 10px 12px;
            font-weight: 600;
            font-size: 0.65rem;
            text-transform: uppercase;
            letter-spacing: 0.4px;
            color: var(--gray);
            border-bottom: 2px solid var(--border-color);
        }
        
        .support-tickets-table tbody td {
            padding: 10px 12px;
            border-bottom: 1px solid var(--border-color);
            vertical-align: middle;
        }
        
        .support-tickets-table tbody tr:hover {
            background: var(--primary-light);
            transition: var(--transition);
        }
        
        .support-tickets-table tbody tr:last-child td {
            border-bottom: none;
        }
        
        .support-ticket-id {
            min-width: 80px;
        }
        
        .support-ticket-code {
            font-weight: 600;
            color: var(--primary);
            font-size: 0.8rem;
        }
        
        .support-ticket-link {
            text-decoration: none;
            transition: var(--transition);
            display: inline-block;
        }
        
        .support-ticket-link:hover {
            color: var(--primary-dark);
        }
        
        .support-ticket-link:hover .support-ticket-code {
            color: var(--primary-dark);
        }
        
        .support-ticket-subject {
            min-width: 140px;
        }
        
        .support-ticket-subject .support-ticket-link {
            color: var(--dark);
            font-weight: 500;
            font-size: 0.85rem;
        }
        
        .support-ticket-subject .support-ticket-link:hover {
            color: var(--primary);
        }
        
        .support-ticket-date {
            min-width: 100px;
        }
        
        .support-date-main {
            display: block;
            font-size: 0.75rem;
            font-weight: 500;
            color: var(--dark);
        }
        
        .support-date-time {
            display: block;
            font-size: 0.6rem;
            color: var(--gray);
        }
        
        .support-ticket-status {
            min-width: 110px;
        }
        
        .support-status-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 4px 14px;
            border-radius: 50px;
            font-size: 0.7rem;
            font-weight: 600;
        }
        
        .support-status-badge i {
            font-size: 0.45rem;
        }
        
        .support-status-badge.open {
            background: rgba(16, 185, 129, 0.08);
            color: #10b981;
        }
        
        .support-status-badge.answered {
            background: rgba(43, 92, 171, 0.08);
            color: var(--primary);
        }
        
        .support-status-badge.awaiting {
            background: rgba(245, 158, 11, 0.08);
            color: #f59e0b;
        }
        
        .support-status-badge.closed {
            background: rgba(107, 114, 128, 0.08);
            color: #6B7280;
        }
        
        .support-empty td {
            padding: 40px 20px !important;
        }
        
        .support-empty-state {
            text-align: center;
            padding: 20px;
        }
        
        .support-empty-state i {
            font-size: 2.4rem;
            color: var(--border-color);
            margin-bottom: 10px;
            display: block;
        }
        
        .support-empty-state h3 {
            font-size: 1rem;
            font-weight: 600;
            color: var(--dark);
            margin: 0 0 4px 0;
        }
        
        .support-empty-state p {
            font-size: 0.8rem;
            color: var(--gray);
            margin: 0 0 16px 0;
        }
        
        .support-empty-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 20px;
            background: var(--primary);
            color: var(--white);
            border-radius: 8px;
            font-size: 0.8rem;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
        }
        
        .support-empty-btn:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(43, 92, 171, 0.15);
            color: var(--white);
        }
        
        .support-pagination-wrapper {
            display: flex;
            justify-content: center;
            padding-top: 16px;
            border-top: 1px solid var(--border-color);
            margin-top: 16px;
        }
        
        .support-pagination-wrapper .pagination {
            display: flex;
            gap: 4px;
            align-items: center;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .support-pagination-wrapper .pagination .page-item {
            display: inline-block;
        }
        
        .support-pagination-wrapper .pagination .page-link {
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 32px;
            height: 32px;
            padding: 0 10px;
            border-radius: 6px;
            background: var(--white);
            color: var(--gray);
            font-size: 0.75rem;
            font-weight: 500;
            text-decoration: none;
            border: 1px solid var(--border-color);
            transition: var(--transition);
        }
        
        .support-pagination-wrapper .pagination .page-link:hover {
            background: var(--primary-light);
            border-color: var(--primary);
            color: var(--primary);
        }
        
        .support-pagination-wrapper .pagination .page-item.active .page-link {
            background: var(--primary);
            border-color: var(--primary);
            color: var(--white);
        }
        
        .support-pagination-wrapper .pagination .page-item.disabled .page-link {
            opacity: 0.4;
            cursor: not-allowed;
            pointer-events: none;
        }
        
        @media (max-width: 992px) {
            .support-header {
                flex-direction: column;
                align-items: flex-start;
                padding: 16px 20px;
            }
        
            .support-title {
                font-size: 1.2rem;
            }
        
            .support-quick-grid {
                grid-template-columns: 1fr;
            }
        
            .support-header-actions {
                width: 100%;
            }
        
            .support-btn-primary {
                width: 100%;
                justify-content: center;
            }
        }
        
        @media (max-width: 600px) {
            .support-header {
                padding: 14px 16px;
                border-radius: 12px;
            }
        
            .support-title {
                font-size: 1rem;
            }
        
            .support-subtitle {
                font-size: 0.7rem;
            }
        
            .support-quick-card {
                padding: 12px 14px;
            }
        
            .support-quick-icon {
                width: 34px;
                height: 34px;
                min-width: 34px;
                font-size: 0.9rem;
            }
        
            .support-quick-content h4 {
                font-size: 0.75rem;
            }
        
            .support-quick-content p {
                font-size: 0.65rem;
            }
        
            .support-tickets-section {
                padding: 14px 14px 16px;
                border-radius: 12px;
            }
        
            .support-tickets-title {
                font-size: 0.8rem;
            }
        
            .support-tickets-table {
                font-size: 0.75rem;
                min-width: 400px;
            }
        
            .support-tickets-table thead th {
                padding: 8px 10px;
                font-size: 0.6rem;
            }
        
            .support-tickets-table tbody td {
                padding: 8px 10px;
            }
        
            .support-ticket-code {
                font-size: 0.7rem;
            }
        
            .support-ticket-subject .support-ticket-link {
                font-size: 0.75rem;
            }
        
            .support-date-main {
                font-size: 0.7rem;
            }
        
            .support-date-time {
                font-size: 0.55rem;
            }
        
            .support-status-badge {
                font-size: 0.6rem;
                padding: 3px 10px;
            }
        
            .support-tickets-count {
                font-size: 0.6rem;
                padding: 1px 10px;
            }
        
            .support-btn-primary {
                font-size: 0.8rem;
                padding: 8px 18px;
            }
        
            .support-empty-state i {
                font-size: 2rem;
            }
        
            .support-empty-state h3 {
                font-size: 0.9rem;
            }
        
            .support-empty-state p {
                font-size: 0.75rem;
            }
        
            .support-empty-btn {
                font-size: 0.75rem;
                padding: 6px 16px;
            }
        
            .support-pagination-wrapper .pagination .page-link {
                min-width: 28px;
                height: 28px;
                font-size: 0.65rem;
                padding: 0 8px;
            }
        }
        
        @media (max-width: 400px) {
            .support-tickets-table {
                min-width: 340px;
                font-size: 0.65rem;
            }
        
            .support-tickets-table thead th {
                padding: 6px 6px;
                font-size: 0.5rem;
            }
        
            .support-tickets-table tbody td {
                padding: 6px 6px;
            }
        
            .support-ticket-code {
                font-size: 0.6rem;
            }
        
            .support-ticket-subject .support-ticket-link {
                font-size: 0.65rem;
            }
        
            .support-date-main {
                font-size: 0.6rem;
            }
        
            .support-status-badge {
                font-size: 0.5rem;
                padding: 2px 8px;
            }
        
            .support-quick-card {
                padding: 10px 12px;
            }
        
            .support-quick-icon {
                width: 30px;
                height: 30px;
                min-width: 30px;
                font-size: 0.8rem;
            }
        
            .support-quick-content h4 {
                font-size: 0.7rem;
            }
        
            .support-quick-content p {
                font-size: 0.6rem;
            }
        }
        
        body.dark-mode .support-header {
            background: #16213e;
            border-color: rgba(255, 255, 255, 0.04);
        }
        
        body.dark-mode .support-title {
            color: #ffffff !important;
        }
        
        body.dark-mode .support-subtitle {
            color: #94a3b8 !important;
        }
        
        body.dark-mode .support-quick-card {
            background: #16213e;
            border-color: #2d3748;
        }
        
        body.dark-mode .support-quick-card:hover {
            border-color: var(--primary);
        }
        
        body.dark-mode .support-quick-content h4 {
            color: #ffffff !important;
        }
        
        body.dark-mode .support-quick-content p {
            color: #94a3b8 !important;
        }
        
        body.dark-mode .support-quick-arrow {
            color: #94a3b8;
        }
        
        body.dark-mode .support-tickets-section {
            background: #16213e;
            border-color: rgba(255, 255, 255, 0.04);
        }
        
        body.dark-mode .support-tickets-header {
            border-bottom-color: #2d3748;
        }
        
        body.dark-mode .support-tickets-title {
            color: #ffffff !important;
        }
        
        body.dark-mode .support-tickets-count {
            color: #94a3b8 !important;
            background: #1a1a2e;
            border-color: #2d3748;
        }
        
        body.dark-mode .support-tickets-table thead th {
            color: #94a3b8 !important;
            border-bottom-color: #2d3748;
        }
        
        body.dark-mode .support-tickets-table tbody td {
            border-bottom-color: #2d3748;
        }
        
        body.dark-mode .support-tickets-table tbody tr:hover {
            background: #1e2a4a;
        }
        
        body.dark-mode .support-ticket-subject .support-ticket-link {
            color: #94a3b8 !important;
        }
        
        body.dark-mode .support-ticket-subject .support-ticket-link:hover {
            color: var(--primary) !important;
        }
        
        body.dark-mode .support-date-main {
            color: #ffffff !important;
        }
        
        body.dark-mode .support-date-time {
            color: #94a3b8 !important;
        }
        
        body.dark-mode .support-status-badge.open {
            background: rgba(16, 185, 129, 0.1);
            color: #34d399 !important;
        }
        
        body.dark-mode .support-status-badge.answered {
            background: rgba(43, 92, 171, 0.1);
            color: var(--primary) !important;
        }
        
        body.dark-mode .support-status-badge.awaiting {
            background: rgba(245, 158, 11, 0.1);
            color: #fbbf24 !important;
        }
        
        body.dark-mode .support-status-badge.closed {
            background: rgba(107, 114, 128, 0.1);
            color: #94a3b8 !important;
        }
        
        body.dark-mode .support-empty-state h3 {
            color: #ffffff !important;
        }
        
        body.dark-mode .support-empty-state p {
            color: #94a3b8 !important;
        }
        
        body.dark-mode .support-empty-state i {
            color: #2d3748;
        }
        
        body.dark-mode .support-pagination-wrapper {
            border-top-color: #2d3748;
        }
        
        body.dark-mode .support-pagination-wrapper .pagination .page-link {
            background: #1a1a2e;
            border-color: #2d3748;
            color: #94a3b8 !important;
        }
        
        body.dark-mode .support-pagination-wrapper .pagination .page-link:hover {
            background: #1e2a4a;
            border-color: var(--primary);
            color: var(--primary) !important;
        }
        
        body.dark-mode .support-pagination-wrapper .pagination .page-item.active .page-link {
            background: var(--primary);
            border-color: var(--primary);
            color: #ffffff !important;
        }        
        
        .support-success-actions {
            margin-top: 16px;
        }
        
        .support-form-section {
            margin-bottom: 20px;
        }
        
        .support-form-card {
            background: var(--white);
            border-radius: 14px;
            padding: 24px 28px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
            border: 1px solid var(--border-color);
        }
        
        .support-form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }
        
        .support-form-group {
            margin-bottom: 18px;
        }
        
        .support-form-group:last-child {
            margin-bottom: 0;
        }
        
        .support-form-label {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 6px;
        }
        
        .support-form-label i {
            color: var(--primary);
            font-size: 0.85rem;
        }
        
        .support-form-input,
        .support-form-select,
        .support-form-textarea {
            width: 100%;
            padding: 10px 14px;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            font-size: 0.85rem;
            font-family: 'Inter', sans-serif;
            background: var(--white);
            color: var(--dark);
            outline: none;
            transition: var(--transition);
        }
        
        .support-form-input:focus,
        .support-form-select:focus,
        .support-form-textarea:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(43, 92, 171, 0.06);
        }
        
        .support-form-input::placeholder,
        .support-form-textarea::placeholder {
            color: var(--gray);
            opacity: 0.5;
        }
        
        .support-form-select {
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 12px center;
            padding-right: 36px;
            cursor: pointer;
        }
        
        .support-form-textarea {
            resize: vertical;
            min-height: 120px;
        }
        
        
        .support-form-captcha {
            margin-bottom: 18px;
        }
        
        .support-captcha-wrapper {
            padding: 12px 16px;
            background: var(--light-gray);
            border-radius: 8px;
            border: 1px solid var(--border-color);
            display: inline-block;
        }
        
        .support-form-actions {
            display: flex;
            align-items: center;
            gap: 12px;
            padding-top: 18px;
            border-top: 1px solid var(--border-color);
            margin-top: 4px;
        }
        
        .support-btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 24px;
            background: var(--light-gray);
            color: var(--gray);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            font-size: 0.85rem;
            font-weight: 600;
            font-family: 'Inter', sans-serif;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
        }
        
        .support-btn-secondary:hover {
            background: var(--border-color);
            color: var(--dark);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
        }
        
        .support-btn-secondary:active {
            transform: scale(0.97);
        }
        
        @media (max-width: 768px) {
            .support-form-row {
                grid-template-columns: 1fr;
                gap: 0;
            }
        
            .support-form-card {
                padding: 18px 16px;
                border-radius: 12px;
            }
        
            .support-form-actions {
                flex-direction: column;
                gap: 10px;
            }
        
            .support-form-actions .support-btn-primary,
            .support-form-actions .support-btn-secondary {
                width: 100%;
                justify-content: center;
            }
        }
        
        @media (max-width: 600px) {
            .support-form-card {
                padding: 14px 14px;
            }
        
            .support-form-label {
                font-size: 0.75rem;
            }
        
            .support-form-input,
            .support-form-select,
            .support-form-textarea {
                font-size: 0.8rem;
                padding: 8px 12px;
            }
        
            .support-captcha-wrapper {
                padding: 8px 12px;
            }
        }
        
        
        body.dark-mode .support-form-card {
            background: #16213e;
            border-color: rgba(255, 255, 255, 0.04);
        }
        
        body.dark-mode .support-form-label {
            color: #ffffff !important;
        }
        
        body.dark-mode .support-form-input,
        body.dark-mode .support-form-select,
        body.dark-mode .support-form-textarea {
            background: #1a1a2e;
            border-color: #2d3748;
            color: #ffffff !important;
        }
        
        body.dark-mode .support-form-input::placeholder,
        body.dark-mode .support-form-textarea::placeholder {
            color: #94a3b8;
        }
        
        body.dark-mode .support-form-select {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2394a3b8' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
        }
        
        body.dark-mode .support-form-select option {
            background: #16213e;
            color: #ffffff;
        }
        
        body.dark-mode .support-captcha-wrapper {
            background: #1a1a2e;
            border-color: #2d3748;
        }
        
        body.dark-mode .support-form-actions {
            border-top-color: #2d3748;
        }
        
        body.dark-mode .support-btn-secondary {
            background: #1a1a2e;
            border-color: #2d3748;
            color: #94a3b8 !important;
        }
        
        body.dark-mode .support-btn-secondary:hover {
            background: #2d3748;
            color: #ffffff !important;
        }
        
        .alert-box {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            padding: 16px 20px;
            border-radius: 14px;
            margin-bottom: 20px;
            position: relative;
            animation: alertSlideDown 0.5s ease;
            border: 1px solid transparent;
        }
        
        .alert-box.fade-in {
            animation: alertSlideDown 0.5s ease;
        }
        
        @keyframes alertSlideDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .alert-icon {
            width: 36px;
            height: 36px;
            min-width: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            flex-shrink: 0;
        }
        
        .alert-content {
            flex: 1;
            min-width: 0;
        }
        
        .alert-title {
            font-size: 0.85rem;
            font-weight: 700;
            margin: 0 0 2px 0;
            line-height: 1.3;
        }
        
        .alert-message {
            font-size: 0.85rem;
            margin: 0;
            line-height: 1.5;
        }
        
        .alert-close {
            background: none;
            border: none;
            color: inherit;
            font-size: 1.1rem;
            cursor: pointer;
            padding: 4px;
            opacity: 0.6;
            transition: var(--transition);
            flex-shrink: 0;
            margin-top: 2px;
            line-height: 1;
        }
        
        .alert-close:hover {
            opacity: 1;
            transform: rotate(90deg);
        }
        
        .alert-success {
            background: rgba(16, 185, 129, 0.06);
            border-color: rgba(16, 185, 129, 0.2);
            color: #0b8a5e;
        }
        
        .alert-success .alert-icon {
            background: rgba(16, 185, 129, 0.12);
            color: #10b981;
        }
        
        .alert-success .alert-title {
            color: #10b981;
        }
        
        .alert-success .alert-message {
            color: #065f46;
        }
        
        .alert-success .alert-close {
            color: #10b981;
        }
        
        .alert-error {
            background: rgba(239, 68, 68, 0.06);
            border-color: rgba(239, 68, 68, 0.2);
            color: #b91c1c;
        }
        
        .alert-error .alert-icon {
            background: rgba(239, 68, 68, 0.12);
            color: #ef4444;
        }
        
        .alert-error .alert-title {
            color: #ef4444;
        }
        
        .alert-error .alert-message {
            color: #991b1b;
        }
        
        .alert-error .alert-close {
            color: #ef4444;
        }
        
        .support-ticket-info {
            margin-bottom: 20px;
        }
        
        .support-ticket-card {
            background: var(--white);
            border-radius: 14px;
            padding: 20px 24px 24px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
            border: 1px solid var(--border-color);
        }
        
        .support-ticket-card-title {
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--dark);
            display: flex;
            align-items: center;
            gap: 10px;
            margin: 0 0 16px 0;
            padding-bottom: 12px;
            border-bottom: 1px solid var(--border-color);
        }
        
        .support-ticket-info-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px 24px;
        }
        
        .support-ticket-info-item {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 6px 0;
        }
        
        .support-ticket-info-label {
            font-size: 0.7rem;
            font-weight: 600;
            color: var(--gray);
            text-transform: uppercase;
            letter-spacing: 0.3px;
            min-width: 80px;
        }
        
        .support-ticket-info-value {
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--dark);
        }
        
        .support-ticket-info-value.ticket-id {
            font-weight: 700;
            color: var(--primary);
            font-size: 0.9rem;
        }
        
        .support-conversation {
            margin-bottom: 20px;
        }
        
        .support-conversation-card {
            background: var(--white);
            border-radius: 14px;
            padding: 20px 24px 24px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
            border: 1px solid var(--border-color);
        }
        
        .support-message {
            padding: 16px 18px;
            border-radius: 12px;
            margin-bottom: 14px;
            border: 1px solid var(--border-color);
            background: var(--light-gray);
        }
        
        .support-message:last-child {
            margin-bottom: 0;
        }
        
        .support-message-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 8px;
        }
        
        .support-message-avatar {
            width: 36px;
            height: 36px;
            min-width: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            font-weight: 700;
            color: var(--white);
            background: var(--primary);
        }
        
        .support-message-avatar.admin {
            background: #10b981;
            font-size: 0.9rem;
        }
        
        .support-message-initials {
            text-transform: uppercase;
        }
        
        .support-message-meta {
            display: flex;
            flex-direction: column;
            gap: 1px;
        }
        
        .support-message-author {
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--dark);
        }
        
        .support-message-admin-label {
            color: #10b981;
            display: flex;
            align-items: center;
            gap: 4px;
        }
        
        .support-message-admin-label i {
            font-size: 0.7rem;
        }
        
        .support-message-date {
            font-size: 0.65rem;
            color: var(--gray);
        }
        
        .support-message-body {
            font-size: 0.85rem;
            color: var(--dark);
            line-height: 1.6;
            padding-left: 48px;
        }
        
        .support-message-admin {
            background: rgba(16, 185, 129, 0.04);
            border-color: rgba(16, 185, 129, 0.15);
        }
        
        .support-message-admin .support-message-body {
            color: var(--dark);
        }
        
        .support-message-user {
            background: var(--light-gray);
            border-color: var(--border-color);
        }
        
        .support-reply-form {
            margin-top: 20px;
            padding-top: 18px;
            border-top: 1px solid var(--border-color);
        }
        
        .support-reply-title {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--dark);
            display: flex;
            align-items: center;
            gap: 8px;
            margin: 0 0 12px 0;
        }
        
        .support-reply-form .support-form-textarea {
            min-height: 100px;
        }
        
        .support-reply-form .support-form-actions {
            border-top: none;
            padding-top: 0;
            margin-top: 0;
        }
        
        
        @media (max-width: 768px) {
            .support-ticket-card {
                padding: 16px 16px 18px;
                border-radius: 12px;
            }
        
            .support-ticket-info-grid {
                grid-template-columns: 1fr;
                gap: 4px;
            }
        
            .support-ticket-info-item {
                flex-wrap: wrap;
                gap: 4px;
            }
        
            .support-ticket-info-label {
                min-width: auto;
                font-size: 0.65rem;
            }
        
            .support-conversation-card {
                padding: 16px 16px 18px;
                border-radius: 12px;
            }
        
            .support-message {
                padding: 12px 14px;
            }
        
            .support-message-body {
                padding-left: 0;
                font-size: 0.8rem;
            }
        
            .support-message-header {
                flex-wrap: wrap;
                gap: 8px;
            }
        
            .support-message-avatar {
                width: 30px;
                height: 30px;
                min-width: 30px;
                font-size: 0.7rem;
            }
        
            .support-message-author {
                font-size: 0.75rem;
            }
        
            .support-message-date {
                font-size: 0.6rem;
            }
        
            .support-reply-form {
                margin-top: 14px;
                padding-top: 14px;
            }
        
            .support-reply-form .support-form-actions {
                flex-direction: column;
                gap: 10px;
            }
        
            .support-reply-form .support-form-actions .support-btn-primary,
            .support-reply-form .support-form-actions .support-btn-secondary {
                width: 100%;
                justify-content: center;
            }
        }
        
        @media (max-width: 400px) {
            .support-ticket-card {
                padding: 12px 12px 14px;
            }
        
            .support-ticket-card-title {
                font-size: 0.85rem;
            }
        
            .support-conversation-card {
                padding: 12px 12px 14px;
            }
        
            .support-message {
                padding: 10px 12px;
                border-radius: 8px;
            }
        
            .support-message-body {
                font-size: 0.75rem;
            }
        }
        
        body.dark-mode .support-ticket-card {
            background: #16213e;
            border-color: rgba(255, 255, 255, 0.04);
        }
        
        body.dark-mode .support-ticket-card-title {
            color: #ffffff !important;
            border-bottom-color: #2d3748;
        }
        
        body.dark-mode .support-ticket-info-label {
            color: #94a3b8 !important;
        }
        
        body.dark-mode .support-ticket-info-value {
            color: #ffffff !important;
        }
        
        body.dark-mode .support-ticket-info-value.ticket-id {
            color: var(--primary) !important;
        }
        
        body.dark-mode .support-conversation-card {
            background: #16213e;
            border-color: rgba(255, 255, 255, 0.04);
        }
        
        body.dark-mode .support-message {
            background: #1a1a2e;
            border-color: #2d3748;
        }
        
        body.dark-mode .support-message-admin {
            background: rgba(16, 185, 129, 0.06);
            border-color: rgba(16, 185, 129, 0.15);
        }
        
        body.dark-mode .support-message-author {
            color: #ffffff !important;
        }
        
        body.dark-mode .support-message-date {
            color: #94a3b8 !important;
        }
        
        body.dark-mode .support-message-body {
            color: #94a3b8 !important;
        }
        
        body.dark-mode .support-message-admin .support-message-body {
            color: #ffffff !important;
        }
        
        body.dark-mode .support-reply-form {
            border-top-color: #2d3748;
        }
        
        body.dark-mode .support-reply-title {
            color: #ffffff !important;
        }
        
        body.dark-mode .support-avatar-placeholder {
            background: #1e2a4a;
            color: #94a3b8;
        }
        
        .support-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 16px;
            margin-bottom: 20px;
            padding: 18px 24px;
            background: var(--white);
            border-radius: 14px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
            border: 1px solid var(--border-color);
        }
        
        .support-header-left {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }
        
        .support-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--dark);
            display: flex;
            align-items: center;
            gap: 10px;
            margin: 0;
            letter-spacing: -0.3px;
        }
        
        .support-subtitle {
            font-size: 0.8rem;
            color: var(--gray);
            margin: 0;
            font-weight: 400;
        }
        
        .support-header-actions {
            flex-shrink: 0;
        }
        
        .support-btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 24px;
            background: var(--primary);
            color: var(--white);
            border: none;
            border-radius: 8px;
            font-size: 0.85rem;
            font-weight: 600;
            font-family: 'Inter', sans-serif;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
        }
        
        .support-btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 4px 16px rgba(43, 92, 171, 0.15);
            color: var(--white);
        }
        
        .support-btn-primary:active {
            transform: scale(0.97);
        }
        
        .support-option-wrapper {
            margin-bottom: 24px;
        }
        
        .support-option-card {
            background: var(--white);
            border-radius: 14px;
            padding: 28px 32px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
            border: 1px solid var(--border-color);
            display: flex;
            align-items: flex-start;
            gap: 20px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            animation: cardSlideUp 0.6s ease forwards;
            opacity: 0;
            transform: translateY(20px);
        }
        
        .support-option-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: #10b981;
            border-radius: 0 4px 4px 0;
            transition: height 0.4s ease;
        }
        
        .support-option-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
            border-color: #10b981;
        }
        
        .support-option-card:hover::before {
            height: 100%;
        }
        
        @keyframes cardSlideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .support-option-icon {
            width: 52px;
            height: 52px;
            min-width: 52px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            flex-shrink: 0;
            background: rgba(16, 185, 129, 0.08);
            color: #10b981;
            transition: all 0.4s ease;
            animation: iconPulse 3s ease-in-out infinite;
        }
        
        .support-option-card:hover .support-option-icon {
            transform: scale(1.08) rotate(-5deg);
            background: rgba(16, 185, 129, 0.15);
        }
        
        @keyframes iconPulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.04);
            }
        }
        
        .support-option-content {
            flex: 1;
            min-width: 0;
        }
        
        .support-option-title {
            font-size: 1rem;
            font-weight: 600;
            color: var(--dark);
            margin: 0 0 6px 0;
            animation: titleFade 0.6s ease 0.2s forwards;
            opacity: 0;
        }
        
        @keyframes titleFade {
            from {
                opacity: 0;
                transform: translateX(-10px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        .support-option-desc {
            font-size: 0.85rem;
            color: var(--gray);
            line-height: 1.6;
            margin: 0 0 18px 0;
            animation: descFade 0.6s ease 0.3s forwards;
            opacity: 0;
        }
        
        @keyframes descFade {
            from {
                opacity: 0;
                transform: translateX(-10px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        .support-option-form {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            align-items: flex-end;
        }
        
        .support-option-form .support-option-input-group {
            flex: 1;
            min-width: 180px;
        }
        
        .support-option-input-group {
            display: flex;
            align-items: center;
            border: 1.5px solid var(--border-color);
            border-radius: 8px;
            background: var(--white);
            transition: all 0.3s ease;
        }
        
        .support-option-input-group:focus-within {
            border-color: #10b981;
            box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.06);
            transform: translateY(-1px);
        }
        
        .support-option-input-group i {
            padding: 0 14px;
            color: var(--gray);
            font-size: 0.85rem;
            flex-shrink: 0;
            transition: color 0.3s ease;
        }
        
        .support-option-input-group:focus-within i {
            color: #10b981;
        }
        
        .support-option-input {
            flex: 1;
            padding: 10px 14px 10px 0;
            border: none;
            background: transparent;
            font-size: 0.85rem;
            font-family: 'Inter', sans-serif;
            color: var(--dark);
            outline: none;
            transition: all 0.3s ease;
        }
        
        .support-option-input::placeholder {
            color: var(--gray);
            opacity: 0.5;
        }
        
        .support-option-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 28px;
            border: none;
            border-radius: 8px;
            font-size: 0.85rem;
            font-weight: 600;
            font-family: 'Inter', sans-serif;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            background: var(--light-gray);
            color: var(--dark);
            border: 1px solid var(--border-color);
            position: relative;
            overflow: hidden;
            white-space: nowrap;
        }
        
        .support-option-btn::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(16, 185, 129, 0.1);
            transition: all 0.5s ease;
            transform: translate(-50%, -50%);
        }
        
        .support-option-btn:hover::after {
            width: 300px;
            height: 300px;
        }
        
        .support-option-btn:hover {
            background: #10b981;
            color: var(--white);
            border-color: #10b981;
            transform: translateY(-2px);
            box-shadow: 0 4px 16px rgba(16, 185, 129, 0.2);
        }
        
        .support-option-btn:active {
            transform: scale(0.97);
        }
        
        .support-option-btn i {
            transition: transform 0.3s ease;
        }
        
        .support-option-btn:hover i {
            transform: translateX(3px);
        }
        
        .support-stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            margin-bottom: 20px;
        }
        
        .support-stat-item {
            background: var(--white);
            border-radius: 12px;
            padding: 16px 20px;
            border: 1px solid var(--border-color);
            text-align: center;
            transition: all 0.3s ease;
            animation: statFadeUp 0.6s ease forwards;
            opacity: 0;
            transform: translateY(15px);
        }
        
        .support-stat-item:nth-child(1) {
            animation-delay: 0.3s;
        }
        .support-stat-item:nth-child(2) {
            animation-delay: 0.4s;
        }
        .support-stat-item:nth-child(3) {
            animation-delay: 0.5s;
        }
        
        @keyframes statFadeUp {
            from {
                opacity: 0;
                transform: translateY(15px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .support-stat-item:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
            border-color: var(--primary);
        }
        
        .support-stat-number {
            display: block;
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--primary);
            transition: color 0.3s ease;
        }
        
        .support-stat-item:hover .support-stat-number {
            color: #10b981;
        }
        
        .support-stat-label {
            display: block;
            font-size: 0.65rem;
            font-weight: 500;
            color: var(--gray);
            text-transform: uppercase;
            letter-spacing: 0.4px;
            margin-top: 2px;
        }
        
        .alert-box {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            padding: 16px 20px;
            border-radius: 14px;
            margin-bottom: 20px;
            position: relative;
            animation: alertSlideDown 0.5s ease;
            border: 1px solid transparent;
        }
        
        .alert-box.fade-in {
            animation: alertSlideDown 0.5s ease;
        }
        
        @keyframes alertSlideDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .alert-icon {
            width: 36px;
            height: 36px;
            min-width: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            flex-shrink: 0;
        }
        
        .alert-content {
            flex: 1;
            min-width: 0;
        }
        
        .alert-title {
            font-size: 0.85rem;
            font-weight: 700;
            margin: 0 0 2px 0;
            line-height: 1.3;
        }
        
        .alert-message {
            font-size: 0.85rem;
            margin: 0;
            line-height: 1.5;
        }
        
        .alert-close {
            background: none;
            border: none;
            color: inherit;
            font-size: 1.1rem;
            cursor: pointer;
            padding: 4px;
            opacity: 0.6;
            transition: var(--transition);
            flex-shrink: 0;
            margin-top: 2px;
            line-height: 1;
        }
        
        .alert-close:hover {
            opacity: 1;
            transform: rotate(90deg);
        }
        
        .alert-error {
            background: rgba(239, 68, 68, 0.06);
            border-color: rgba(239, 68, 68, 0.2);
            color: #b91c1c;
        }
        
        .alert-error .alert-icon {
            background: rgba(239, 68, 68, 0.12);
            color: #ef4444;
        }
        
        .alert-error .alert-title {
            color: #ef4444;
        }
        
        .alert-error .alert-message {
            color: #991b1b;
        }
        
        .alert-error .alert-close {
            color: #ef4444;
        }
        
        @media (max-width: 992px) {
            .support-header {
                flex-direction: column;
                align-items: flex-start;
                padding: 16px 20px;
            }
        
            .support-title {
                font-size: 1.2rem;
            }
        
            .support-header-actions {
                width: 100%;
            }
        
            .support-btn-primary {
                width: 100%;
                justify-content: center;
            }
        
            .support-stats-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .support-header {
                padding: 14px 16px;
            }
        
            .support-title {
                font-size: 1rem;
            }
        
            .support-subtitle {
                font-size: 0.7rem;
            }
        
            .support-btn-primary {
                font-size: 0.8rem;
                padding: 8px 18px;
            }
        
            .support-option-card {
                flex-direction: column;
                align-items: flex-start;
                padding: 20px;
            }
        
            .support-option-icon {
                width: 44px;
                height: 44px;
                min-width: 44px;
                font-size: 1.2rem;
            }
        
            .support-option-title {
                font-size: 0.9rem;
            }
        
            .support-option-desc {
                font-size: 0.8rem;
            }
        
            .support-option-form {
                flex-direction: column;
                width: 100%;
            }
        
            .support-option-form .support-option-input-group {
                min-width: 100%;
            }
        
            .support-option-btn {
                width: 100%;
                justify-content: center;
                padding: 10px 20px;
            }
        
            .support-stats-grid {
                grid-template-columns: 1fr;
                gap: 10px;
            }
        
            .support-stat-item {
                padding: 12px 16px;
            }
        
            .support-stat-number {
                font-size: 1rem;
            }
        }
        
        @media (max-width: 400px) {
            .support-header {
                padding: 12px 14px;
            }
        
            .support-title {
                font-size: 0.9rem;
            }
        
            .support-btn-primary {
                font-size: 0.7rem;
                padding: 6px 14px;
            }
        
            .support-option-card {
                padding: 16px;
                border-radius: 12px;
            }
        
            .support-option-icon {
                width: 38px;
                height: 38px;
                min-width: 38px;
                font-size: 1rem;
            }
        
            .support-option-input-group i {
                padding: 0 10px;
                font-size: 0.75rem;
            }
        
            .support-option-input {
                font-size: 0.75rem;
                padding: 8px 10px 8px 0;
            }
        
            .support-option-btn {
                font-size: 0.75rem;
                padding: 8px 16px;
            }
        
            .support-stats-grid {
                gap: 8px;
            }
        }
        
        body.dark-mode .support-header {
            background: #16213e;
            border-color: rgba(255, 255, 255, 0.04);
        }
        
        body.dark-mode .support-title {
            color: #ffffff !important;
        }
        
        body.dark-mode .support-subtitle {
            color: #94a3b8 !important;
        }
        
        body.dark-mode .support-option-card {
            background: #16213e;
            border-color: rgba(255, 255, 255, 0.04);
        }
        
        body.dark-mode .support-option-card:hover {
            border-color: #10b981;
        }
        
        body.dark-mode .support-option-icon {
            background: rgba(16, 185, 129, 0.12);
        }
        
        body.dark-mode .support-option-title {
            color: #ffffff !important;
        }
        
        body.dark-mode .support-option-desc {
            color: #94a3b8 !important;
        }
        
        body.dark-mode .support-option-input-group {
            background: #1a1a2e;
            border-color: #2d3748;
        }
        
        body.dark-mode .support-option-input-group:focus-within {
            border-color: #10b981;
        }
        
        body.dark-mode .support-option-input {
            color: #ffffff !important;
        }
        
        body.dark-mode .support-option-input::placeholder {
            color: #94a3b8;
        }
        
        body.dark-mode .support-option-input-group i {
            color: #94a3b8;
        }
        
        body.dark-mode .support-option-btn {
            background: #1a1a2e;
            border-color: #2d3748;
            color: #94a3b8 !important;
        }
        
        body.dark-mode .support-option-btn:hover {
            background: #10b981;
            color: #ffffff !important;
            border-color: #10b981;
        }
        
        body.dark-mode .support-stat-item {
            background: #16213e;
            border-color: rgba(255, 255, 255, 0.04);
        }
        
        body.dark-mode .support-stat-item:hover {
            border-color: #10b981;
        }
        
        body.dark-mode .support-stat-number {
            color: var(--primary) !important;
        }
        
        body.dark-mode .support-stat-item:hover .support-stat-number {
            color: #10b981 !important;
        }
        
        body.dark-mode .support-stat-label {
            color: #94a3b8 !important;
        }