
        .main-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 100px 2rem 2rem;
            display: grid;
            grid-template-columns: 1fr 350px;
            gap: 2rem;
            min-height: calc(100vh - 120px);
            align-items: start;
        }

        .content-area {
            background: linear-gradient(135deg, rgba(15, 20, 25, 0.95) 0%, rgba(21, 26, 32, 0.92) 100%);
            backdrop-filter: blur(10px);
            border-radius: 1rem;
            padding: 2rem;
            border: 1px solid var(--border-primary);
        }

        .page-header {
            text-align: center;
            margin-bottom: 2rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid var(--border-primary);
            position: relative;
        }

        .page-header-actions {
            margin-top: 1rem;
        }

        .page-header-actions .btn {
            font-size: 0.85rem;
            padding: 0.5rem 1.25rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .page-title {
            font-family: var(--font-heading);
            font-size: 2rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
        }

        .page-subtitle {
            color: var(--text-secondary);
            font-size: 1.1rem;
            margin: 0;
        }

        .btn {
            padding: .7rem 1.25rem;
            border-radius: .625rem;
            font-weight: 700; cursor: pointer;
            transition: all .25s ease; border: none;
            font-family: 'Rajdhani', sans-serif;
            font-size: .95rem; letter-spacing: .05em;
            text-transform: uppercase;
            display: inline-flex; align-items: center; justify-content: center;
            gap: .4rem; text-decoration: none;
        }

        .btn-primary {
            background: linear-gradient(135deg, #6366f1, #a855f7);
            color: #fff; box-shadow: 0 4px 16px rgba(99,102,241,0.35);
        }

        .btn-primary:hover {
            background: linear-gradient(135deg, #4f51d4, #9333ea);
            transform: translateY(-1px); box-shadow: 0 6px 24px rgba(99,102,241,0.5);
        }

        .btn-orange {
            background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ff8c42 100%);
            color: #fff;
            border: 1px solid rgba(255,107,53,0.4);
            box-shadow: 0 4px 16px rgba(255,107,53,0.3);
        }

        .btn-orange:hover {
            background: linear-gradient(135deg, #e55a2b 0%, #e8821a 50%, #ff7a32 100%);
            transform: translateY(-1px); box-shadow: 0 6px 24px rgba(255,107,53,0.45);
        }

        .btn-secondary {
            background: rgba(255,255,255,0.05);
            color: #94a3b8; border: 1px solid rgba(255,255,255,0.08);
        }

        .btn-secondary:hover {
            background: rgba(99,102,241,0.1); color: #eef2ff;
            border-color: rgba(99,102,241,0.3);
        }

      .info-card {
            background: rgba(5,8,15,0.6);
            border-radius: .75rem;
            padding: .5rem 1.25rem;
            margin-bottom: 1rem;
            border: 1px solid rgba(99,102,241,0.1);
        }
        .info-item {
            display: flex; justify-content: space-between; align-items: center;
            padding: .7rem 0;
            border-bottom: 1px solid rgba(255,255,255,0.04);
        }
        .info-item:last-child { border-bottom: none; }
        .info-label { font-weight: 500; color: #5b6b88; font-size: .85rem; }
        .info-value { color: #eef2ff; font-weight: 600; font-size: .875rem; }
        /* Payment Alert Banner */
        .payment-alert-banner {
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(180, 83, 9, 0.08) 100%);
            border: 1px solid rgba(251, 191, 36, 0.3);
            border-radius: 0.75rem;
            padding: 1.25rem 1.5rem;
            margin-bottom: 1.75rem;
            box-shadow: 0 0 0 1px rgba(251,191,36,0.08), 0 4px 24px rgba(251,191,36,0.08);
        }

        .payment-alert-glow {
            position: absolute;
            top: -40px;
            left: -40px;
            width: 160px;
            height: 160px;
            background: radial-gradient(circle, rgba(251,191,36,0.18) 0%, transparent 70%);
            pointer-events: none;
            border-radius: 50%;
            animation: alertPulse 3s ease-in-out infinite;
        }

        @keyframes alertPulse {
            0%, 100% { opacity: 0.6; transform: scale(1); }
            50%       { opacity: 1;   transform: scale(1.15); }
        }

        .payment-alert-icon {
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: rgba(251, 191, 36, 0.15);
            border: 1px solid rgba(251, 191, 36, 0.35);
            color: #fbbf24;
            position: relative;
            z-index: 1;
        }

        .payment-alert-body {
            flex: 1;
            min-width: 0;
            position: relative;
            z-index: 1;
        }

        .payment-alert-label {
            display: inline-block;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: #fbbf24;
            background: rgba(251,191,36,0.12);
            border: 1px solid rgba(251,191,36,0.25);
            border-radius: 999px;
            padding: 0.15rem 0.65rem;
            margin-bottom: 0.5rem;
        }

        .payment-alert-text {
            color: #fef3c7;
            font-size: 0.9rem;
            line-height: 1.65;
        }

        .payment-alert-text a {
            color: #fbbf24;
            text-decoration: underline;
            text-underline-offset: 2px;
        }

        .payment-alert-text strong, .payment-alert-text b {
            color: #fde68a;
            font-weight: 600;
        }

        /* Game Products Styles */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
        }

        .product-card {
            background: linear-gradient(160deg, rgba(33, 38, 45, 0.97) 0%, rgba(27, 32, 40, 0.95) 100%);
            border-radius: 0.875rem;
            border: 1px solid var(--border-primary);
            overflow: hidden;
            transition: all 0.28s ease;
            position: relative;
            display: flex;
            flex-direction: column;
        }

        .product-card:hover {
            transform: translateY(-4px);
            border-color: rgba(139, 92, 246, 0.5);
            box-shadow: 0 12px 32px rgba(139, 92, 246, 0.18);
        }

        .product-image {
            width: 100%;
            height: 150px;
            overflow: hidden;
            position: relative;
            flex-shrink: 0;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.35s ease;
        }

        .product-card:hover .product-image img {
            transform: scale(1.06);
        }

        .product-image::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 50%;
            background: linear-gradient(to bottom, transparent, rgba(27,32,40,0.92));
            pointer-events: none;
        }

        .fav-btn {
            position: absolute;
            top: .6rem;
            left: .6rem;
            z-index: 20;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            border: none;
            outline: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0,0,0,0.45);
            backdrop-filter: blur(8px);
            transition: background .2s, box-shadow .2s;
        }
        .fav-btn:hover { background: rgba(0,0,0,0.65); }
        .fav-btn.active {
            background: rgba(239,68,68,0.85);
            box-shadow: 0 2px 8px rgba(239,68,68,0.5);
        }

        .product-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            padding: 0.875rem 1rem 1rem;
            gap: 0.5rem;
        }

        .product-info {
            flex: 1;
        }

        .product-title {
            font-family: var(--font-heading);
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 0.3rem;
            line-height: 1.3;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .product-description {
            color: var(--text-secondary);
            font-size: 0.8rem;
            line-height: 1.45;
            margin-bottom: 0.5rem;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .product-meta {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .product-type {
            margin: 0;
        }

        .type-badge {
            display: inline-block;
            padding: 0.2rem 0.5rem;
            border-radius: 0.25rem;
            font-size: 0.68rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.04em;
        }

        .type-weapon {
            background: rgba(239, 68, 68, 0.15);
            color: #ef4444;
            border: 1px solid rgba(239, 68, 68, 0.3);
        }

        .type-skin {
            background: rgba(34, 197, 94, 0.15);
            color: #22c55e;
            border: 1px solid rgba(34, 197, 94, 0.3);
        }

        .type-item {
            background: rgba(59, 130, 246, 0.15);
            color: #3b82f6;
            border: 1px solid rgba(59, 130, 246, 0.3);
        }

        .type-dlc {
            background: rgba(168, 85, 247, 0.15);
            color: #a855f7;
            border: 1px solid rgba(168, 85, 247, 0.3);
        }

        .type-coin {
            background: rgba(234, 179, 8, 0.15);
            color: #eab308;
            border: 1px solid rgba(234, 179, 8, 0.3);
        }

        .type-cash {
            background: rgb(44 30 21);
            color: #e58d27;
            border: 1px solid rgba(234, 179, 8, 0.3);
        }

        .product-pricing {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 0.5rem;
            margin-top: auto;
            padding-top: 0.625rem;
            border-top: 1px solid rgba(255,255,255,0.06);
        }

        .product-actions {
            flex-shrink: 0;
        }

        .price-badge {
            display: inline-block;
            padding: 0.3rem 0.7rem;
            border-radius: 0.4rem;
            font-size: 1rem;
            font-weight: 700;
            background: linear-gradient(135deg, rgba(168, 85, 247, 0.18), rgba(139, 92, 246, 0.25));
            color: #c084fc;
            border: 1px solid rgba(168, 85, 247, 0.35);
        }

        .original-price {
            color: var(--text-secondary);
            font-size: 0.75rem;
            text-decoration: line-through;
            opacity: 0.6;
            display: block;
        }

        .btn-buy {
            padding: 0.5rem 0.875rem;
            font-size: 0.82rem;
            font-weight: 600;
            white-space: nowrap;
        }

        .btn-discord {
            background: linear-gradient(135deg, #5865F2 0%, #4752C4 100%);
            color: white;
            border: 1px solid #5865F2;
        }

        .btn-whatsapp {
            background: linear-gradient(135deg, #25D366 0%, #1EBE57 100%);
            color: white;
            border: 1px solid #25D366;
        }

        .btn-whatsapp:hover {
            background: linear-gradient(135deg, #1EBE57 0%, #189D47 100%);
            border-color: #1EBE57;
            transform: translateY(-1px);
        }

        .btn-discord:hover {
            background: linear-gradient(135deg, #4752C4 0%, #3C4BAE 100%);
            border-color: #4752C4;
            transform: translateY(-1px);
        }

        .product-badge {
            position: absolute;
            top: 0.6rem;
            right: 0.6rem;
            padding: 0.2rem 0.5rem;
            border-radius: 0.25rem;
            font-size: 0.7rem;
            font-weight: 600;
            z-index: 2;
        }

        .sale-badge {
            background: var(--accent-secondary);
            color: white;
        }

        .featured-badge {
            background: var(--accent-primary);
            color: white;
        }

        .no-products {
            grid-column: 1 / -1;
            text-align: center;
            padding: 3rem;
            color: var(--text-secondary);
        }

        /* Payment Disabled Notice */
        .payment-disabled-notice {
            text-align: center;
            padding: 4rem 2rem;
            background: linear-gradient(135deg, rgba(45, 51, 59, 0.95) 0%, rgba(51, 57, 65, 0.92) 100%);
            border-radius: 1rem;
            border: 1px solid rgba(245, 158, 11, 0.3);
            box-shadow: 0 8px 32px rgba(245, 158, 11, 0.1);
        }

        .notice-icon {
            color: #f59e0b;
            margin-bottom: 1.5rem;
        }

        .payment-disabled-notice h3 {
            color: var(--text-primary);
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
            font-family: var(--font-heading);
        }

        .payment-disabled-notice p {
            color: var(--text-secondary);
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 2rem;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        .notice-actions {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .notice-actions .btn {
            min-width: 180px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        /* ── Sidebar ── */
        .sidebar {
            position: sticky; top: 96px; align-self: start;
            display: flex; flex-direction: column; gap: 1rem;
        }
        .sidebar-card {
            background: rgba(10,14,22,0.9);
            backdrop-filter: blur(12px);
            border-radius: 1rem; padding: 1.5rem;
            border: 1px solid rgba(99,102,241,0.15);
            box-shadow: 0 8px 32px rgba(0,0,0,0.4);
        }
        .sidebar-title {
            font-family: 'Rajdhani', sans-serif;
            font-size: .82rem; font-weight: 700;
            color: #6366f1; margin-bottom: 1.25rem;
            letter-spacing: .14em; text-transform: uppercase;
            display: flex; align-items: center; gap: .5rem;
        }
        .sidebar-title::after {
            content: "";
            flex: 1; height: 1px;
            background: linear-gradient(90deg, rgba(99,102,241,0.4), transparent);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .main-container {
                grid-template-columns: 1fr;
                padding: 100px 1rem 2rem;
            }

            .sidebar {
                order: -1;
                position: static;
                top: auto;
                display: flex;
                flex-direction: column;
                gap: 1rem;
            }
        }

        @media (max-width: 900px) {
            .products-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .main-container {
                padding-left: .875rem !important;
                padding-right: .875rem !important;
                padding-bottom: 2rem;
            }

            .products-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.75rem;
            }

            .product-image {
                height: 120px;
            }

            .content-area {
                padding: 1.25rem;
            }

            .page-header > div {
                justify-content: center !important;
                margin-top: .75rem;
            }

            .page-title { font-size: 1.5rem; }
            .page-subtitle { font-size: .95rem; }
        }

        @media (max-width: 480px) {
            .main-container {
                padding: 88px .625rem 1.5rem;
            }

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

            .content-area {
                padding: 1rem;
            }

            .modal-content {
                padding: 1.25rem;
                width: 95%;
            }

            .modal-title { font-size: 1.1rem; }

            .purchase-table-wrap {
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
            }

            .purchase-table {
                min-width: 520px;
            }

            .payment-alert-banner {
                flex-direction: column;
                gap: .75rem;
            }

            .payment-alert-icon {
                align-self: flex-start;
            }
        }

        /* Purchase History Modal Styles */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(5px);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }

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

        .modal-content {
            background: linear-gradient(135deg, rgba(15, 20, 25, 0.98) 0%, rgba(21, 26, 32, 0.95) 100%);
            border-radius: 1rem;
            padding: 2rem;
            max-width: 900px;
            width: 90%;
            max-height: 80vh;
            overflow-y: auto;
            border: 1px solid var(--border-primary);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        }

        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid var(--border-primary);
        }

        .modal-title {
            color: var(--text-primary);
            font-size: 1.5rem;
            font-weight: 600;
            font-family: var(--font-heading);
        }

        .modal-close {
            background: none;
            border: none;
            color: var(--text-secondary);
            cursor: pointer;
            padding: 0.5rem;
            border-radius: 0.5rem;
            transition: all 0.2s;
        }

        .modal-close:hover {
            background: rgba(255, 255, 255, 0.1);
            color: var(--text-primary);
        }

        .purchase-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 1rem;
        }

        .purchase-table th,
        .purchase-table td {
            padding: 1rem;
            text-align: left;
            border-bottom: 1px solid var(--border-primary);
        }

        .purchase-table th {
            background: rgba(255, 255, 255, 0.05);
            color: var(--text-primary);
            font-weight: 600;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .purchase-table td {
            color: var(--text-secondary);
            font-size: 0.95rem;
        }

        .purchase-table tr:hover {
            background: rgba(255, 255, 255, 0.02);
        }

        .status-badge {
            padding: 0.25rem 0.75rem;
            border-radius: 0.375rem;
            font-size: 0.8rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .status-delivered {
            background: rgba(34, 197, 94, 0.2);
            color: #22c55e;
            border: 1px solid rgba(34, 197, 94, 0.3);
        }

        .status-pending {
            background: rgba(245, 158, 11, 0.2);
            color: #f59e0b;
            border: 1px solid rgba(245, 158, 11, 0.3);
        }

        .empty-state {
            text-align: center;
            padding: 3rem;
            color: var(--text-secondary);
        }

        .empty-state svg {
            margin-bottom: 1rem;
            color: var(--text-muted);
        }