/* =========================
GLOBAL RESET
========================= */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:'Inter',sans-serif;
color:#1b2430;
line-height:1.6;
animation:pagefade .6s ease;

/* PIXEL GRID BACKGROUND */
background:
linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px),
#f7f9fc;
background-size:40px 40px;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

section{
padding:120px 0;
}

/* =========================
RETRO SCANLINES
========================= */

body::after{
content:"";
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
pointer-events:none;

background:repeating-linear-gradient(
0deg,
rgba(0,0,0,0.04) 0px,
rgba(0,0,0,0.04) 1px,
transparent 1px,
transparent 3px
);

mix-blend-mode:overlay;
animation:scanmove 8s linear infinite;
z-index:9999;
}

@keyframes scanmove{
0%{transform:translateY(0)}
100%{transform:translateY(10px)}
}

/* =========================
TYPOGRAPHY
========================= */

h1,h2,h3,h4{
font-family:'Montserrat',sans-serif;
font-weight:700;
color:#0a1f44;
}

h1{
font-size:52px;
margin-bottom:20px;
}

h2{
font-size:34px;
margin-bottom:40px;
}

p{
color:#4a5568;
}

.accent{
color:#0066ff;
}

/* =========================
BUTTONS
========================= */

.btn-primary{
display:inline-block;
padding:14px 30px;
background:#0066ff;
color:white;
border-radius:6px;
text-decoration:none;
font-weight:600;
transition:.25s;
}

.btn-primary:hover{
background:#004bcc;

box-shadow:
0 0 5px #0066ff,
0 0 15px #0066ff,
0 0 25px #0066ff;
}

.btn-secondary{
padding:14px 30px;
border:1px solid #0066ff;
color:#0066ff;
border-radius:6px;
text-decoration:none;
}

.btn-secondary:hover{
background:#eef3ff;
}

/* =========================
HERO
========================= */

.hero{
background:linear-gradient(135deg,#ffffff,#eaf2ff);
text-align:center;
padding:160px 0;
position:relative;
overflow:hidden;
}

.hero-buttons{
margin-top:25px;
display:flex;
justify-content:center;
gap:15px;
flex-wrap:wrap;
}

.trust-row{
display:flex;
justify-content:center;
gap:30px;
margin-top:30px;
font-size:14px;
color:#2b6cb0;
flex-wrap:wrap;
}

/* =========================
HERO CONSOLE FLOAT
========================= */

.hero-consoles{
margin-top:50px;
display:flex;
justify-content:center;
gap:40px;
}

.console-float{
width:120px;
animation:float 5s ease-in-out infinite;
transition:.3s;
}

.console-float:hover{
transform:scale(1.1) rotate(-2deg);
filter:
drop-shadow(0 0 10px #00c3ff)
drop-shadow(0 0 20px #00c3ff);
}

.console-float.delay{animation-delay:1s}
.console-float.delay2{animation-delay:2s}

@keyframes float{
0%{transform:translateY(0)}
50%{transform:translateY(-15px)}
100%{transform:translateY(0)}
}

/* =========================
LIVE SALES POPUP
========================= */

#sales-popup{
position:fixed;
bottom:20px;
left:20px;
background:white;
padding:12px 20px;
border-radius:8px;
box-shadow:0 5px 15px rgba(0,0,0,.1);
font-size:14px;
z-index:1000;
}

/* =========================
STOCK GRID
========================= */

.stock-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:25px;
text-align:center;
}

.stock-card{
background:white;
padding:30px;
border-radius:10px;
border:1px solid #e3eaf5;
}

.stock-number{
font-size:42px;
color:#0066ff;
margin:10px 0;
}

/* =========================
CAROUSEL
========================= */

.carousel{
display:flex;
overflow-x:auto;
gap:25px;
scroll-snap-type:x mandatory;
padding-bottom:10px;
}

.carousel-card{
min-width:260px;

/* GLASSMORPHISM */

background:rgba(255,255,255,.7);
backdrop-filter:blur(12px);

border-radius:12px;
border:1px solid rgba(255,255,255,.3);

padding:20px;
scroll-snap-align:start;
text-align:center;

transition:.3s;
}

.carousel-card:hover{
transform:translateY(-6px);

box-shadow:
0 0 10px rgba(0,102,255,.3),
0 15px 40px rgba(0,102,255,.15);
}

.carousel-card img{
width:100%;
margin-bottom:15px;
}

/* =========================
PLATFORM GRID
========================= */

.platform-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:25px;
}

.platform-card{
background:white;
padding:60px 20px;
border-radius:12px;
border:1px solid #e3eaf5;
text-align:center;
text-decoration:none;
color:#1b2430;
transition:.3s;
}

.platform-card:hover{
border-color:#0066ff;

box-shadow:
0 0 10px rgba(0,102,255,.4),
0 0 20px rgba(0,102,255,.3);
}

/* =========================
PRODUCT GRID
========================= */

.product-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;
}

.product-card{

background:rgba(255,255,255,.7);
backdrop-filter:blur(12px);

border-radius:12px;
border:1px solid rgba(255,255,255,.3);

padding-bottom:25px;
transition:.3s;
position:relative;
text-align:center;
}

.product-card:hover{
transform:translateY(-6px);

box-shadow:
0 0 10px rgba(0,102,255,.3),
0 15px 40px rgba(0,102,255,.15);
}

.product-card img{
width:100%;
border-bottom:1px solid #eef3f9;
}

.product-price{
font-size:20px;
color:#0066ff;
margin:10px 0;
}

.stars{
color:#f4b400;
}

/* =========================
PREMIUM SHOWCASE
========================= */

.premium-showcase{
background:#0c1424;
color:white;
}

.premium-console{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:center;
}

.premium-console img{
width:100%;
transition:.4s;
}

.premium-console img:hover{
filter:
drop-shadow(0 0 20px #0066ff)
drop-shadow(0 0 40px #0066ff);

transform:scale(1.03);
}

.premium-details ul{
list-style:none;
margin-bottom:20px;
}

.premium-details li{
margin-bottom:10px;
}

/* =========================
CONSOLE BUILDER
========================= */

.builder-section form{
max-width:400px;
margin:auto;
display:flex;
flex-direction:column;
gap:15px;
}

select,input{
padding:12px;
border-radius:6px;
border:1px solid #dbe4f0;
}

/* =========================
TESTIMONIALS
========================= */

.testimonial-slider{
max-width:600px;
margin:auto;
text-align:center;
}

.testimonial{
display:none;
}

.testimonial.active{
display:block;
}

.stars{
color:#f4b400;
}

/* =========================
BLOG GRID
========================= */

.blog-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.blog-card{
background:white;
padding:25px;
border-radius:10px;
border:1px solid #e3eaf5;
text-decoration:none;
color:#1b2430;
transition:.3s;
}

.blog-card:hover{
box-shadow:0 10px 30px rgba(0,0,0,.08);
}

/* =========================
EMAIL SECTION
========================= */

.email-section{
text-align:center;
background:linear-gradient(135deg,#0066ff,#003b8f);
color:white;
}

.email-section input{
padding:12px;
border:none;
border-radius:6px;
margin-right:10px;
}

/* =========================
PAGE LOAD ANIMATION
========================= */

@keyframes pagefade{
from{
opacity:0;
filter:blur(3px);
}
to{
opacity:1;
filter:blur(0);
}
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:900px){

.hero h1{
font-size:36px;
}

.hero-consoles{
flex-direction:column;
}

.premium-console{
grid-template-columns:1fr;
}

.carousel{
overflow-x:scroll;
}

}
