/* =========================
GLOBAL
========================= */

html, body{
overflow-x:hidden;
max-width:100%;
margin:0;
padding:0;
font-family:Inter, Arial, sans-serif;
background:#05070a;
color:white;
overflow-x:hidden;
}

/* grid background */

body::before{
content:"";
position:fixed;
inset:0;

background-image:
linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);

background-size:80px 80px;
pointer-events:none;
z-index:-10;
}

/* container */

.container{
max-width:1200px;
margin:auto;
padding:0 20px;
}


/* =========================
HEADER
========================= */

.header{
padding:22px 40px;
border-bottom:1px solid rgba(255,255,255,0.05);
}

.header-container{
display:flex;
align-items:center;
justify-content:space-between;
}

.logo a{
color:white;
text-decoration:none;
font-weight:600;
letter-spacing:2px;
}

.nav a{
font-size:19px;
margin:0 24px;
font-weight:500;
letter-spacing:0.4px;
color:#9ca3af;
text-decoration:none;
transition:0.2s;
}

.nav a:hover{
color:white;
}

.nav a:link{
color:#9ca3af;
}

.nav a:visited{
color:#9ca3af;
}

.nav a:hover{
color:white;
}

.nav a:active{
color:white;
}

.nav a:hover{
color:white;
}

.wallet-btn{
background:transparent;
border:1px solid rgba(255,255,255,0.2);
padding:8px 16px;
color:white;
border-radius:6px;
cursor:pointer;
}

.wallet-btn:hover{
border-color:white;
background:rgba(255,255,255,0.05);
}


/* =========================
HERO
========================= */

.hero{
position:relative;
padding:180px 20px;
text-align:center;
}

.hero-glow{
position:absolute;
top:-200px;
left:50%;
transform:translateX(-50%);
width:800px;
height:800px;

background:radial-gradient(circle,
rgba(59,130,246,0.15),
transparent 70%);

filter:blur(120px);
pointer-events:none;
}

.hero-title{
font-size:64px;
font-weight:600;
line-height:1.1;
margin-bottom:25px;
}

.hero-sub{
color:#9ca3af;
font-size:18px;
max-width:650px;
margin:auto;
margin-bottom:40px;
}

.hero-actions{
display:flex;
justify-content:center;
gap:20px;
}

.btn-primary{
padding:14px 30px;
background:white;
color:black;
text-decoration:none;
border-radius:6px;
}
.btn-primary:hover{
transform: translateY(-2px);
box-shadow: 0 10px 25px rgba(0,255,200,0.25);
transition: all 0.25s ease;
}

.btn-secondary{
padding:14px 30px;
border:1px solid rgba(255,255,255,0.3);
text-decoration:none;
color:white;
border-radius:6px;
}
.btn-secondary:hover{
transform: translateY(-2px);
box-shadow: 0 10px 25px rgba(0,255,200,0.25);
transition: all 0.25s ease;
}

.feature{
padding:40px;
background:rgba(255,255,255,0.02);
border:1px solid rgba(255,255,255,0.05);
border-radius:10px;
}

.feature h3{
margin-bottom:15px;
}

.feature p{
color:#9ca3af;
}


/* =========================
INVENTORY
========================= */

.inventory{
padding:120px 20px;
text-align:center;
}

.inventory-title{
font-size:34px;
margin-bottom:60px;
}

.inventory-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,320px));
gap:40px;
max-width:1100px;
margin:auto;
justify-content:center;
}

.inventory-card{
display:flex;
flex-direction:column;
align-items:center;

padding:35px;
border-radius:14px;

background:rgba(255,255,255,0.03);
border:1px solid rgba(255,255,255,0.06);

backdrop-filter:blur(10px);
text-align:center;
transition:0.3s;
}

.inventory-card:hover{
transform:translateY(-8px);
border-color:rgba(0,240,255,0.4);

box-shadow:
0 0 30px rgba(0,240,255,0.15),
0 10px 40px rgba(0,0,0,0.6);
}

.inventory-card img{
width:100%;
max-height:180px;
object-fit:contain;
margin-bottom:20px;
border-radius:8px;
}

.inventory-card h3{
font-size:20px;
margin-bottom:10px;
}

