
        /* --- ðŸŽ¨ THEME & CORE STYLES ðŸŽ¨ --- */
        :root {
            --primary: #6a5af9; --primary-light: #8b7ffc;
            --accent: #ff7b2e; --accent-light: #ff9a63;
            --light-bg: #f8f9fa; --light-card: #ffffff; --light-input: #f1f3f5;
            --dark: #212529; --secondary: #6c757d;
            --text-primary: #212529; --text-secondary: #6c757d; --text-on-dark: #ffffff;
            --success: #28a745; --danger: #dc3545; --danger-hover: #c82333;
            --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.05); --shadow-md: 0 6px 20px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease; --border-radius: 12px;
            --gradient: linear-gradient(90deg, var(--primary), var(--accent));
        }
        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Poppins', sans-serif;
            background-color: #e9ecef;
            color: var(--text-primary);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }
        img { max-width: 100%; display: block; }
        button, input { font: inherit; outline: none; border: none; }
        .container { width: 100%; padding: 0 16px; }

        .mobile-container {
            max-width: 450px; margin: 0 auto;
            background-color: var(--light-bg);
            min-height: 100vh;
            box-shadow: 0 0 20px rgba(0,0,0,0.1);
            position: relative;
            padding-bottom: 80px;
        }

        .banner-wrapper {
            background-image: url('https://cdn.moogold.com/2019/11/mobile-legends-bang-bang-768x768.jpg');
            background-size: cover; background-position: center;
            position: relative; padding: 2.5rem 0;
            color: var(--text-on-dark);
        }
        .banner-wrapper::before {
            content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            background: linear-gradient(to top, rgba(18, 18, 28, 1) 0%, rgba(18, 18, 28, 0.5) 100%); z-index: 1;
        }
        .banner-content {
            position: relative; z-index: 2; display: flex; flex-direction: column;
            align-items: center; text-align: center;
        }
        .banner-icon {
            width: 80px; height: 80px;
            border-radius: 16px; border: 3px solid rgba(255,255,255,0.8);
            box-shadow: 0 5px 20px rgba(0,0,0,0.4); margin-bottom: 1rem;
        }
        .game-title { font-size: 1.8rem; margin-bottom: 0.75rem; text-shadow: 2px 2px 4px rgba(0,0,0,0.7); }
        .game-meta { display: flex; justify-content: center; gap: 0.75rem; flex-wrap: wrap; }
        .meta-item {
            display: flex; align-items: center; gap: 0.5rem; background: rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(8px); padding: 0.4rem 0.8rem; border-radius: 50px; font-size: 0.8rem;
        }
        .meta-item i { color: var(--accent); }

        .main-content-wrapper { padding-top: 2rem; }
        .section-header { text-align: center; margin-bottom: 1.5rem; }
        .section-header h2 {
            font-size: 1.5rem; font-weight: 600; color: var(--text-primary);
            position: relative; padding-bottom: 10px; display: inline-block;
        }
        .section-header h2::after {
            content: ''; position: absolute; bottom: 0; left: 50%;
            transform: translateX(-50%); height: 3px; width: 50px;
            background: var(--gradient); border-radius: 3px;
        }

        .diamond-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0.75rem;
        }
        .diamond-card {
            background: var(--light-card); border-radius: var(--border-radius);
            border: 1px solid #e9ecef; text-align: center; cursor: pointer;
            transition: var(--transition); overflow: hidden; position: relative;
            box-shadow: var(--shadow-sm);
        }
        .diamond-card:hover { transform: translateY(-3px); border-color: var(--primary); }
        .diamond-card.selected {
            border-color: var(--accent); box-shadow: 0 0 10px rgba(255, 123, 46, 0.4);
            transform: scale(1.05);
        }
        .diamond-img {
            width: 100%; height: 40px;
            object-fit: contain; padding: 0.4rem; margin-bottom: 4px;
            border-bottom: 1px solid #f0f0f0;
        }
        .diamond-content { padding: 0.5rem; }
        .diamond-title { font-size: 0.8rem; font-weight: 500; color: var(--text-secondary); }
        .diamond-price { font-size: 0.9rem; font-weight: 700; color: var(--accent); margin-top: 2px; }

        .user-details-container {
            background: var(--light-card); border-radius: var(--border-radius);
            padding: 1.5rem; box-shadow: var(--shadow-md);
            margin-top: -50px;
            position: relative; z-index: 10; margin-bottom: 2rem;
        }
        .id-zone-group { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
        .form-group { margin-bottom: 1rem; }
        .input-group { position: relative; }
        .input-group i {
            position: absolute; left: 15px; top: 50%; transform: translateY(-50%);
            color: var(--text-secondary); transition: var(--transition); pointer-events: none;
        }
        .form-control {
            width: 100%; padding: 0.75rem 0.75rem 0.75rem 45px; border: 1px solid #dee2e6;
            border-radius: 8px; transition: var(--transition); background-color: var(--light-input);
            color: var(--text-primary); font-size: 1rem;
        }
        .form-control:focus {
            border-color: var(--primary); background-color: var(--light-card);
            box-shadow: 0 0 0 3px rgba(106, 90, 249, 0.3);
        }
        .form-control:focus ~ i { color: var(--primary); }
        .form-control:disabled { background-color: #e9ecef; cursor: not-allowed; }

        .btn-check-user {
            width: 100%;
            padding: 0.7rem; /* <-- Made smaller */
            margin-top: 1rem;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            background: var(--danger); /* <-- Changed to red */
            color: white;
        }
        .btn-check-user:hover {
            background: var(--danger-hover); /* <-- Changed to darker red on hover */
            transform: translateY(-2px);
        }
        .btn-check-user:disabled { background: var(--secondary); cursor: not-allowed; transform: none; }
        #verified-username-container {
            margin-top: 1rem; padding: 0.75rem;
            background-color: rgba(40, 167, 69, 0.1);
            border-left: 4px solid var(--success);
            border-radius: 8px; color: #155724; font-weight: 500;
        }

        .buy-now {
            background: var(--light-card); border-radius: var(--border-radius); padding: 1.5rem;
            border-top: 3px solid var(--accent); box-shadow: var(--shadow-sm);
        }
        .buy-now h3 { font-size: 1rem; color: var(--text-secondary); text-align: center; font-weight: 500; }
        .total-price { font-size: 1.8rem; font-weight: 700; color: var(--accent); text-align: center; margin: 0.5rem 0 1rem; }

        .payment-options {
            display: grid; grid-template-columns: 1fr 1fr 1fr;
            gap: 0.75rem;
        }
        .btn-payment {
            display: flex; flex-direction: column;
            align-items: center; justify-content: center; width: 100%;
            padding: 0.75rem 0.5rem; border-radius: 8px; font-weight: 500;
            font-size: 0.75rem;
            cursor: pointer; transition: var(--transition); border: 1px solid #dee2e6;
            background-color: #fff; color: #333;
        }
        .btn-payment:hover {
            transform: translateY(-2px); box-shadow: var(--shadow-sm); border-color: var(--primary);
        }
        .btn-payment img { height: 20px; width: auto; margin-bottom: 5px; margin-right: 0; }

        .modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.6); backdrop-filter: blur(5px); z-index: 1000; display: none; }
        .confirmation-modal { position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%); background: white; padding: 2rem; border-radius: var(--border-radius); z-index: 1001; width: 90%; max-width: 400px; box-shadow: var(--shadow-md); text-align: center; display: none; }
        .order-details-list { list-style: none; padding: 0; margin-bottom: 2rem; text-align: left; }
        .order-details-list li { display: flex; justify-content: space-between; padding: 0.75rem 0; border-bottom: 1px solid #f1f3f5; font-size: 0.95rem; }
        .modal-buttons { display: flex; gap: 1rem; }
        .btn-submit, .btn-secondary { flex: 1; padding: 0.85rem; border-radius: 8px; font-weight: 600; font-size: 1rem; cursor: pointer; transition: var(--transition); }
        .btn-submit { background: var(--danger); color: white; }
        .btn-submit:hover { background: var(--danger-hover); }
        .btn-secondary { background: #e9ecef; color: var(--text-secondary); }
        .spinner { display: inline-block; width: 1em; height: 1em; border: 2px solid rgba(255,255,255,0.3); border-top-color: #fff; border-radius: 50%; animation: spin 0.8s linear infinite; margin: 0 auto; }
        @keyframes spin { to { transform: rotate(360deg); } }
        .alert { padding: 1rem; border-radius: 8px; margin-bottom: 1.5rem; font-weight: 500; display: none; }
        .alert.show { display: block; }
        .alert-danger { background-color: rgba(220, 53, 69, 0.1); color: #a52834; border-left: 4px solid var(--danger); }
        .alert-success { background-color: rgba(40, 167, 69, 0.1); color: #155724; border-left: 4px solid var(--success); }

        .mobile-footer-nav {
            position: fixed; bottom: 0; left: 0; right: 0;
            max-width: 450px; margin: 0 auto;
            background: var(--light-card); display: flex;
            justify-content: space-around; padding: 0.5rem 0;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.08);
            border-top: 1px solid #f1f3f5; z-index: 100;
        }
        .footer-link {
            display: flex; flex-direction: column; align-items: center;
            color: var(--text-secondary); text-decoration: none;
            font-size: 0.7rem; padding: 0.25rem 0.5rem; transition: color 0.2s;
        }
        .footer-link i { font-size: 1.2rem; margin-bottom: 4px; }
        .footer-link:hover, .footer-link.active { color: var(--primary); }
   