>!DOCTYPE html>
>html lang="en">
>head>
>meta charset="UTF-8">
>meta name="viewport" content="width=device-width, initial-scale=1.0">
>title>BXGaming Elevate Your Game>/title>
>meta name="description" content="BXGaming is the Bronx-born gaming platform for streams, esports, reviews, and community. Level up with BX.">
>link rel="preconnect" href="https://fonts.googleapis.com">
>link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;700;900&family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
>style>
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
--bg-primary: #0a0a0f;
--bg-secondary: #111118;
--bg-card: #16161f;
--bg-card-hover: #1c1c28;
--accent-blue: #1a7aff;
--accent-purple: #6c3ce0;
--accent-cyan: #00d4ff;
--text-primary: #f0f0f5;
--text-secondary: #8888a0;
--text-muted: #55556a;
--gradient-brand: linear-gradient(135deg, #1a7aff 0%, #6c3ce0 50%, #00d4ff 100%);
--gradient-glow: linear-gradient(135deg, rgba(26,122,255,0.15) 0%, rgba(108,60,224,0.15) 100%);
--border: rgba(255,255,255,0.06);
--font-display: 'Orbitron', sans-serif;
--font-body: 'Inter', sans-serif;
}
html { scroll-behavior: smooth; }
body {
font-family: var(--font-body);
background: var(--bg-primary);
color: var(--text-primary);
overflow-x: hidden;
line-height: 1.6;
}
.glow-orb {
position: fixed;
border-radius: 50%;
filter: blur(120px);
opacity: 0.12;
pointer-events: none;
z-index: 0;
}
.glow-orb.blue { width: 600px; height: 600px; background: var(--accent-blue); top: -200px; left: -100px; }
.glow-orb.purple { width: 500px; height: 500px; background: var(--accent-purple); bottom: 10%; right: -150px; }
.glow-orb.cyan { width: 400px; height: 400px; background: var(--accent-cyan); top: 50%; left: 30%; }
nav {
position: fixed; top: 0; left: 0; right: 0; z-index: 100;
background: rgba(10,10,15,0.85);
backdrop-filter: blur(20px);
border-bottom: 1px solid var(--border);
padding: 0 2rem;
}
.nav-inner {
max-width: 1280px; margin: 0 auto;
display: flex; align-items: center; justify-content: space-between;
height: 72px;
}
.nav-logo {
font-family: var(--font-display);
font-weight: 900; font-size: 1.5rem;
background: var(--gradient-brand);
-webkit-background-clip: text; -webkit-text-fill-color: transparent;
letter-spacing: 2px;
}
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
color: var(--text-secondary); text-decoration: none;
font-size: 0.875rem; font-weight: 500; letter-spacing: 0.5px;
text-transform: uppercase; transition: color 0.3s;
}
.nav-links a:hover { color: var(--accent-blue); }
.nav-cta {
background: var(--gradient-brand);
color: #fff; border: none; padding: 0.65rem 1.5rem;
border-radius: 8px; font-weight: 600; font-size: 0.875rem;
cursor: pointer; transition: transform 0.2s, box-shadow 0.3s;
text-transform: uppercase; letter-spacing: 1px;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(26,122,255,0.3); }
.mobile-menu { display: none; background: none; border: none; color: var(--text-primary); font-size: 1.5rem; cursor: pointer; }
.hero {
min-height: 100vh; display: flex; align-items: center; justify-content: center;
text-align: center; padding: 8rem 2rem 4rem; position: relative;
}
.hero-bg {
position: absolute; inset: 0;
background:
radial-gradient(ellipse at 50% 0%, rgba(26,122,255,0.08) 0%, transparent 60%),
radial-gradient(ellipse at 80% 80%, rgba(108,60,224,0.06) 0%, transparent 50%);
}
.hero-grid {
position: absolute; inset: 0;
background-image:
linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
background-size: 60px 60px;
mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}
.hero-content { position: relative; z-index: 1; max-width: 900px; }
.hero-badge {
display: inline-flex; align-items: center; gap: 0.5rem;
background: var(--gradient-glow); border: 1px solid rgba(26,122,255,0.2);
padding: 0.5rem 1.25rem; border-radius: 100px;
font-size: 0.8rem; font-weight: 500; color: var(--accent-cyan);
text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 2rem;
}
.hero-badge .pulse {
width: 8px; height: 8px; background: #00ff88;
border-radius: 50%; animation: pulse 2s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.hero h1 {
font-family: var(--font-display);
font-size: clamp(2.5rem, 7vw, 5rem);
font-weight: 900; line-height: 1.1;
margin-bottom: 1.5rem; letter-spacing: -1px;
}
.hero h1 .gradient {
background: var(--gradient-brand);
-webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero p {
font-size: 1.2rem; color: var(--text-secondary);
max-width: 600px; margin: 0 auto 2.5rem; line-height: 1.7;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-primary {
background: var(--gradient-brand); color: #fff; border: none;
padding: 1rem 2.5rem; border-radius: 12px; font-weight: 700;
font-size: 1rem; cursor: pointer; transition: all 0.3s;
text-transform: uppercase; letter-spacing: 1px;
text-decoration: none; display: inline-block;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(26,122,255,0.35); }
.btn-secondary {
background: rgba(255,255,255,0.05); color: var(--text-primary);
border: 1px solid var(--border); padding: 1rem 2.5rem; border-radius: 12px;
font-weight: 600; font-size: 1rem; cursor: pointer; transition: all 0.3s;
text-transform: uppercase; letter-spacing: 1px;
text-decoration: none; display: inline-block;
}
.btn-secondary:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.12); }
.stats-bar {
display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
max-width: 1280px; margin: -3rem auto 0; position: relative; z-index: 2;
background: var(--border); border-radius: 16px; overflow: hidden;
}
.stat-item {
background: var(--bg-card); padding: 2rem; text-align: center;
}
.stat-item .number {
font-family: var(--font-display); font-size: 2rem;
font-weight: 700; background: var(--gradient-brand);
-webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-item .label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-top: 0.25rem; }
section { padding: 6rem 2rem; position: relative; }
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-label {
font-family: var(--font-display); font-size: 0.75rem;
color: var(--accent-blue); text-transform: uppercase;
letter-spacing: 3px; margin-bottom: 0.75rem;
}
.section-title {
font-family: var(--font-display); font-size: clamp(1.75rem, 4vw, 2.75rem);
font-weight: 700; margin-bottom: 1rem; line-height: 1.2;
}
.section-subtitle {
font-size: 1.1rem; color: var(--text-secondary);
max-width: 600px; line-height: 1.7; margin-bottom: 3rem;
}
.features-grid {
display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 1.5rem;
}
.feature-card {
background: var(--bg-card); border: 1px solid var(--border);
border-radius: 16px; padding: 2rem; transition: all 0.3s;
position: relative; overflow: hidden;
}
.feature-card::before {
content: ''; position: absolute; top: 0; left: 0; right: 0;
height: 2px; background: var(--gradient-brand); opacity: 0;
transition: opacity 0.3s;
}
.feature-card:hover { background: var(--bg-card-hover); transform: translateY(-4px); border-color: rgba(26,122,255,0.15); }
.feature-card:hover::before { opacity: 1; }
.feature-icon {
width: 48px; height: 48px; border-radius: 12px;
background: var(--gradient-glow); border: 1px solid rgba(26,122,255,0.15);
display: flex; align-items: center; justify-content: center;
font-size: 1.5rem; margin-bottom: 1.25rem;
}
.feature-card h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 600; margin-bottom: 0.75rem; letter-spacing: 0.5px; }
.feature-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; }
.store-grid {
display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 1.5rem;
}
.store-card {
background: var(--bg-card); border: 1px solid var(--border);
border-radius: 16px; overflow: hidden; transition: all 0.3s;
}
.store-card:hover { transform: translateY(-4px); border-color: rgba(26,122,255,0.15); }
.store-img {
height: 200px; background: var(--gradient-glow);
display: flex; align-items: center; justify-content: center;
font-size: 3rem; position: relative;
}
.store-img .tag {
position: absolute; top: 12px; right: 12px;
background: var(--accent-blue); color: #fff;
padding: 0.25rem 0.75rem; border-radius: 100px;
font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
}
.store-body { padding: 1.5rem; }
.store-body h3 { font-family: var(--font-display); font-size: 0.95rem; font-weight: 600; margin-bottom: 0.5rem; }
.store-body .price { font-size: 1.25rem; font-weight: 700; color: var(--accent-cyan); }
.store-body .price span { font-size: 0.85rem; color: var(--text-muted); text-decoration: line-through; margin-left: 0.5rem; font-weight: 400; }
.store-body .meta { display: flex; gap: 0.75rem; margin-top: 0.75rem; font-size: 0.8rem; color: var(--text-muted); }
.community-section { background: var(--bg-secondary); }
.community-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.community-features { display: flex; flex-direction: column; gap: 1.5rem; }
.comm-feature {
display: flex; gap: 1rem; align-items: flex-start;
}
.comm-icon {
width: 40px; height: 40px; min-width: 40px; border-radius: 10px;
background: var(--gradient-glow); border: 1px solid rgba(26,122,255,0.12);
display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.comm-feature h4 { font-family: var(--font-display); font-size: 0.9rem; font-weight: 600; margin-bottom: 0.25rem; }
.comm-feature p { font-size: 0.85rem; color: var(--text-secondary); }
.community-visual {
background: var(--bg-card); border: 1px solid var(--border);
border-radius: 20px; padding: 2.5rem; text-align: center;
position: relative; overflow: hidden;
}
.community-visual::after {
content: ''; position: absolute; inset: 0;
background: radial-gradient(ellipse at 50% 100%, rgba(26,122,255,0.08), transparent 60%);
}
.community-visual .big-number {
font-family: var(--font-display); font-size: 4rem;
font-weight: 900; background: var(--gradient-brand);
-webkit-background-clip: text; -webkit-text-fill-color: transparent;
position: relative; z-index: 1;
}
.community-visual .big-label {
font-size: 1rem; color: var(--text-secondary); margin-top: 0.5rem;
position: relative; z-index: 1;
}
.cta-section {
text-align: center; padding: 8rem 2rem;
background: radial-gradient(ellipse at 50% 50%, rgba(26,122,255,0.06), transparent 60%);
}
.cta-section h2 {
font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.5rem);
font-weight: 900; margin-bottom: 1rem;
}
.cta-section p { font-size: 1.1rem; color: var(--text-secondary); margin-bottom: 2.5rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.email-form {
display: flex; gap: 0.75rem; max-width: 500px; margin: 0 auto;
flex-wrap: wrap; justify-content: center;
}
.email-form input {
flex: 1; min-width: 250px; padding: 1rem 1.5rem;
background: var(--bg-card); border: 1px solid var(--border);
border-radius: 12px; color: var(--text-primary); font-size: 1rem;
font-family: var(--font-body); outline: none; transition: border-color 0.3s;
}
.email-form input::placeholder { color: var(--text-muted); }
.email-form input:focus { border-color: var(--accent-blue); }
footer {
border-top: 1px solid var(--border); padding: 3rem 2rem;
}
.footer-inner {
max-width: 1280px; margin: 0 auto;
display: flex; justify-content: space-between; align-items: center;
flex-wrap: wrap; gap: 1rem;
}
.footer-logo {
font-family: var(--font-display); font-weight: 900; font-size: 1.25rem;
background: var(--gradient-brand);
-webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.footer-links { display: flex; gap: 1.5rem; list-style: none; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.85rem; transition: color 0.3s; }
.footer-links a:hover { color: var(--text-primary); }
.footer-copy { color: var(--text-muted); font-size: 0.8rem; }
.fade-up {
opacity: 0; transform: translateY(30px);
transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
@media (max-width: 768px) {
.nav-links { display: none; }
.mobile-menu { display: block; }
.stats-bar { grid-template-columns: repeat(2, 1fr); }
.community-grid { grid-template-columns: 1fr; }
.hero h1 { font-size: 2.25rem; }
}
>/style>
>/head>
>body>
>div class="glow-orb blue">>/div>
>div class="glow-orb purple">>/div>
>div class="glow-orb cyan">>/div>
>nav>
>div class="nav-inner">
>div class="nav-logo">BXGAMING>/div>
>ul class="nav-links">
>li>>a href="#features">Platform>/a>>/li>
>li>>a href="#store">Store>/a>>/li>
>li>>a href="#community">Community>/a>>/li>
>li>>a href="#join">Join>/a>>/li>
>/ul>
>button class="nav-cta">Early Access>/button>
>button class="mobile-menu" onclick="document.querySelector('.nav-links').classList.toggle('show')">☰>/button>
>/div>
>/nav>
>section class="hero">
>div class="hero-bg">>/div>
>div class="hero-grid">>/div>
>div class="hero-content">
>div class="hero-badge">
>span class="pulse">>/span>
Now Live Bronx-Born Gaming
>/div>
>h1>ELEVATE YOUR>br>>span class="gradient">GAME>/span>>/h1>
>p>The gaming platform built from the Bronx up. Streams, esports, reviews, a curated store, and a community that plays different.>/p>
>div class="hero-actions">
>a href="#join" class="btn-primary">Join BXGaming>/a>
>a href="#features" class="btn-secondary">Explore Platform>/a>
>/div>
>/div>
>/section>
>div class="stats-bar fade-up">
>div class="stat-item">
>div class="number">24/7>/div>
>div class="label">Live Streams>/div>
>/div>
>div class="stat-item">
>div class="number">500+>/div>
>div class="label">Game Titles>/div>
>/div>
>div class="stat-item">
>div class="number">10K+>/div>
>div class="label">Community>/div>
>/div>
>div class="stat-item">
>div class="number">$0>/div>
>div class="label">To Start>/div>
>/div>
>/div>
>section id="features">
>div class="section-inner">
>div class="section-label">Platform>/div>
>h2 class="section-title">Everything a gamer needs.>br>Nothing they don't.>/h2>
>p class="section-subtitle">BXGaming brings streams, competitive play, reviews, and shopping under one roof designed for players who move different.>/p>
>div class="features-grid">
>div class="feature-card fade-up">
>div class="feature-icon">🎮>/div>
>h3>Live Streaming>/h3>
>p>Watch and broadcast in ultra-low latency. Built-in chat, reactions, and clip creation for every stream.>/p>
>/div>
>div class="feature-card fade-up">
>div class="feature-icon">⚔️>/div>
>h3>Esports Hub>/h3>
>p>Compete in ranked tournaments, climb leaderboards, and earn prizes. From casual to pro-level play.>/p>
>/div>
>div class="feature-card fade-up">
>div class="feature-icon">⭐>/div>
>h3>Game Reviews>/h3>
>p>Honest, community-driven reviews from real players. No paid scores just raw takes on every title.>/p>
>/div>
>div class="feature-card fade-up">
>div class="feature-icon">🛒>/div>
>h3>BX Store>/h3>
>p>Curated gear, accessories, and digital goods. Exclusive BXGaming merch drops and member-only deals.>/p>
>/div>
>div class="feature-card fade-up">
>div class="feature-icon">🗣️>/div>
>h3>Creator Tools>/h3>
>p>Overlay builder, analytics dashboard, and monetization everything creators need to grow their channel.>/p>
>/div>
>div class="feature-card fade-up">
>div class="feature-icon">🥇>/div>
>h3>Pro Membership>/h3>
>p>Unlock exclusive content, early access to drops, ad-free viewing, and priority tournament entry.>/p>
>/div>
>/div>
>/div>
>/section>
>section id="store" style="background: var(--bg-secondary);">
>div class="section-inner">
>div class="section-label">Store>/div>
>h2 class="section-title">Gear up. Play hard.>/h2>
>p class="section-subtitle">Premium gaming gear and exclusive BXGaming merchandise curated for the culture.>/p>
>div class="store-grid">
>div class="store-card fade-up">
>div class="store-img" style="background: linear-gradient(135deg, #1a1a2e, #16213e);">
🎧
>span class="tag">New>/span>
>/div>
>div class="store-body">
>h3>BX Pro Headset>/h3>
>div class="price">$89.99 >span>$129.99>/span>>/div>
>div class="meta">>span>7.1 Surround>/span>>span>Wireless>/span>>span>RGB>/span>>/div>
>/div>
>/div>
>div class="store-card fade-up">
>div class="store-img" style="background: linear-gradient(135deg, #0f0f1a, #1a0a2e);">
🎮
>span class="tag">Hot>/span>
>/div>
>div class="store-body">
>h3>BX Elite Controller>/h3>
>div class="price">$69.99 >span>$99.99>/span>>/div>
>div class="meta">>span>Hall Effect>/span>>span>Custom Grips>/span>>span>BT 5.3>/span>>/div>
>/div>
>/div>
>div class="store-card fade-up">
>div class="store-img" style="background: linear-gradient(135deg, #111122, #0a1628);">
👕
>span class="tag">Drop>/span>
>/div>
>div class="store-body">
>h3>BXGaming Season Tee>/h3>
>div class="price">$34.99>/div>
>div class="meta">>span>Premium Cotton>/span>>span>Limited Run>/span>>/div>
>/div>
>/div>
>div class="store-card fade-up">
>div class="store-img" style="background: linear-gradient(135deg, #151525, #1a1035);">
💻
>span class="tag">Pro>/span>
>/div>
>div class="store-body">
>h3>BX XL Desk Pad>/h3>
>div class="price">$24.99>/div>
>div class="meta">>span>900x400mm>/span>>span>RGB Edge>/span>>span>Anti-Slip>/span>>/div>
>/div>
>/div>
>/div>
>/div>
>/section>
>section id="community" class="community-section">
>div class="section-inner">
>div class="community-grid">
>div>
>div class="section-label">Community>/div>
>h2 class="section-title">Built by gamers.>br>Run by the Bronx.>/h2>
>p class="section-subtitle">BXGaming isn't just a platform it's a movement. Where culture meets competition.>/p>
>div class="community-features">
>div class="comm-feature fade-up">
>div class="comm-icon">💬>/div>
>div>
>h4>Squad Rooms>/h4>
>p>Private voice and text channels for your crew. Plan sessions, share clips, and build your squad.>/p>
>/div>
>/div>
>div class="comm-feature fade-up">
>div class="comm-icon">🏆>/div>
>div>
>h4>Weekly Tournaments>/h4>
>p>Free-to-enter competitive events with real prizes. Every week, a new game, a new champion.>/p>
>/div>
>/div>
>div class="comm-feature fade-up">
>div class="comm-icon">🚀>/div>
>div>
>h4>Creator Launchpad>/h4>
>p>Tools, mentorship, and exposure for emerging content creators. Your audience starts here.>/p>
>/div>
>/div>
>/div>
>/div>
>div class="community-visual fade-up">
>div class="big-number">BX>/div>
>div class="big-label">The Bronx plays different.>/div>
>/div>
>/div>
>/div>
>/section>
>section id="join" class="cta-section">
>h2>READY TO >span style="background: var(--gradient-brand); -webkit-background-clip: text; -webkit-text-fill-color: transparent;">PLAY?>/span>>/h2>
>p>Join the BXGaming early access list and be first in when we go live.>/p>
>div class="email-form">
>input type="email" placeholder="Enter your email">
>button class="btn-primary" style="padding: 1rem 2rem;">Get Early Access>/button>
>/div>
>/section>
>footer>
>div class="footer-inner">
>div class="footer-logo">BXGAMING>/div>
>ul class="footer-links">
>li>>a href="#features">Platform>/a>>/li>
>li>>a href="#store">Store>/a>>/li>
>li>>a href="#community">Community>/a>>/li>
>li>>a href="#">Discord>/a>>/li>
>li>>a href="#">Twitter>/a>>/li>
>/ul>
>div class="footer-copy">© 2026 BXGaming. Bronx, NY. All rights reserved.>/div>
>/div>
>/footer>
>script>
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.classList.add('visible');
}
});
}, { threshold: 0.1, rootMargin: '0px 0px -50px 0px' });
document.querySelectorAll('.fade-up').forEach(el => observer.observe(el));
document.addEventListener('mousemove', (e) => {
const x = e.clientX / window.innerWidth;
const y = e.clientY / window.innerHeight;
document.querySelector('.glow-orb.blue').style.transform = `translate(${x * 30}px, ${y * 30}px)`;
document.querySelector('.glow-orb.purple').style.transform = `translate(${-x * 20}px, ${-y * 20}px)`;
});
>/script>
>/body>
>/html>