/* =========================
NEXBURG CAPITAL PREMIUM UI
========================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Inter',sans-serif;
background:#040816;
color:white;
overflow-x:hidden;
padding:20px;

position:relative;
}

/* BACKGROUND GLOW */

body::before{
content:"";
position:fixed;
width:700px;
height:700px;
background:radial-gradient(circle,#22c55e22 0%,transparent 70%);
top:-200px;
left:-200px;
z-index:-1;
}

body::after{
content:"";
position:fixed;

width:700px;
height:700px;
background:radial-gradient(circle,#3b82f622 0%,transparent 70%);
bottom:-250px;
right:-250px;
z-index:-1;
}

/* NAVBAR */

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:25px 50px;
backdrop-filter:blur(14px);
background:rgba(255,255,255,0.03);
border:1px solid rgba(255,255,255,0.06);
border-radius:22px;

position:sticky;
top:20px;
z-index:1000;
}

.logo{

  display:flex;
  align-items:center;

  gap:18px;

  font-size:38px;
  font-weight:800;

  white-space:nowrap;

}
.logo-img{

  width: 85px;px;
  height: 85px;px;

  object-fit:contain;

  display:block;

  border-radius:18px;

  box-shadow:
  0 0 35px rgba(34,197,94,0.45);

  transition:0.35s;

}
.logo-img:hover{

  transform:
  scale(1.08)
  rotate(-2deg);

}

.navbar{

  min-height:110px;

}

nav a{
text-decoration:none;

color:#9ca3af;
margin:0 16px;
transition:0.3s;
font-weight:500;
position:relative;
}

nav a:hover{
color:white;
}

nav a.active{
color:#22c55e;
}

nav a.active::after{

  content:"";
  position:absolute;

  width:100%;
  height:2px;

  background:#22c55e;

  left:0;
  bottom:-8px;

}

/* BUTTONS */

.launch-btn,
.get-started{
background:linear-gradient(
135deg,
#22c55e,
#16a34a
);

color:black;
border:none;
padding:14px 28px;
border-radius:14px;
font-weight:700;

cursor:pointer;
transition:0.35s;
box-shadow:
0 0 25px rgba(34,197,94,0.35);
}

.launch-btn:hover,
.get-started:hover{
transform:translateY(-3px) scale(1.03);
box-shadow:
0 0 40px rgba(34,197,94,0.6);
}

.learn-more{
background:transparent;
border:1px solid rgba(255,255,255,0.12);
color:white;
padding:14px 28px;
border-radius:14px;
cursor:pointer;

transition:0.3s;
}

.learn-more:hover{
background:rgba(255,255,255,0.05);
}

/* SECTION */

.section{
margin-top:100px;
text-align:center;
}

.section h1{
font-size:70px;
font-weight:800;
margin-bottom:18px;
background:linear-gradient(
90deg,

white,
#9ca3af
);
-webkit-background-clip:text;
background-clip: text;
-webkit-text-fill-color:transparent;
}

.subtitle{
color:#9ca3af;
font-size:20px;
margin-bottom:60px;
}

/* CARD GRID */

.card-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:28px;

}

/* PREMIUM CARD */

.card{
position:relative;
padding:45px;
border-radius:30px;
overflow:hidden;
backdrop-filter:blur(18px);
background:rgba(255,255,255,0.03);
border:1px solid rgba(255,255,255,0.08);
transition:0.45s;
}

.card:hover{
transform:
translateY(-12px)
scale(1.02);
}


/* TOP GLOW */

.card::before{
content:"";
position:absolute;
inset:0;
opacity:0.25;
background:linear-gradient(
135deg,
transparent,
rgba(255,255,255,0.08)
);
}

/* FLOATING BLUR */

.card::after{
content:"";
position:absolute;

width:180px;
height:180px;
border-radius:50%;
filter:blur(80px);
top:-40px;
right:-40px;
opacity:0.4;
}

/* COLORS */

.green{
border-color:#22c55e55;
box-shadow:
0 0 40px rgba(34,197,94,0.08);
}

.green::after{
background:#22c55e;
}


.purple{
border-color:#a855f755;
box-shadow:
0 0 40px rgba(168,85,247,0.08);
}

.purple::after{
background:#a855f7;
}

.blue{
border-color:#3b82f655;
box-shadow:
0 0 40px rgba(59,130,246,0.08);
}

.blue::after{
background:#3b82f6;
}


.orange{
border-color:#f59e0b55;
box-shadow:
0 0 40px rgba(245,158,11,0.08);
}

.orange::after{
background:#f59e0b;
}

