/*==============================
 BLOCK VEST V2
==============================*/

:root{
--bg:#070A0F;
--card:rgba(255,255,255,.06);
--border:rgba(255,255,255,.08);
--text:#fff;
--muted:#b8bcc8;
--red:#ff3b3b;
--green:#00ff9d;
}

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:"Inter",sans-serif;
}

html{
scroll-behavior:smooth;
}

body{
background:var(--bg);
color:var(--text);
overflow-x:hidden;
position:relative;
}

/* Animated Background */

.bg{
position:fixed;
inset:-50%;
z-index:-2;
background:
radial-gradient(circle at 20% 20%,rgba(255,0,0,.15),transparent 40%),
radial-gradient(circle at 80% 30%,rgba(0,255,157,.12),transparent 45%),
radial-gradient(circle at 40% 85%,rgba(140,0,255,.10),transparent 50%);
filter:blur(45px);
animation:bgMove 18s linear infinite;
}

@keyframes bgMove{

0%{
transform:rotate(0deg);
}

100%{
transform:rotate(360deg);
}

}

body::after{
content:"";
position:fixed;
inset:0;
background:rgba(7,10,15,.35);
z-index:-1;
}

/* Navigation */

header{
position:fixed;
top:0;
left:0;
width:100%;
z-index:999;
backdrop-filter:blur(18px);
background:rgba(10,10,15,.25);
border-bottom:1px solid rgba(255,255,255,.06);
}

.navbar{

max-width:1250px;
margin:auto;
height:80px;

display:flex;
align-items:center;
justify-content:space-between;

padding:0 24px;

}

.logo{

display:flex;
align-items:center;
gap:14px;

cursor:pointer;

}

