
        :root {
            --bg: #0d0f14;
            --bg2: #13161e;
            --bg3: #1a1e2a;
            --card: #1e2230;
            --card2: #252a38;
            --border: rgba(255, 255, 255, 0.07);
            --accent: #f7b731;
            --accent2: #e67e22;
            --green: #00d68f;
            --red: #ff4757;
            --blue: #4a9eff;
            --purple: #a855f7;
            --text: #e8eaf0;
            --text2: #8b90a0;
            --text3: #555b6e;
            --radius: 16px;
            --radius-sm: 10px;
            --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            font-size: 22px;
        }

        body {
            font-family: 'Noto Sans', sans-serif;
            background: var(--bg);
            color: var(--text);
            min-height: 100vh;
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* ═══ NOISE OVERLAY ═══ */
        body::before {
            content: '';
            position: fixed;
            inset: 0;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
            pointer-events: none;
            z-index: 0;
            opacity: 0.4;
        }

        /* ═══ SCROLLBAR ═══ */
        ::-webkit-scrollbar {
            width: 6px;
        }

        ::-webkit-scrollbar-track {
            background: var(--bg);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--card2);
            border-radius: 3px;
        }

        /* ═══ NAV ═══ */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            background: rgba(13, 15, 20, 0.92);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border);
            padding: 0 24px;
            height: 64px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .nav-logo {
            font-family: 'Baloo 2', cursive;
            font-size: 22px;
            font-weight: 800;
            color: var(--accent);
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            text-decoration: none;
            background: none;
            border: none;
        }

        .nav-logo span {
            color: var(--text);
        }

        /* Hamburger Button */
        .hamburger {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            z-index: 101;
            flex-direction: column;
            gap: 6px;
            width: 32px;
            height: 32px;
            justify-content: center;
            align-items: center;
        }

        .hamburger span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--text);
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        /* Nav Links Container - Desktop */
        .nav-links {
            display: flex;
            gap: 8px;
            align-items: center;
            transition: all 0.3s ease;
        }

        .nav-link {
            padding: 8px 16px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 500;
            color: var(--text2);
            cursor: pointer;
            transition: all 0.2s;
            border: none;
            background: none;
            font-family: inherit;
        }

        .nav-link:hover {
            color: var(--text);
            background: var(--card);
        }

        .nav-btn {
            padding: 8px 20px;
            background: var(--accent);
            color: #0d0f14;
            border-radius: 8px;
            font-weight: 700;
            font-size: 14px;
            cursor: pointer;
            border: none;
            font-family: inherit;
            transition: all 0.2s;
        }

        .nav-btn:hover {
            background: #f9c84a;
            transform: translateY(-1px);
        }

        /* Mobile Menu Overlay */
        .mobile-menu-overlay {
            display: none;
            position: fixed;
            top: 64px;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(13, 15, 20, 0.98);
            backdrop-filter: blur(16px);
            z-index: 99;
            flex-direction: column;
            padding: 24px;
            gap: 12px;
            overflow-y: auto;
            transform: translateX(100%);
            transition: transform 0.3s ease;
        }

        .mobile-menu-overlay.active {
            transform: translateX(0);
            display: flex;
        }

        .mobile-nav-link {
            padding: 14px 20px;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 500;
            color: var(--text);
            cursor: pointer;
            transition: all 0.2s;
            border: none;
            background: var(--card);
            font-family: inherit;
            text-align: left;
            width: 100%;
        }

        .mobile-nav-link:hover {
            background: var(--card2);
            color: var(--accent);
        }

        .mobile-nav-btn {
            padding: 14px 20px;
            background: var(--accent);
            color: #0d0f14;
            border-radius: 12px;
            font-weight: 700;
            font-size: 16px;
            cursor: pointer;
            border: none;
            font-family: inherit;
            transition: all 0.2s;
            margin-top: 8px;
            width: 100%;
        }

        .mobile-nav-btn:hover {
            background: #f9c84a;
        }

        /* ═══ PAGES ═══ */
        .page {
            display: none;
            padding-top: 64px;
            min-height: 100vh;
            position: relative;
            z-index: 1;
        }

        .page.active {
            display: block;
        }

        /* ═══ HERO ═══ */
        .hero {
            padding: 80px 24px 60px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -100px;
            left: 50%;
            transform: translateX(-50%);
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(247, 183, 49, 0.08) 0%, transparent 70%);
            pointer-events: none;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(247, 183, 49, 0.1);
            border: 1px solid rgba(247, 183, 49, 0.2);
            color: var(--accent);
            padding: 6px 14px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 24px;
            animation: fadeUp 0.6s ease;
        }

        .hero h1 {
            font-family: 'Baloo 2', cursive;
            font-size: clamp(32px, 6vw, 64px);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 20px;
            animation: fadeUp 0.7s ease;
        }

        .hero h1 .highlight {
            color: var(--accent);
            position: relative;
        }

        .hero p {
            font-size: 18px;
            color: var(--text2);
            max-width: 560px;
            margin: 0 auto 36px;
            line-height: 1.7;
            animation: fadeUp 0.8s ease;
        }

        .hero-actions {
            display: flex;
            gap: 12px;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeUp 0.9s ease;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 28px;
            border-radius: 10px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            font-family: inherit;
            transition: all 0.2s;
            text-decoration: none;
        }

        .btn-primary {
            background: var(--accent);
            color: #0d0f14;
        }

        .btn-primary:hover {
            background: #f9c84a;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(247, 183, 49, 0.3);
        }

        .btn-secondary {
            background: var(--card);
            color: var(--text);
            border: 1px solid var(--border);
        }

        .btn-secondary:hover {
            background: var(--card2);
            transform: translateY(-2px);
        }

        /* ═══ STATS BAR ═══ */
        .stats-bar {
            display: flex;
            justify-content: center;
            gap: 0;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
            background: var(--bg2);
            padding: 24px;
            flex-wrap: wrap;
        }

        .stat-item {
            padding: 16px 40px;
            text-align: center;
            border-right: 1px solid var(--border);
        }

        .stat-item:last-child {
            border-right: none;
        }

        .stat-num {
            font-family: 'Baloo 2', cursive;
            font-size: 28px;
            font-weight: 800;
            color: var(--accent);
        }

        .stat-label {
            font-size: 13px;
            color: var(--text2);
            margin-top: 2px;
        }

        /* ═══ SECTION ═══ */
        .section {
            padding: 48px 24px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 32px;
            flex-wrap: wrap;
            gap: 16px;
        }

        .section-title {
            font-family: 'Baloo 2', cursive;
            font-size: 24px;
            font-weight: 700;
        }

        .section-subtitle {
            font-size: 14px;
            color: var(--text2);
            margin-top: 4px;
        }

        /* ═══ PRODUCT CARDS ═══ */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
            gap: 20px;
        }

        .product-card {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            overflow: hidden;
            transition: all 0.3s;
            cursor: pointer;
            position: relative;
        }

        .product-card:hover {
            transform: translateY(-4px);
            border-color: rgba(247, 183, 49, 0.2);
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
        }

        .card-image {
            height: 180px;
            background: linear-gradient(135deg, #1a2035 0%, #252a38 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 72px;
            position: relative;
            overflow: hidden;
        }

        .card-image::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, transparent 50%, rgba(30, 34, 48, 0.8));
        }

        .card-status-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            padding: 4px 10px;
            border-radius: 6px;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            z-index: 2;
        }

        .badge-live {
            background: rgba(0, 214, 143, 0.15);
            color: var(--green);
            border: 1px solid rgba(0, 214, 143, 0.3);
        }

        .badge-success {
            background: rgba(74, 158, 255, 0.15);
            color: var(--blue);
            border: 1px solid rgba(74, 158, 255, 0.3);
        }

        .badge-ended {
            background: rgba(255, 71, 87, 0.15);
            color: var(--red);
            border: 1px solid rgba(255, 71, 87, 0.3);
        }

        .card-body {
            padding: 20px;
        }

        .card-title {
            font-family: 'Baloo 2', cursive;
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 6px;
        }

        .card-desc {
            font-size: 13px;
            color: var(--text2);
            margin-bottom: 16px;
            line-height: 1.5;
        }

        /* PROGRESS */
        .progress-section {
            margin-bottom: 16px;
        }

        .progress-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 8px;
        }

        .progress-count {
            font-size: 14px;
            font-weight: 600;
        }

        .progress-count strong {
            color: var(--accent);
            font-size: 18px;
        }

        .progress-pct {
            font-size: 13px;
            color: var(--text2);
        }

        .progress-bar {
            height: 8px;
            background: var(--bg3);
            border-radius: 50px;
            overflow: hidden;
        }

        .progress-fill {
            height: 100%;
            border-radius: 50px;
            background: linear-gradient(90deg, var(--accent2), var(--accent));
            transition: width 1s ease;
            position: relative;
        }

        .progress-fill::after {
            content: '';
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 12px;
            height: 12px;
            background: var(--accent);
            border-radius: 50%;
            box-shadow: 0 0 8px var(--accent);
        }

        .progress-fill.full {
            background: linear-gradient(90deg, #00b36b, var(--green));
        }

        .progress-fill.full::after {
            background: var(--green);
            box-shadow: 0 0 8px var(--green);
        }

        /* TIMER */
        .timer-row {
            display: flex;
            gap: 8px;
            margin-bottom: 16px;
        }

        .timer-box {
            flex: 1;
            background: var(--bg3);
            border-radius: 8px;
            padding: 8px 4px;
            text-align: center;
        }

        .timer-num {
            font-family: 'Baloo 2', cursive;
            font-size: 20px;
            font-weight: 800;
            color: var(--accent);
            line-height: 1;
        }

        .timer-label {
            font-size: 10px;
            color: var(--text3);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-top: 2px;
        }

        /* PRICE ROW */
        .price-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
            border-top: 1px solid var(--border);
        }

        .price-advance {
            font-size: 13px;
            color: var(--text2);
        }

        .price-advance strong {
            font-family: 'Baloo 2', cursive;
            font-size: 20px;
            font-weight: 700;
            color: var(--text);
        }

        .price-retail {
            text-align: right;
        }

        .price-retail .retail-label {
            font-size: 11px;
            color: var(--text3);
        }

        .price-retail .retail-val {
            font-size: 13px;
            color: var(--text2);
            text-decoration: line-through;
        }

        .price-retail .savings {
            font-size: 13px;
            color: var(--green);
            font-weight: 600;
        }

        .join-btn {
            width: 100%;
            padding: 12px;
            background: linear-gradient(135deg, var(--accent2), var(--accent));
            color: #0d0f14;
            border: none;
            border-radius: 10px;
            font-size: 15px;
            font-weight: 700;
            font-family: inherit;
            cursor: pointer;
            transition: all 0.2s;
            margin-top: 12px;
        }

        .join-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 6px 20px rgba(247, 183, 49, 0.3);
        }

        .join-btn:disabled {
            background: var(--card2);
            color: var(--text3);
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }

        /* ═══ TRUST FEATURES ═══ */
        .trust-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
            gap: 16px;
        }

        .trust-card {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            padding: 24px;
            transition: all 0.2s;
        }

        .trust-card:hover {
            border-color: rgba(247, 183, 49, 0.15);
        }

        .trust-icon {
            width: 44px;
            height: 44px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            margin-bottom: 12px;
        }

        .trust-card h4 {
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 6px;
        }

        .trust-card p {
            font-size: 13px;
            color: var(--text2);
            line-height: 1.5;
        }

        /* ═══ HOW IT WORKS ═══ */
        .steps {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 0;
            position: relative;
        }

        .step {
            padding: 28px 24px;
            text-align: center;
            position: relative;
        }

        .step-num {
            width: 48px;
            height: 48px;
            background: var(--card2);
            border: 2px solid var(--border);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Baloo 2', cursive;
            font-size: 18px;
            font-weight: 800;
            color: var(--accent);
            margin: 0 auto 14px;
            position: relative;
            z-index: 1;
        }

        .step-active .step-num {
            background: var(--accent);
            color: var(--bg);
            border-color: var(--accent);
        }

        .step h4 {
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 6px;
        }

        .step p {
            font-size: 12px;
            color: var(--text2);
            line-height: 1.5;
        }

        /* ═══ MODAL ═══ */
        .modal-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.75);
            z-index: 200;
            align-items: center;
            justify-content: center;
            padding: 20px;
            backdrop-filter: blur(6px);
        }

        .modal-overlay.active {
            display: flex;
        }

        .modal {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            width: 100%;
            max-width: 480px;
            max-height: 90vh;
            overflow-y: auto;
            animation: slideUp 0.3s ease;
        }

        .modal-header {
            padding: 20px 24px 16px;
            border-bottom: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .modal-title {
            font-family: 'Baloo 2', cursive;
            font-size: 20px;
            font-weight: 700;
        }

        .modal-close {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            background: var(--bg3);
            border: none;
            color: var(--text2);
            font-size: 18px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
        }

        .modal-close:hover {
            background: var(--card2);
            color: var(--text);
        }

        .modal-body {
            padding: 24px;
        }

        /* ═══ FORMS ═══ */
        .form-group {
            margin-bottom: 16px;
        }

        .form-label {
            display: block;
            font-size: 13px;
            font-weight: 600;
            color: var(--text2);
            margin-bottom: 6px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .form-input {
            width: 100%;
            padding: 12px 14px;
            background: var(--bg2);
            border: 1px solid var(--border);
            border-radius: 8px;
            color: var(--text);
            font-size: 15px;
            font-family: inherit;
            transition: all 0.2s;
            outline: none;
        }

        .form-input:focus {
            border-color: var(--accent);
            background: var(--bg3);
        }

        .otp-group {
            display: flex;
            gap: 8px;
        }

        .otp-input {
            flex: 1;
            padding: 12px;
            background: var(--bg2);
            border: 1px solid var(--border);
            border-radius: 8px;
            color: var(--text);
            font-size: 22px;
            font-family: 'Baloo 2', cursive;
            font-weight: 700;
            text-align: center;
            outline: none;
            transition: all 0.2s;
        }

        .otp-input:focus {
            border-color: var(--accent);
            background: var(--bg3);
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

        .input-group {
            display: flex;
            gap: 8px;
        }

        .input-group .form-input {
            flex: 1;
        }

        .send-otp-btn {
            padding: 12px 16px;
            background: var(--card2);
            border: 1px solid var(--border);
            border-radius: 8px;
            color: var(--accent);
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            white-space: nowrap;
            font-family: inherit;
            transition: all 0.2s;
        }

        .send-otp-btn:hover {
            background: rgba(247, 183, 49, 0.1);
            border-color: var(--accent);
        }

        /* ═══ PAYMENT SUMMARY ═══ */
        .payment-summary {
            background: var(--bg3);
            border-radius: 10px;
            padding: 16px;
            margin: 16px 0;
        }

        .pay-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px 0;
            border-bottom: 1px solid var(--border);
            font-size: 14px;
        }

        .pay-row:last-child {
            border-bottom: none;
        }

        .pay-row.total {
            font-weight: 700;
            font-size: 16px;
            color: var(--accent);
            padding-top: 12px;
        }

        .escrow-notice {
            background: rgba(0, 214, 143, 0.08);
            border: 1px solid rgba(0, 214, 143, 0.2);
            border-radius: 8px;
            padding: 12px 14px;
            font-size: 12px;
            color: var(--green);
            margin-bottom: 16px;
            line-height: 1.5;
        }

        /* ═══ SUCCESS STATE ═══ */
        .success-state {
            text-align: center;
            padding: 32px 24px;
        }

        .success-icon {
            width: 80px;
            height: 80px;
            background: rgba(0, 214, 143, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 36px;
            margin: 0 auto 20px;
            animation: pulse 2s infinite;
        }

        /* ═══ ADMIN PANEL ═══ */
        .admin-layout {
            display: grid;
            grid-template-columns: 240px 1fr;
            min-height: calc(100vh - 64px);
        }

        .admin-sidebar {
            background: var(--bg2);
            border-right: 1px solid var(--border);
            padding: 24px 12px;
            position: sticky;
            top: 64px;
            height: calc(100vh - 64px);
            overflow-y: auto;
        }

        .sidebar-section {
            margin-bottom: 24px;
        }

        .sidebar-label {
            font-size: 11px;
            font-weight: 700;
            color: var(--text3);
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 0 12px;
            margin-bottom: 8px;
        }

        .sidebar-link {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 12px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 500;
            color: var(--text2);
            cursor: pointer;
            transition: all 0.2s;
            border: none;
            background: none;
            width: 100%;
            text-align: left;
            font-family: inherit;
        }

        .sidebar-link:hover {
            background: var(--card);
            color: var(--text);
        }

        .sidebar-link.active {
            background: rgba(247, 183, 49, 0.1);
            color: var(--accent);
        }

        .sidebar-badge {
            margin-left: auto;
            background: var(--accent);
            color: var(--bg);
            font-size: 11px;
            font-weight: 700;
            padding: 2px 7px;
            border-radius: 50px;
        }

        .admin-content {
            padding: 32px;
            overflow-y: auto;
        }

        .admin-page {
            display: none;
        }

        .admin-page.active {
            display: block;
        }

        /* ═══ ADMIN CARDS ═══ */
        .metrics-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 16px;
            margin-bottom: 32px;
        }

        .metric-card {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            padding: 20px;
        }

        .metric-label {
            font-size: 12px;
            color: var(--text2);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 8px;
        }

        .metric-value {
            font-family: 'Baloo 2', cursive;
            font-size: 28px;
            font-weight: 800;
        }

        .metric-change {
            font-size: 12px;
            margin-top: 4px;
        }

        .metric-up {
            color: var(--green);
        }

        .metric-down {
            color: var(--red);
        }

        /* ═══ TABLE ═══ */
        .table-wrapper {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            overflow: hidden;
        }

        .table-header {
            padding: 16px 20px;
            border-bottom: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .table-title {
            font-size: 15px;
            font-weight: 600;
        }

        table {
            width: 100%;
            border-collapse: collapse;
        }

        th {
            padding: 12px 16px;
            text-align: left;
            font-size: 12px;
            font-weight: 700;
            color: var(--text3);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            background: var(--bg2);
            border-bottom: 1px solid var(--border);
        }

        td {
            padding: 14px 16px;
            font-size: 14px;
            border-bottom: 1px solid var(--border);
            color: var(--text2);
        }

        td:first-child {
            color: var(--text);
            font-weight: 500;
        }

        tr:last-child td {
            border-bottom: none;
        }

        tr:hover td {
            background: rgba(255, 255, 255, 0.02);
        }

        .status-pill {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            padding: 3px 10px;
            border-radius: 50px;
            font-size: 12px;
            font-weight: 600;
        }

        .pill-live {
            background: rgba(0, 214, 143, 0.1);
            color: var(--green);
        }

        .pill-pending {
            background: rgba(247, 183, 49, 0.1);
            color: var(--accent);
        }

        .pill-success {
            background: rgba(74, 158, 255, 0.1);
            color: var(--blue);
        }

        .pill-refund {
            background: rgba(255, 71, 87, 0.1);
            color: var(--red);
        }

        .pill-verified {
            background: rgba(0, 214, 143, 0.1);
            color: var(--green);
        }

        .pill-unverified {
            background: rgba(255, 71, 87, 0.1);
            color: var(--red);
        }

        /* ═══ CREATE POOL FORM ═══ */
        .create-pool-form {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 28px;
            max-width: 680px;
        }

        .form-section-title {
            font-family: 'Baloo 2', cursive;
            font-size: 16px;
            font-weight: 700;
            color: var(--accent);
            margin-bottom: 16px;
            padding-bottom: 8px;
            border-bottom: 1px solid var(--border);
        }

        /* ═══ USER DASHBOARD ═══ */
        .user-dashboard {
            padding: 24px;
            max-width: 900px;
            margin: 0 auto;
        }

        .user-header {
            background: linear-gradient(135deg, var(--card) 0%, var(--card2) 100%);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 24px;
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
        }

        .user-avatar {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--accent2), var(--accent));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: 800;
            font-family: 'Baloo 2', cursive;
            color: var(--bg);
        }

        .user-info h3 {
            font-family: 'Baloo 2', cursive;
            font-size: 20px;
            font-weight: 700;
        }

        .user-info p {
            font-size: 13px;
            color: var(--text2);
        }

        .user-wallet {
            margin-left: auto;
            text-align: right;
        }

        .wallet-label {
            font-size: 12px;
            color: var(--text2);
        }

        .wallet-amount {
            font-family: 'Baloo 2', cursive;
            font-size: 22px;
            font-weight: 800;
            color: var(--green);
        }

        /* ORDER CARD */
        .order-card {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            padding: 20px;
            margin-bottom: 14px;
            display: flex;
            align-items: center;
            gap: 16px;
            transition: all 0.2s;
            flex-wrap: wrap;
        }

        .order-card:hover {
            border-color: rgba(247, 183, 49, 0.15);
        }

        .order-icon {
            width: 52px;
            height: 52px;
            background: var(--bg3);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
            flex-shrink: 0;
        }

        .order-details {
            flex: 1;
        }

        .order-details h4 {
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 4px;
        }

        .order-details p {
            font-size: 13px;
            color: var(--text2);
        }

        .order-amount {
            text-align: right;
            flex-shrink: 0;
        }

        .order-paid {
            font-size: 16px;
            font-weight: 700;
            color: var(--text);
        }

        .order-status-txt {
            font-size: 12px;
            margin-top: 4px;
        }

        /* ═══ TABS ═══ */
        .tabs {
            display: flex;
            gap: 4px;
            background: var(--bg2);
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 4px;
            margin-bottom: 24px;
            width: fit-content;
            flex-wrap: wrap;
        }

        .tab {
            padding: 8px 20px;
            border-radius: 7px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s;
            border: none;
            background: none;
            color: var(--text2);
            font-family: inherit;
        }

        .tab.active {
            background: var(--card2);
            color: var(--text);
            font-weight: 600;
        }

        /* ═══ TIMELINE ═══ */
        .timeline {
            position: relative;
            padding-left: 28px;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 8px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: var(--border);
        }

        .timeline-item {
            position: relative;
            padding-bottom: 20px;
        }

        .timeline-dot {
            position: absolute;
            left: -24px;
            top: 4px;
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: var(--card2);
            border: 2px solid var(--border);
        }

        .timeline-dot.done {
            background: var(--green);
            border-color: var(--green);
        }

        .timeline-dot.current {
            background: var(--accent);
            border-color: var(--accent);
            box-shadow: 0 0 8px var(--accent);
        }

        .timeline-text {
            font-size: 13px;
            font-weight: 600;
        }

        .timeline-sub {
            font-size: 12px;
            color: var(--text2);
            margin-top: 2px;
        }

        /* ═══ NOTIFICATION TOAST ═══ */
        .toast {
            position: fixed;
            bottom: 24px;
            right: 24px;
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            padding: 14px 18px;
            font-size: 14px;
            max-width: 320px;
            z-index: 999;
            animation: slideIn 0.4s ease;
            box-shadow: var(--shadow);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .toast.hidden {
            display: none;
        }

        .toast-icon {
            font-size: 20px;
            flex-shrink: 0;
        }

        .toast-content {
            flex: 1;
        }

        .toast-title {
            font-weight: 600;
            margin-bottom: 2px;
        }

        .toast-msg {
            font-size: 12px;
            color: var(--text2);
        }

        /* ═══ CHIP TAGS ═══ */
        .chip {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            padding: 4px 10px;
            border-radius: 6px;
            font-size: 12px;
            font-weight: 600;
            background: var(--bg3);
            color: var(--text2);
            border: 1px solid var(--border);
        }

        /* ═══ DEAL DETAIL ═══ */
        .deal-detail-header {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 28px;
            margin-bottom: 24px;
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 24px;
            align-items: center;
        }

        .deal-icon-large {
            font-size: 64px;
            line-height: 1;
            margin-bottom: 8px;
        }

        .deal-detail-info h2 {
            font-family: 'Baloo 2', cursive;
            font-size: 28px;
            font-weight: 800;
            margin-bottom: 8px;
        }

        .deal-tags {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            margin-bottom: 16px;
        }

        .deal-detail-timer {
            background: var(--bg2);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            min-width: 200px;
        }

        .detail-timer-row {
            display: flex;
            gap: 8px;
            justify-content: center;
            margin-bottom: 8px;
        }

        .detail-timer-box {
            background: var(--card2);
            border-radius: 8px;
            padding: 12px 8px;
            min-width: 52px;
            text-align: center;
        }

        .detail-timer-num {
            font-family: 'Baloo 2', cursive;
            font-size: 26px;
            font-weight: 800;
            color: var(--accent);
            line-height: 1;
        }

        .detail-timer-label {
            font-size: 10px;
            color: var(--text3);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-top: 3px;
        }

        /* ═══ FEATURES LIST ═══ */
        .feature-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            margin-top: 16px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: var(--text2);
        }

        .feature-item::before {
            content: '✓';
            color: var(--green);
            font-weight: 700;
            flex-shrink: 0;
        }

        /* ═══ FOOTER ═══ */
        .footer {
            background: var(--bg2);
            border-top: 1px solid var(--border);
            padding: 48px 24px 32px;
            margin-top: 48px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 32px;
            max-width: 1200px;
            margin: 0 auto 32px;
        }

        .footer-brand p {
            font-size: 13px;
            color: var(--text2);
            line-height: 1.7;
            margin-top: 12px;
            max-width: 280px;
        }

        .footer-links h5 {
            font-size: 13px;
            font-weight: 700;
            color: var(--text);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 12px;
        }

        .footer-links a {
            display: block;
            font-size: 13px;
            color: var(--text2);
            text-decoration: none;
            margin-bottom: 8px;
            transition: color 0.2s;
        }

        .footer-links a:hover {
            color: var(--accent);
        }

        .footer-bottom {
            border-top: 1px solid var(--border);
            padding-top: 24px;
            text-align: center;
            font-size: 12px;
            color: var(--text3);
            max-width: 1200px;
            margin: 0 auto;
        }

        /* ═══ ANIMATIONS ═══ */
        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateX(30px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes pulse {

            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(0, 214, 143, 0.3);
            }

            50% {
                box-shadow: 0 0 0 12px rgba(0, 214, 143, 0);
            }
        }

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

        .spinner {
            width: 20px;
            height: 20px;
            border: 2px solid rgba(0, 0, 0, 0.2);
            border-top-color: var(--bg);
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
            display: inline-block;
        }

        /* ═══ RESPONSIVE ═══ */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .admin-layout {
                grid-template-columns: 1fr;
            }

            .admin-sidebar {
                display: none;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }

            .deal-detail-header {
                grid-template-columns: 1fr;
            }

            .feature-list {
                grid-template-columns: 1fr;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .stat-item {
                border-right: none;
                border-bottom: 1px solid var(--border);
            }

            .user-header {
                flex-direction: column;
                text-align: center;
            }

            .user-wallet {
                margin-left: 0;
                text-align: center;
            }

            .order-card {
                flex-direction: column;
                text-align: center;
            }

            .order-amount {
                text-align: center;
            }

            .tabs {
                width: 100%;
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .nav {
                padding: 0 16px;
            }

            .hero {
                padding: 60px 16px 40px;
            }

            .section {
                padding: 32px 16px;
            }

            .products-grid {
                grid-template-columns: 1fr;
            }

            .metrics-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .footer-brand p {
                margin: 12px auto 0;
            }
        }
   