/* CARD CONTENT */

.number{
font-size:72px;
font-weight:900;
margin-bottom:20px;
opacity:0.9;
}

.card h2{
font-size:34px;
margin-bottom:14px;
}

.card p{
color:#cbd5e1;
line-height:1.7;
font-size:17px;
}

/* STATS */

.stats{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
gap:24px;
margin-top:70px;
}


.stat-box{
padding:35px;
border-radius:24px;
background:rgba(255,255,255,0.03);
backdrop-filter:blur(18px);
border:1px solid rgba(255,255,255,0.08);
transition:0.3s;
}

.stat-box:hover{
transform:translateY(-8px);
}

.stat-box h3{
font-size:42px;
margin-bottom:10px;
}

.stat-box p{

color:#9ca3af;
}

/* SECURITY */

.security-grid{
margin-top:55px;
}

.small-card{
padding:35px;
border-radius:24px;
text-align:left;
backdrop-filter:blur(18px);
background:rgba(255,255,255,0.03);
border:1px solid rgba(255,255,255,0.08);
transition:0.35s;
}

.small-card:hover{

transform:translateY(-8px);
}

.small-card h3{
font-size:28px;
margin-bottom:12px;
}

.small-card p{
color:#9ca3af;
line-height:1.7;
}

/* CTA */

.cta{
margin-top:100px;
padding:60px;
border-radius:32px;
position:relative;

overflow:hidden;

background:
linear-gradient(
135deg,
rgba(34,197,94,0.12),
rgba(59,130,246,0.12)
);

border:1px solid rgba(34,197,94,0.2);

display:flex;
justify-content:space-between;
align-items:center;
flex-wrap:wrap;
}

.cta::before{
content:"";
position:absolute;

width:400px;
height:400px;
background:#22c55e;
filter:blur(150px);
opacity:0.15;
right:-100px;
top:-100px;
}

.cta h2{
font-size:48px;
margin-bottom:12px;
}

.cta p{
color:#cbd5e1;
font-size:18px;
}

.cta-buttons{

display:flex;
gap:18px;
}

/* RESPONSIVE */

@media(max-width:1000px){

.navbar{
flex-direction:column;
gap:20px;
padding:25px;
}

nav{
display:flex;
flex-wrap:wrap;
justify-content:center;
}

.section h1{
font-size:48px;
}

.cta{
text-align:center;
flex-direction:column;
gap:30px;
}

}

@media(max-width:600px){

body{
padding:12px;
}

.section h1{
font-size:38px;

}

.card{
padding:30px;
}

.number{
font-size:52px;
}

.card h2{
font-size:26px;
}

.cta h2{
font-size:34px;
}

}
/* LIVE PRICES */

.live-prices{
  display:flex;
  gap:20px;
  margin-top:40px;
  justify-content:center;
  flex-wrap:wrap;
}

.price-box{
  background:rgba(255,255,255,0.03);
  padding:25px;
  border-radius:20px;
  border:1px solid rgba(255,255,255,0.08);
  min-width:220px;
  text-align:center;
  backdrop-filter:blur(15px);
}

.price-box h3{
  margin-bottom:10px;
}

.price-box p{
  color:#22c55e;
  font-size:28px;
  font-weight:700;
}

/* WALLET */

.wallet-display{
  text-align:center;
  margin-top:25px;
  color:#9ca3af;
}

/* LOGIN */

.login-box{
  margin-top:80px;
  background:rgba(255,255,255,0.03);
  padding:40px;
  border-radius:24px;
  max-width:450px;
  margin-inline:auto;
  border:1px solid rgba(255,255,255,0.08);
}

.login-box h2{
  margin-bottom:25px;
}

.login-box input{
  width:100%;
  margin-bottom:18px;
  padding:15px;
  border:none;
  border-radius:12px;
  background:#111827;
  color:white;
}

.login-box button{

  width:100%;
  padding:15px;
  border:none;
  border-radius:12px;
  background:#22c55e;
  color:black;
  font-weight:bold;
  cursor:pointer;

  margin-top:15px;

}

/* SCROLL ANIMATION */

.card,
.stat-box,
.small-card{

  opacity:0;
  transform:translateY(40px);
  transition:0.7s;

}

.show{

  opacity:1;
  transform:translateY(0);

}

.wallet-balance{
  text-align:center;
  margin-top:10px;
  color:#22c55e;
  font-size:18px;
  font-weight:600;
}

/* TRADINGVIEW */

.chart-section{

  margin-top:100px;

}

.chart-title{

  text-align:center;
  font-size:55px;
  margin-bottom:40px;

}

