BattleBoostHub - BGMI UC & FF Diamonds Top Up
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Poppins', sans-serif;
background-color: #f8f9fa;
color: #333;
line-height: 1.6;
}
.container {
max-width: 480px;
margin: 0 auto;
padding: 15px;
}
.header {
text-align: center;
padding: 30px 0;
background-color: #ffffff;
border-bottom: 4px solid #6c5ce7;
margin-bottom: 20px;
border-radius: 0 0 15px 15px;
box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.logo {
font-size: 28px;
font-weight: 700;
color: #6c5ce7;
}
.tagline {
font-size: 16px;
color: #555;
margin-top: 8px;
}
.intro {
text-align: center;
font-size: 15px;
color: #444;
margin-bottom: 25px;
padding: 0 10px;
}
.disclaimer {
font-size: 13px;
color: #777;
text-align: center;
margin: 15px 0;
padding: 10px;
background-color: #f0f0f0;
border-radius: 8px;
}
.buttons {
display: flex;
flex-direction: column;
gap: 15px;
margin: 30px 0;
}
.btn {
display: block;
background-color: #6c5ce7;
color: white;
text-align: center;
padding: 16px;
font-size: 17px;
font-weight: 600;
border-radius: 12px;
text-decoration: none;
box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);
transition: all 0.3s;
}
.btn:hover {
background-color: #5a4fcf;
transform: translateY(-2px);
}
.btn-ff {
background-color: #ff3b30;
}
.btn-ff:hover {
background-color: #e0332a;
}
.section {
background-color: white;
padding: 20px;
border-radius: 12px;
margin-bottom: 20px;
box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}
.section h2 {
text-align: center;
font-size: 20px;
color: #333;
margin-bottom: 15px;
}
.pricing-grid {
display: grid;
grid-template-columns: 1fr;
gap: 14px;
}
.pricing-card {
background: linear-gradient(135deg, #ffffff, #f0f4ff);
border-radius: 12px;
padding: 18px;
text-align: center;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
transition: transform 0.3s, box-shadow 0.3s;
}
.pricing-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.package-name {
font-size: 20px;
font-weight: 700;
color: #333;
margin-bottom: 8px;
}
.price {
font-size: 26px;
font-weight: bold;
color: #6c5ce7;
margin-bottom: 14px;
}
.ff .price {
color: #ff3b30;
}
.purchase-btn {
background-color: #28a745;
color: white;
padding: 12px;
border: none;
border-radius: 10px;
font-size: 16px;
font-weight: 600;
cursor: pointer;
width: 100%;
transition: background-color 0.3s;
}
.purchase-btn:hover {
background-color: #218838;
}
.steps {
display: flex;
flex-direction: column;
gap: 15px;
}
.step {
display: flex;
align-items: center;
gap: 12px;
}
.step-number {
background-color: #6c5ce7;
color: white;
width: 35px;
height: 35px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: bold;
flex-shrink: 0;
}
.step-text {
font-size: 15px;
}
.features {
display: grid;
grid-template-columns: 1fr;
gap: 12px;
margin-top: 10px;
}
.feature {
background-color: #f0f4ff;
padding: 15px;
border-radius: 10px;
text-align: center;
font-size: 14px;
}
.feature strong {
color: #6c5ce7;
}
.testimonials {
display: flex;
flex-direction: column;
gap: 15px;
}
.testimonial {
background-color: #f0f4ff;
padding: 18px;
border-radius: 10px;
border-left: 4px solid #6c5ce7;
}
.testimonial-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 10px;
font-size: 13px;
color: #666;
}
.testimonial-date {
font-size: 12px;
color: #999;
}
.stars {
color: #ffc107;
font-size: 16px;
}
.testimonial-text {
font-size: 14.5px;
line-height: 1.5;
margin-bottom: 12px;
}
.testimonial-author {
text-align: right;
font-weight: 600;
color: #6c5ce7;
font-size: 14px;
}
.faq {
display: flex;
flex-direction: column;
gap: 12px;
}
.faq-item {
background-color: #f0f4ff;
padding: 15px;
border-radius: 10px;
}
.faq-question {
font-weight: 600;
font-size: 15px;
color: #6c5ce7;
margin-bottom: 8px;
}
.faq-answer {
font-size: 14px;
color: #444;
}
.footer {
text-align: center;
padding: 25px 0;
font-size: 13px;
color: #666;
border-top: 1px solid #eee;
margin-top: 30px;
}
.footer a {
color: #6c5ce7;
text-decoration: none;
margin: 0 8px;
cursor: pointer;
}
.footer a:hover {
text-decoration: underline;
}
.modal {
display: none;
position: fixed;
z-index: 1000;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgba(0,0,0,0.6);
}
.modal-content {
background-color: #fff;
margin: 10% auto;
padding: 20px;
border-radius: 12px;
width: 90%;
max-width: 500px;
max-height: 80vh;
overflow-y: auto;
box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}
.close {
color: #aaa;
float: right;
font-size: 28px;
font-weight: bold;
cursor: pointer;
}
.close:hover {
color: #000;
}
.modal h1 {
text-align: center;
font-size: 22px;
color: #6c5ce7;
margin-bottom: 10px;
}
.modal .last-updated {
text-align: center;
font-size: 13px;
color: #777;
margin-bottom: 20px;
}
.modal h2 {
font-size: 17px;
color: #6c5ce7;
margin: 20px 0 10px 0;
}
.modal p, .modal ul, .modal li {
font-size: 14px;
color: #444;
margin-bottom: 12px;
text-align: justify;
}
.modal ul {
padding-left: 20px;
}
Get instant BGMI UC and Free Fire Max Diamonds at the best prices.
Safe payment via UPI. No login or OTP required – just enter your Player ID.
We are an independent reseller. Not affiliated with Krafton or Garena.
Free Fire Max Diamonds Plans
310 Diamonds
₹250
Buy Now
520 Diamonds
₹400
Buy Now
1060 Diamonds
₹800
Buy Now
2180 Diamonds
₹1600
Buy Now
5600 Diamonds
₹4000
Buy Now
How It Works
1
Select your desired UC or Diamond package
2
Enter your correct Player ID
3
Complete payment via UPI
4
Receive top-up in your game within minutes
What Our Customers Say
Bhai pehli baar try kiya tha thoda darr lag raha tha, lekin payment karte hi 4-5 minute mein UC aa gaya. Prices achhe hain. Ab regular yahi se lunga!
- Aditya Sharma
Diamonds instant delivery mili. Koi login nahi maanga, sirf player ID daala. Bahut safe aur fast service.
- Rahul Mehta
Ek baar thoda delay hua tha evening mein, lekin support ne turant resolve kiya. Overall satisfied.
- Karan Singh
Free Fire ke liye best site mil gayi. Prices genuine aur delivery fast. Dost ko recommend kar diya.
- Sneha Patel
Frequently Asked Questions (FAQ)
Is this service safe?
Yes, 100% safe. We never ask for login, password, or OTP. Only Player ID required.
How long does delivery take?
Most orders delivered in 5-15 minutes. Peak time mein up to 30 minutes.
Wrong Player ID daal diya toh?
Please double-check before payment. Wrong ID pe top-up ho jaaye toh refund nahi milega.
Refund milta hai?
Only if delivery fail ho jaaye hamari taraf se. Successful delivery ke baad no refund.
Support kaise contact karein?
WhatsApp ya website live chat se 24/7 support available hai.
Why Choose Us
100% Safe & Secure
Trusted UPI payments. No account details needed.
Instant Delivery
Most orders completed within 5-15 minutes.
Best Prices
Competitive rates with no hidden charges.
24/7 Support
Live chat and WhatsApp support available.
function openModal(type) {
const modal = document.getElementById('policyModal');
const body = document.getElementById('modalBody');
let content = '';
if (type === 'terms') {
content = `
Terms of Service
Last Updated: December 20, 2025
By using BattleBoostHub, you agree to these Terms of Service.
1. Service Description
We are an independent reseller of in-game currencies for BGMI and Free Fire Max. Not affiliated with Krafton or Garena.
2. Eligibility
You must be 18+ or have parental consent to use this service.
3. Ordering & Payment
- Correct Player ID is your responsibility.
- Payments via secure UPI gateways.
- Order final after payment confirmation.
4. Delivery
Delivery within 5-30 minutes. Delays possible during peak hours.
5. Prohibited Activities
No fraud, chargebacks, or misuse of service.
6. Liability
We are not responsible for account bans or game-related issues.
`;
} else if (type === 'privacy') {
content = `
Privacy Policy
Last Updated: December 20, 2025
We value your privacy.
Data Collected
Only Player ID and transaction details. No login/password stored.
Use of Data
Solely for processing your order.
Security
All payments encrypted. No sensitive data stored.
`;
} else if (type === 'refund') {
content = `
Refund Policy
Last Updated: December 20, 2025
Eligible for Refund
- Non-delivery due to our error (within 24 hours).
- Wrong amount delivered.
- Payment deducted but order not processed.
Not Eligible
- Successful delivery to provided ID.
- Wrong Player ID entered.
- Change of mind.
- Account issues after delivery.
Process
Contact support within 24 hours. Refund in 3-7 days.
`;
}
body.innerHTML = content;
modal.style.display = 'block';
}
function closeModal() {
document.getElementById('policyModal').style.display = 'none';
}
window.onclick = function(event) {
const modal = document.getElementById('policyModal');
if (event.target === modal) {
modal.style.display = 'none';
}
}