.inventory-card p{
font-size:18px;
color:#00f0ff;
margin-bottom:20px;
}

.inventory-btn{
margin-top:auto;
width:140px;

display:inline-flex;
align-items:center;
justify-content:center;

padding:10px 22px;
border-radius:8px;

border:1px solid rgba(255,255,255,0.2);
text-decoration:none;
color:white;
}

.inventory-btn:hover{
background:#00f0ff;
color:black;
border-color:#00f0ff;
}


/* =========================
INNER PAGES
========================= */

.page-section{

display:flex;

justify-content:center;

align-items:center;

min-height:70vh;

padding:120px 20px;

}

.page-box{

max-width:720px;

width:100%;

padding:60px;

text-align:center;

background:rgba(255,255,255,0.03);

border:1px solid rgba(255,255,255,0.08);

border-radius:14px;

backdrop-filter:blur(12px);

box-shadow:
0 0 40px rgba(0,240,255,0.05),
0 20px 80px rgba(0,0,0,0.6);

}

.page-title{

font-size:40px;

margin-bottom:20px;

}

.page-text{

color:#9ca3af;

font-size:18px;

line-height:1.6;

}


/* =========================
TICKER
========================= */

.ticker-wrapper{
position:relative;
width:100%;
overflow:hidden;

background:#050505;
border-top:1px solid rgba(255,255,255,0.05);
padding:14px 0;
}

.ticker-track{
display:flex;
gap:40px;
white-space:nowrap;

min-width:100%;

animation:tickerMove 30s linear infinite;
}

@keyframes tickerMove{
0%{transform:translateX(0);}
100%{transform:translateX(-50%);}
}


/* =========================
FOOTER
========================= */

.site-footer{
width:100%;
padding:20px 0;
border-top:1px solid rgba(255,255,255,0.05);
text-align:center;
color:#888;
font-size:13px;
background:#050505;
}


/* =========================
MOBILE
========================= */

@media (max-width:768px){

.hero{
padding:120px 20px;
}

.hero-title{
font-size:36px;
line-height:1.2;
max-width:340px;
margin:auto;
}

.hero-sub{
font-size:15px;
max-width:300px;
}

.hero-actions{
flex-direction:column;
gap:12px;
}

.btn-primary,
.btn-secondary{
width:100%;
max-width:260px;
margin:auto;
}

.product-layout{
grid-template-columns:1fr;
}

.product-gallery{
grid-template-columns:1fr;
}

}

.header{
padding:16px 20px;
}

.header-container{
flex-direction:column;
gap:10px;
}

.nav{
display:flex;
flex-wrap:wrap;
gap:10px;
justify-content:center;
}

.nav a:link{
color:#9ca3af;
}

.nav a:visited{
color:#9ca3af;
}

.nav a:hover{
color:white;
}

.nav a:active{
color:white;
}

.wallet-btn{
margin-top:5px;
}

.page-box{
padding:35px 25px;
}

.page-title{
font-size:28px;
}

.page-text{
font-size:16px;
}

.ticker-track{
font-size:11px;
gap:25px;
}

}

.stat h2{

font-size:36px;

margin-bottom:10px;

}

.stat p{

color:#9ca3af;

}
/* ===== FEATURES GRID FIX ===== */

.features{
padding:120px 0;
}

.features-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:40px;
max-width:1100px;
margin:0 auto;
}

.feature{
background:rgba(255,255,255,0.02);
border:1px solid rgba(255,255,255,0.08);
border-radius:14px;
padding:32px;
text-align:left;
backdrop-filter:blur(10px);
transition:0.3s;
}

.feature:hover{
border-color:rgba(255,255,255,0.2);
transform:translateY(-4px);
}


/* ===== STATS GRID ===== */

.stats{
padding:120px 0;
}

.stats-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:40px;
max-width:1000px;
margin:0 auto;
text-align:center;
}

.stat h2{
font-size:36px;
margin-bottom:6px;
}

.stat p{
color:#8aa0b8;
}


/* ===== TRUST SECTION ===== */

.trust{
padding:120px 0;
text-align:center;
}

.trust-logos{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:30px;
margin-top:30px;
}