.chart-container{

  background:rgba(255,255,255,0.03);

  border:1px solid rgba(255,255,255,0.08);

  border-radius:30px;

  overflow:hidden;

  padding:20px;

  backdrop-filter:blur(18px);

}

.coin-buttons{

  display:flex;
  justify-content:center;
  gap:15px;
  flex-wrap:wrap;
  margin-bottom:30px;

}

.coin-buttons button{

  padding:12px 24px;

  border:none;

  border-radius:14px;

  background:rgba(255,255,255,0.05);

  color:white;

  cursor:pointer;

  transition:0.3s;

  border:1px solid rgba(255,255,255,0.08);

}

.coin-buttons button:hover{

  background:#22c55e;
  color:black;

}

/* DEPOSIT SECTION */

.deposit-section{

  margin-top:120px;
  text-align:center;

}

.deposit-title{

  font-size:58px;
  margin-bottom:15px;

}

.deposit-subtitle{

  color:#9ca3af;
  margin-bottom:50px;
  font-size:18px;

}

.deposit-box{

  max-width:700px;

  margin:auto;

  background:rgba(255,255,255,0.03);

  border:1px solid rgba(255,255,255,0.08);

  border-radius:30px;

  padding:40px;

  backdrop-filter:blur(18px);

}

.deposit-box h3{

  margin-bottom:25px;
  font-size:28px;

}

.wallet-copy-box{

  display:flex;
  gap:15px;
  flex-wrap:wrap;

}

.wallet-copy-box input{

  flex:1;

  padding:18px;

  border:none;

  border-radius:14px;

  background:#111827;

  color:white;

  font-size:16px;

}

.wallet-copy-box button{

  padding:18px 28px;

  border:none;

  border-radius:14px;

  background:#22c55e;

  color:black;

  font-weight:bold;

  cursor:pointer;

  transition:0.3s;

}

.wallet-copy-box button:hover{

  transform:scale(1.03);

}

.network{

  margin-top:20px;
  color:#22c55e;

}

/* PORTFOLIO DASHBOARD */

.portfolio-section{

  margin-top:120px;
  text-align:center;

}

.portfolio-title{

  font-size:58px;
  margin-bottom:15px;

}

.portfolio-subtitle{

  color:#9ca3af;
  margin-bottom:60px;
  font-size:18px;

}

.portfolio-grid{

  display:grid;

  grid-template-columns:
  repeat(auto-fit,minmax(260px,1fr));

  gap:25px;

}

.portfolio-card{

  background:rgba(255,255,255,0.03);

  border:1px solid rgba(255,255,255,0.08);

  border-radius:28px;

  padding:40px;

  text-align:left;

  backdrop-filter:blur(18px);

  transition:0.35s;

  position:relative;

  overflow:hidden;

}

.portfolio-card:hover{

  transform:
  translateY(-10px)
  scale(1.02);

}

.portfolio-card h3{

  color:#9ca3af;
  margin-bottom:20px;

}

.portfolio-card h2{

  font-size:42px;
  margin-bottom:15px;

}

.portfolio-card p{

  color:#22c55e;
  font-weight:600;

}

/* EXTRA DASHBOARD */

.extra-dashboard{

  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:25px;

  margin-top:40px;

}

.dashboard-box{

  padding:35px;

  border-radius:24px;

  background:rgba(255,255,255,0.03);

  border:1px solid rgba(255,255,255,0.08);

  backdrop-filter:blur(18px);

}

.dashboard-box h3{

  margin-bottom:20px;
  font-size:26px;

}

.dashboard-box ul{

  list-style:none;

}

.dashboard-box li{

  margin-bottom:14px;
  color:#cbd5e1;

}

/* SECURITY STATUS */

.security-status{

  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

  gap:24px;

  margin-top:50px;

}

.security-box{

  padding:30px;

  border-radius:24px;

  text-align:center;

  background:rgba(255,255,255,0.03);

  border:1px solid rgba(255,255,255,0.08);

}

.security-box h2{

  font-size:42px;
  color:#22c55e;

  margin-bottom:10px;

}

/* ABOUT */

.about-grid{

  display:grid;

  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

  gap:28px;

  margin-top:50px;

}

.about-card{

  padding:35px;

  border-radius:24px;

  background:rgba(255,255,255,0.03);

  border:1px solid rgba(255,255,255,0.08);

  backdrop-filter:blur(18px);

}

.about-card h3{

  font-size:28px;

  margin-bottom:16px;

}

.about-card p{

  color:#cbd5e1;

  line-height:1.7;

}