@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Poppins:wght@300;400;600&display=swap');

:root {
    --dark: #0a0a0b;
    --neon: #facc15;
    --glass: rgba(255, 255, 255, 0.05);
    --text: #e2e8f0;
    --wa: #22c55e;
    --err: #ef4444;
}

* { margin:0; padding:0; box-sizing:border-box; font-family: 'Poppins', sans-serif; }
body { background: var(--dark); color: var(--text); overflow-x: hidden; }
.hidden { display: none !important; }

/* Header */
header { padding: 15px 5%; position: sticky; top:0; z-index: 2000; }
.glass-nav { 
    background: rgba(15, 15, 15, 0.85); backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.1); border-radius: 50px;
    padding: 12px 30px; display: flex; justify-content: space-between; align-items: center;
}
.logo-area { display: flex; align-items: center; cursor: pointer; }
.logo-img { height: 40px; margin-right: 15px; border-radius: 50%; border: 2px solid var(--neon); }
.glow-text { font-family: 'Orbitron'; font-size: 1.1rem; color: var(--neon); letter-spacing: 2px; text-shadow: 0 0 10px var(--neon); }

.nav-links { display: flex; list-style: none; gap: 20px; }
.nav-links li { font-size: 0.8rem; cursor: pointer; text-transform: uppercase; font-weight: 600; transition: 0.3s; }
.nav-links li:hover { color: var(--neon); }

/* Hero Engine */
.hero-engine { display: flex; height: 75vh; gap: 15px; padding: 20px 5%; }
.main-slider { flex: 3; border-radius: 25px; overflow: hidden; position: relative; border: 1px solid rgba(255,255,255,0.1); }
.main-slider img { width: 100%; height: 100%; object-fit: cover; transition: 1s ease-in-out; }
.hero-overlay { position: absolute; bottom: 40px; left: 40px; z-index: 5; }
.hero-overlay h2 { font-family: 'Orbitron'; font-size: 3rem; margin-bottom: 10px; }

.mini-engine { flex: 1; display: flex; flex-direction: column; gap: 15px; }
.mini-box { flex: 1; border-radius: 25px; overflow: hidden; position: relative; border: 1px solid rgba(255,255,255,0.1); }
.mini-box img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.mini-label { position: absolute; bottom: 15px; left: 15px; background: var(--neon); color: #000; padding: 5px 12px; font-size: 0.7rem; font-weight: bold; border-radius: 5px; }

/* Cyber Elements */
.cyber-scroller { background: #000; padding: 12px 0; border-top: 1px solid #222; border-bottom: 1px solid #222; overflow: hidden; }
.scroll-content { display: inline-block; white-space: nowrap; animation: scroll 35s linear infinite; color: var(--neon); font-family: 'Orbitron'; font-size: 0.8rem; }
@keyframes scroll { from { transform: translateX(100%); } to { transform: translateX(-100%); } }

.neon-btn { 
    background: transparent; border: 2px solid var(--neon); color: var(--neon); 
    padding: 12px 30px; border-radius: 50px; font-family: 'Orbitron'; cursor: pointer; transition: 0.3s;
}
.neon-btn:hover { background: var(--neon); color: #000; box-shadow: 0 0 20px var(--neon); }

/* Grids */
.content-sec { padding: 80px 5%; }
.sec-heading { font-family: 'Orbitron'; text-align: center; font-size: 2.2rem; margin-bottom: 50px; color: var(--neon); }
.futuristic-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 30px; }

.p-card { background: var(--glass); border-radius: 20px; overflow: hidden; border: 1px solid rgba(255,255,255,0.1); transition: 0.3s; }
.p-card img { width: 100%; height: 260px; object-fit: cover; transition: 0.5s; }
.p-card:hover { border-color: var(--neon); transform: translateY(-5px); }
.p-info { padding: 20px; text-align: center; }

.glow-card { background: var(--glass); padding: 40px 20px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.1); text-align: center; transition: 0.3s; cursor: pointer; }
.glow-card i { font-size: 3rem; color: var(--neon); margin-bottom: 20px; }
.glow-card:hover { border-color: var(--neon); background: rgba(250, 204, 21, 0.05); }

/* Support Hub */
.support-station { padding: 80px 5%; background: #000; }
.support-flex { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.sup-btn { text-decoration: none; padding: 25px 45px; border-radius: 20px; display: flex; align-items: center; gap: 20px; min-width: 350px; border: 1px solid rgba(255,255,255,0.1); transition: 0.4s; }
.wa-neon { color: var(--wa); border-color: var(--wa); }
.wa-neon:hover { background: var(--wa); color: white; box-shadow: 0 0 30px var(--wa); }
.mail-neon { color: var(--err); border-color: var(--err); }
.mail-neon:hover { background: var(--err); color: white; box-shadow: 0 0 30px var(--err); }

/* Sidebar */
.cyber-sidebar { position: fixed; top:0; right: -450px; width: 450px; height: 100%; background: #080809; z-index: 3000; transition: 0.5s; border-left: 2px solid var(--neon); padding: 30px; display: flex; flex-direction: column; }
.cyber-sidebar.active { right: 0; }
.sidebar-head { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #222; padding-bottom: 20px; }
.sidebar-head button { background: none; border: none; color: white; font-size: 2.5rem; cursor: pointer; }
.sidebar-body { flex:1; overflow-y: auto; padding: 20px 0; }
.checkout-main-btn { width: 100%; padding: 18px; background: var(--neon); color: #000; font-family: 'Orbitron'; font-weight: bold; border: none; border-radius: 10px; cursor: pointer; }

/* Social Hub */
.social-terminal { padding: 60px 5%; text-align: center; border-top: 1px solid #111; }
.terminal-icons { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; margin-top: 30px; }
.t-icon { width: 50px; height: 50px; background: var(--glass); display: flex; align-items: center; justify-content: center; border-radius: 50%; color: white; text-decoration: none; border: 1px solid rgba(255,255,255,0.1); transition: 0.3s; }
.t-icon:hover { background: var(--neon); color: #000; transform: scale(1.2); }

/* Policy & Footer */
.glass-policy { padding: 100px 10%; line-height: 1.8; }
.glass-policy h2 { font-family: 'Orbitron'; color: var(--neon); margin-bottom: 25px; }
.glass-policy p { color: #cbd5e1; margin-bottom: 20px; }

footer { padding: 80px 5% 40px; border-top: 1px solid #111; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 50px; }
.f-col h4 { font-family: 'Orbitron'; color: var(--neon); margin-bottom: 20px; }
.f-col li { list-style: none; margin-bottom: 12px; cursor: pointer; color: #94a3b8; font-size: 0.9rem; }
.copyright-section { text-align: center; margin-top: 80px; font-size: 0.8rem; color: #475569; line-height: 2; }
.copyright-section a { color: var(--neon); text-decoration: none; font-weight: bold; }

@media (max-width: 768px) {
    .hero-engine { flex-direction: column; height: auto; }
    .main-slider { height: 40vh; }
    .mini-engine { flex-direction: row; height: 15vh; }
    .cyber-sidebar { width: 100%; right: -100%; }
}