.logo-icon{

width:48px;
height:48px;

border-radius:14px;

display:flex;
justify-content:center;
align-items:center;

font-size:22px;
font-weight:800;

background:linear-gradient(135deg,#ff3b3b,#a40000);

box-shadow:0 0 25px rgba(255,59,59,.4);

}

.logo-text h2{

font-size:24px;

font-weight:800;

}

.logo-text span{

color:var(--red);

}

.logo-text small{

display:block;

color:#999;

font-size:11px;

margin-top:2px;

letter-spacing:1px;

}

.nav-links{

display:flex;

gap:34px;

}

.nav-links a{

text-decoration:none;

color:#ddd;

font-size:15px;

transition:.3s;

}

.nav-links a:hover{

color:var(--red);

}

.nav-buttons{

display:flex;

gap:15px;

}

.login-btn,
.register-btn{

text-decoration:none;

padding:12px 24px;

border-radius:40px;

font-size:15px;

font-weight:600;

transition:.35s;

}

.login-btn{

border:1px solid rgba(255,255,255,.15);

color:#fff;

}

.login-btn:hover{

background:rgba(255,255,255,.08);

}

.register-btn{

background:linear-gradient(135deg,#ff3b3b,#ff6b6b);

color:#fff;

box-shadow:0 10px 25px rgba(255,59,59,.3);

}

.register-btn:hover{

transform:translateY(-3px);

}

.menu-btn{

display:none;

font-size:28px;

cursor:pointer;

}

/* Mobile Menu */

.mobile-menu{

position:fixed;

top:0;
right:-100%;

width:290px;
height:100vh;

padding:30px;

display:flex;

flex-direction:column;

gap:22px;

background:rgba(12,12,18,.95);

backdrop-filter:blur(25px);

transition:.4s;

z-index:1000;

}

.mobile-menu.active{

right:0;

}

.mobile-menu a{

text-decoration:none;

color:#fff;

font-size:17px;

}

.close-menu{

font-size:28px;

align-self:flex-end;

cursor:pointer;

margin-bottom:15px;

}

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

.hero{
max-width:1250px;
margin:140px auto 90px;
padding:20px 24px;
display:grid;
grid-template-columns:1fr 1fr;
gap:70px;
align-items:center;
}

.tag{
display:inline-flex;
align-items:center;
gap:10px;
padding:12px 18px;
background:rgba(255,255,255,.06);
border:1px solid rgba(255,255,255,.08);
border-radius:50px;
margin-bottom:28px;
color:#ddd;
}

.tag i{
color:var(--green);
}

.hero h1{
font-size:62px;
line-height:1.15;
font-weight:800;
margin-bottom:22px;
}

.hero p{
font-size:17px;
line-height:1.9;
color:var(--muted);
max-width:560px;
margin-bottom:35px;
}

.hero-buttons{
display:flex;
gap:18px;
margin-bottom:45px;
}

.primary-btn,
.secondary-btn{
padding:15px 30px;
border-radius:40px;
text-decoration:none;
font-weight:700;
transition:.35s;
}

.primary-btn{
background:linear-gradient(135deg,#ff3b3b,#ff7070);
color:#fff;
box-shadow:0 10px 25px rgba(255,59,59,.35);
}

.primary-btn:hover{
transform:translateY(-4px);
}

.secondary-btn{
border:1px solid rgba(255,255,255,.15);
color:#fff;
}

.secondary-btn:hover{
background:rgba(255,255,255,.08);
}

.stats{
display:flex;
gap:45px;
flex-wrap:wrap;
}

.stats h2{
font-size:34px;
font-weight:800;
}

.stats span{
display:block;
margin-top:6px;
font-size:14px;
color:#999;
}

/* Dashboard Card */

.dashboard-card{
background:rgba(255,255,255,.06);
border:1px solid rgba(255,255,255,.08);
backdrop-filter:blur(20px);
border-radius:28px;
padding:30px;
box-shadow:0 25px 60px rgba(0,0,0,.35);
}

.card-top{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:20px;
}

.card-top h3{
font-size:18px;
font-weight:600;
}

.dashboard-card h1{
font-size:42px;
margin-bottom:28px;
}

.green{
color:var(--green);
font-weight:700;
}

.chart{
height:170px;
background:linear-gradient(to top,
rgba(255,59,59,.15),
transparent);
border-radius:18px;
position:relative;
overflow:hidden;
margin-bottom:28px;
}

.line{
position:absolute;
left:0;
bottom:30px;
width:100%;
height:4px;
background:linear-gradient(90deg,
transparent,
#00ff9d,
#ff3b3b,
transparent);
animation:moveLine 4s linear infinite;
}

@keyframes moveLine{

0%{
transform:translateX(-100%);
}

100%{
transform:translateX(100%);
}

}

.coins{
display:flex;
flex-direction:column;
gap:16px;
}

.coin{
display:flex;
align-items:center;
justify-content:space-between;
padding:16px;
border-radius:16px;
background:rgba(255,255,255,.05);
border:1px solid rgba(255,255,255,.06);
}

.coin i{
font-size:26px;
color:var(--red);
margin-right:15px;
}

.coin div{
flex:1;
}

.coin h4{
font-size:16px;
margin-bottom:3px;
}

.coin small{
color:#999;
}

/* Floating Coins */

.floating{
position:fixed;
display:flex;
justify-content:center;
align-items:center;
width:70px;
height:70px;
border-radius:50%;
background:rgba(255,255,255,.08);
backdrop-filter:blur(15px);
font-size:32px;
color:#fff;
animation:float 5s ease-in-out infinite;
z-index:2;
}

.floating-btc{
top:18%;
left:4%;
color:#f7931a;
}

.floating-eth{
bottom:20%;
right:6%;
color:#8a92b2;
animation-delay:1.5s;
}

.floating-usdt{
top:60%;
left:10%;
color:#26a17b;
animation-delay:3s;
}

@keyframes float{

0%{
transform:translateY(0);
}

50%{
transform:translateY(-18px);
}

100%{
transform:translateY(0);
}

}

/*==============================
MARKET
==============================*/

.section-title{
text-align:center;
margin-bottom:50px;
}

.section-title h2{
font-size:42px;
font-weight:800;
margin-bottom:10px;
}

.section-title p{
color:var(--muted);
font-size:16px;
}

.market{
max-width:1250px;
margin:100px auto;
padding:0 24px;
}

.market-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.market-card{
background:var(--card);
border:1px solid var(--border);
backdrop-filter:blur(18px);
padding:25px;
border-radius:22px;
transition:.35s;
}

.market-card:hover{
transform:translateY(-8px);
box-shadow:0 15px 35px rgba(255,59,59,.18);
border-color:rgba(255,59,59,.35);
}

.coin-name{
display:flex;
align-items:center;
gap:15px;
margin-bottom:18px;
}

.coin-name i{
font-size:28px;
color:var(--red);
}

.market-card h2{
margin-bottom:10px;
}

.up{
color:var(--green);
font-weight:700;
}

.down{
color:var(--red);
font-weight:700;
}

/*==============================
FEATURES
==============================*/

.features{
max-width:1250px;
margin:100px auto;
padding:0 24px;
}

.feature-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.feature-card{
background:var(--card);
border:1px solid var(--border);
border-radius:22px;
padding:35px 25px;
text-align:center;
transition:.35s;
backdrop-filter:blur(18px);
}

.feature-card:hover{
transform:translateY(-8px);
border-color:rgba(255,59,59,.35);
}

.feature-card i{
font-size:42px;
color:var(--red);
margin-bottom:18px;
}

.feature-card h3{
margin-bottom:12px;
}

.feature-card p{
line-height:1.8;
color:var(--muted);
}

/*==============================
PLANS
==============================*/

.plans{
max-width:1250px;
margin:100px auto;
padding:0 24px;
}

.plan-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.plan{
position:relative;
background:var(--card);
border:1px solid var(--border);
border-radius:24px;
padding:40px 30px;
text-align:center;
transition:.35s;
backdrop-filter:blur(18px);
}

.plan:hover{
transform:translateY(-10px);
border-color:rgba(255,59,59,.4);
}

.popular{
border:2px solid var(--red);
box-shadow:0 0 30px rgba(255,59,59,.18);
}

.popular-tag{
position:absolute;
top:-15px;
left:50%;
transform:translateX(-50%);
background:var(--red);
padding:8px 20px;
border-radius:30px;
font-size:12px;
font-weight:700;
letter-spacing:1px;
}

.plan h1{
font-size:54px;
margin:18px 0;
color:var(--red);
}

.plan span{
color:var(--muted);
}

.plan ul{
list-style:none;
margin:30px 0;
}

.plan ul li{
padding:12px 0;
border-bottom:1px solid rgba(255,255,255,.06);
}

.plan a{
display:inline-block;
margin-top:10px;
padding:14px 30px;
border-radius:35px;
text-decoration:none;
background:linear-gradient(135deg,#ff3b3b,#ff6666);
color:#fff;
font-weight:700;
transition:.35s;
}

.plan a:hover{
transform:translateY(-3px);
box-shadow:0 12px 25px rgba(255,59,59,.25);
}

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

.testimonials{
max-width:1250px;
margin:100px auto;
padding:0 24px;
}

.testimonial-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.testimonial-card{
background:var(--card);
border:1px solid var(--border);
backdrop-filter:blur(18px);
border-radius:22px;
padding:30px;
transition:.35s;
}

.testimonial-card:hover{
transform:translateY(-8px);
border-color:rgba(255,59,59,.35);
}

.stars{
color:#FFD700;
font-size:20px;
margin-bottom:18px;
}

.testimonial-card p{
line-height:1.8;
color:var(--muted);
margin-bottom:20px;
}

.testimonial-card h4{
margin-bottom:5px;
}

.testimonial-card span{
color:#999;
}

/*==============================
FAQ
==============================*/

.faq{
max-width:900px;
margin:100px auto;
padding:0 24px;
}

.faq-container{
display:flex;
flex-direction:column;
gap:20px;
}

.faq-item{
background:var(--card);
border:1px solid var(--border);
backdrop-filter:blur(18px);
padding:25px;
border-radius:18px;
}

.faq-item h3{
margin-bottom:10px;
}

.faq-item p{
color:var(--muted);
line-height:1.8;
}

/*==============================
CTA
==============================*/

.cta{
max-width:1200px;
margin:100px auto;
padding:70px 30px;
text-align:center;
background:linear-gradient(135deg,
rgba(255,59,59,.18),
rgba(255,255,255,.05));
border:1px solid rgba(255,255,255,.08);
backdrop-filter:blur(20px);
border-radius:30px;
}

.cta h2{
font-size:44px;
margin-bottom:15px;
}

.cta p{
color:var(--muted);
margin-bottom:35px;
}

/*==============================
FOOTER
==============================*/

footer{
margin-top:80px;
padding:50px 24px;
border-top:1px solid rgba(255,255,255,.08);
text-align:center;
}

.footer-logo{
display:flex;
justify-content:center;
align-items:center;
gap:15px;
margin-bottom:25px;
}

.footer-logo h3 span{
color:var(--red);
}

.footer-logo p{
font-size:12px;
color:#888;
}

.footer-links{
display:flex;
justify-content:center;
gap:30px;
flex-wrap:wrap;
margin-bottom:25px;
}

.footer-links a{
text-decoration:none;
color:#bbb;
transition:.3s;
}

.footer-links a:hover{
color:var(--red);
}

.socials{
display:flex;
justify-content:center;
gap:18px;
margin-bottom:25px;
}

.socials a{
width:46px;
height:46px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
background:rgba(255,255,255,.06);
border:1px solid rgba(255,255,255,.08);
color:#fff;
text-decoration:none;
transition:.3s;
}

.socials a:hover{
background:var(--red);
transform:translateY(-4px);
}

.copyright{
color:#777;
font-size:14px;
}

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

@media(max-width:992px){

.hero{
grid-template-columns:1fr;
text-align:center;
}

.hero p{
margin:auto auto 35px;
}

.hero-buttons,
.stats{
justify-content:center;
}

.market-grid,
.feature-grid,
.plan-grid,
.testimonial-grid{
grid-template-columns:1fr;
}

.nav-links,
.nav-buttons{
display:none;
}

.menu-btn{
display:block;
}

.dashboard-card{
margin-top:20px;
}

}

@media(max-width:600px){

.hero{
margin-top:120px;
}

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

.section-title h2{
font-size:32px;
}

.cta h2{
font-size:34px;
}

.logo-text small{
display:none;
}

.floating{
display:none;
}

}

/*==============================
SCROLLBAR
==============================*/

::-webkit-scrollbar{
width:8px;
}

::-webkit-scrollbar-track{
background:#0b0f16;
}

::-webkit-scrollbar-thumb{
background:var(--red);
border-radius:20px;
}

::-webkit-scrollbar-thumb:hover{
background:#ff5b5b;
}