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

body{
background:#050812;
color:white;
}

/* NAVBAR */

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 40px;
background:#0f1425;
flex-wrap:wrap;
}

.logo{
display:flex;
align-items:center;
gap:10px;
}

.logo img{
width:45px;
}

nav a{
margin:0 10px;
color:#ccc;
text-decoration:none;
}

nav a:hover{
color:white;
}

/* HERO */

.hero{
position:relative;
height:100vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
overflow:hidden;
}

#bgvideo{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
object-fit:cover;
z-index:-2;
}

.overlay{
position:absolute;
width:100%;
height:100%;
background:rgba(0,0,0,0.6);
z-index:-1;
}

.hero-content{
max-width:700px;
padding:20px;
}

.hero h1{
font-size:70px;
margin-bottom:20px;
}

.hero p{
color:#aaa;
margin-bottom:30px;
}

/* BUTTONS */

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

.btn{
background:#4d8cff;
padding:12px 25px;
border-radius:8px;
text-decoration:none;
color:white;
}

.btn-outline{
border:1px solid #444;
padding:12px 25px;
border-radius:8px;
text-decoration:none;
color:white;
}

/* CONTRACT */

.contract-section{
padding:80px 20px;
text-align:center;
}

.contract-box{
display:flex;
justify-content:center;
flex-wrap:wrap;
gap:15px;
background:#111;
padding:15px 20px;
border-radius:10px;
}

.contract-box button{
background:#8f5cff;
border:none;
padding:8px 15px;
border-radius:6px;
color:white;
cursor:pointer;
}

/* ABOUT */

.glass{
background:rgba(255,255,255,0.05);
padding:40px;
border-radius:20px;
max-width:700px;
margin:auto;
}

/* TOKENOMICS */

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:20px;
max-width:1000px;
margin:auto;
padding:40px 20px;
}

.card{
background:#111;
padding:30px;
border-radius:12px;
}

/* CHART */

.chart{
max-width:1100px;
margin:auto;
}

/* FOOTER */

footer{
text-align:center;
padding:40px;
border-top:1px solid #222;
}

/* MOBILE */

@media(max-width:768px){

.navbar{
flex-direction:column;
gap:10px;
text-align:center;
}

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

.buttons{
flex-direction:column;
align-items:center;
}

.btn,
.btn-outline{
width:90%;
text-align:center;
}

.chart iframe{
height:400px;
}

}