.trust-logo{
opacity:0.7;
font-size:14px;
letter-spacing:1px;
}


/* ===== MOBILE FIX ===== */

@media (max-width:900px){

.features-grid{
grid-template-columns:1fr;
}

.stats-grid{
grid-template-columns:1fr 1fr;
}

}
.product img{
width:100%;
height:320px;
object-fit:cover;
border-radius:8px;
}
/* PRODUCT PAGE */

.product-gallery{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:20px;
margin-top:30px;
}

.product-image{
width:100%;
height:320px;
overflow:hidden;
border-radius:10px;
}

.product-image img{
width:100%;
height:100%;
object-fit:cover;
display:block;
transition:0.3s;
}

.product-image:hover img{
transform:scale(1.05);
}
/* PRODUCT PAGE LAYOUT */

.product-layout{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:start;
margin-top:40px;
}

/* GALLERY */

.product-gallery{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:20px;
}

.product-image{
width:100%;
height:260px;
overflow:hidden;
border-radius:12px;
}

.product-image img{
width:100%;
height:100%;
object-fit:cover;
display:block;
transition:0.3s;
}

.product-image:hover img{
transform:scale(1.05);
}

/* INFO */

.product-info h1{
font-size:42px;
margin-bottom:20px;
}

.product-price{
font-size:28px;
font-weight:600;
margin-bottom:25px;
}

/* SPECS */

.product-specs{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:15px;
margin-top:30px;
}

.spec{
background:rgba(255,255,255,0.03);
padding:15px;
border-radius:10px;
border:1px solid rgba(255,255,255,0.08);
}

.spec span{
display:block;
font-size:13px;
color:#888;
margin-bottom:5px;
}

.spec strong{
font-size:16px;
}
.inventory-card{
transition:0.3s;
}

.inventory-card:hover{
transform:translateY(-8px);
box-shadow:0 20px 40px rgba(0,0,0,0.4);
}
.price-up{
color:#00ff9c;
}

.price-down{
color:#ff4d4d;
}

.ticker-track span{
display:inline-flex;
align-items:center;
gap:4px;
}
.coin{
display:flex;
align-items:center;
gap:8px;
margin-right:40px;
font-size:14px;
}

.coin img{
width:18px;
height:18px;
}

.coin canvas{
width:80px;
height:24px;
}

.symbol{
font-weight:600;
}

.price-up{
color:#00ff9c;
}

.price-down{
color:#ff4d4d;
}
.ticker-wrapper{
width:100%;
overflow:hidden;
background:#05070a;
border-top:1px solid rgba(255,255,255,0.05);
}

.ticker-mask{
width:100%;
overflow:hidden;
}

.ticker-track{
display:flex;
width:max-content;
animation:tickerScroll 40s linear infinite;
}

.coin{
display:flex;
align-items:center;
gap:8px;
margin-right:60px;
font-size:14px;
white-space:nowrap;
color:#fff;
}

.coin img{
width:18px;
height:18px;
}

@keyframes tickerScroll{

0%{
transform:translateX(0);
}

100%{
transform:translateX(-50%);
}

}

@media (max-width:768px){

.ticker-track{
animation:tickerScroll 25s linear infinite;
}

.coin{
margin-right:40px;
font-size:13px;
}

}
.footer-copy a{
color:#00ffa6;
text-decoration:none;
}

.footer-copy a:hover{
text-decoration:underline;
}
.premium-divider::after{

content:"";

display:block;

height:20px;

background:linear-gradient(
90deg,
transparent,
rgba(0,255,166,0.2),
rgba(0,195,255,0.2),
transparent
);

filter:blur(12px);

margin-top:-10px;

}
/* TRUST LOGOS HOVER */

.trust-logo{

color:#6f7a86;
margin:0 25px;
font-size:14px;
letter-spacing:1px;

transition:all 0.35s ease;

}

.trust-logo:hover{

color:#00ffa3;

transform:translateY(-4px);

text-shadow:
0 0 6px rgba(0,255,163,0.8),
0 0 12px rgba(0,255,163,0.6),
0 0 20px rgba(0,255,163,0.4);

cursor:pointer;

}