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

header{
    min-height:100vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    padding:20px;
}

h1{
    font-size:70px;
    color:#39ff14;
    text-shadow:0 0 20px #39ff14;
}


.buttons{
    margin-top:20px;
}

.buttons a{
    display:inline-block;
    margin:10px;
    padding:16px 32px;
    border-radius:50px;
    text-decoration:none;
    font-weight:bold;
    transition:.3s;
}

header .buttons a:first-child{
    background:#39FF14;
    color:#000;
}

header .buttons a:last-child{
    background:transparent;
    border:2px solid #39FF14;
    color:#39FF14;
}

.buttons a:hover{
    transform:scale(1.08);
}

section{
    padding:120px 20px;
}

section h2{
    font-size:45px;
    color:#39ff14;
}

section p{
    margin:auto;
    margin-top:20px;
    max-width:700px;
    color:#bbbbbb;
    font-size:20px;
    line-height:1.8;
}
.hero-image{
    width:320px;
    max-width:85%;
    margin:20px 0;
    filter:drop-shadow(0 0 30px #39FF14);
    transition:0.3s;
}

.hero-image:hover{
    transform:scale(1.05);
}
body{
    cursor:url("assets/cursor.png"), auto;
}
body{
    cursor: url("assets/cursor.jpg"), auto;
}
nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:25px 10%;
position:fixed;
top:0;
left:0;
width:100%;
background:rgba(10,10,10,.85);
backdrop-filter:blur(12px);
z-index:1000;
}

.logo{
font-size:30px;
font-weight:bold;
color:#39FF14;
text-shadow:0 0 15px #39FF14;
}

nav ul{
display:flex;
gap:35px;
list-style:none;
}

nav a{
color:white;
text-decoration:none;
font-weight:bold;
transition:.3s;
}

nav a:hover{
color:#39FF14;
}

header{
padding-top:120px;
}
.logo{
    display:flex;
    align-items:center;
    gap:12px;
    font-size:30px;
    font-weight:bold;
    color:#39FF14;
    text-shadow:0 0 15px #39FF14;
}

.logo img{
    width:42px;
    height:42px;
    border-radius:50%;
    box-shadow:0 0 15px #39FF14;
}
.title{
    font-size:90px;
    font-weight:900;
    color:#39FF14;
    text-shadow:0 0 25px #39FF14;
    margin-bottom:5px;
}

.subtitle{
    font-size:35px;
    color:#ffffff;
    margin-bottom:10px;
    letter-spacing:2px;
    text-transform:uppercase;
}

.slogan{
    max-width:700px;
    margin:20px auto 35px;
    font-size:35px;
    font-weight:700;
    color:#ffffff;
    line-height:1.4;
    text-shadow:0 0 10px rgba(0,0,0,.9);
}
.about{
    padding:120px 10%;
    text-align:center;
}

.about h2{
    font-size:55px;
    color:#39FF14;
    margin-bottom:25px;
    text-shadow:0 0 15px #39FF14;
}

.about-text{
    max-width:750px;
    margin:auto;

    font-size:22px;
    line-height:1.8;

    color:#ffffff;
    font-weight:900;

    text-shadow:0 0 8px rgba(0,0,0,0.9);
}

.features{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
    margin-top:70px;
}

.card{
    width:280px;
    padding:35px;
    border-radius:20px;
    background:#151515;
    border:1px solid #39FF14;
    transition:.3s;
}

.card:hover{
    transform:translateY(-10px);
    box-shadow:0 0 25px #39FF14;
}

.card h3{
    margin:20px 0 10px;
    color:#39FF14;
}

.card p{
    color:#bdbdbd;
}
.tokenomics{
    width:100%;
    max-width:1400px;
    margin:0 auto;
    padding:120px 20px;
    text-align:center;
}
.tokenomics h2{
    font-size:55px;
    color:#39FF14;
    margin-bottom:60px;
    text-shadow:0 0 15px #39FF14;
}

.token-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,280px));
    justify-content:center;
    justify-items:center;
    gap:25px;
    width:100%;
    margin:0 auto;
}
.token-card{
    background:#141414;
    border:1px solid #39FF14;
    border-radius:20px;
    padding:30px;
    transition:.3s;
    width:280px;
}

.token-card:hover{
    transform:translateY(-8px);
    box-shadow:0 0 25px rgba(57,255,20,.6);
}

.token-card h3{
    color:#ffffff;
    margin-bottom:15px;
}

.token-card span{
    color:#39FF14;
    font-size:26px;
    font-weight:bold;
}
body{
    margin:0;
    padding:0;
    font-family:Arial, Helvetica, sans-serif;
    color:white;

    background:
    linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.75)),
    url("assets/background.jpg");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    background-attachment:fixed;
}
 .footer{
    margin-top:100px;
    padding:40px 20px;
    border-top:1px solid rgba(57,255,20,.3);
    background:rgba(0,0,0,.6);
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
    text-align:center;
}

.footer p{
    margin:10px 0;
    color:#ffffff;
    font-size:18px;
}

.footer p:first-child{
    color:#39FF14;
    font-size:28px;
    font-weight:bold;
}

.chart-wrapper{
    width:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    margin-top:15px;
}



.chart-container{
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
}

.chart-container img{
    display:block;
    width:1000px;
    max-width:100%;
    height:auto;
    margin:0 auto;
}
.contract{
    width:100%;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:100px 20px;
}

.contract-box{
    width:fit-content;
    max-width:900px;
    margin:30px auto;
    padding:20px 30px;
    background:#141414;
    border:2px solid #39FF14;
    border-radius:15px;
    color:#39FF14;
    font-size:18px;
    word-break:break-all;
    box-shadow:0 0 20px rgba(57,255,20,.3);
}

.copy-btn{
    display:inline-flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    padding:15px 35px;
    background:#39FF14;
    color:#000;
    border:none;
    border-radius:30px;
    font-size:18px;
    font-weight:bold;
    cursor:pointer;
    transition:.3s;
    text-decoration:none;
}
.copy-btn:hover{
    transform:scale(1.05);
}
.buttons{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
}

.buttons a{
    text-decoration:none;
}
.contract-buttons{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
    margin-top:25px;
}

.contract-buttons .copy-btn{
    display:inline-flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    padding:15px 35px;
    background:#39FF14;
    color:#000;
    text-decoration:none;
    border:none;
    border-radius:30px;
    font-size:18px;
    font-weight:bold;
}
.community-buttons{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
    margin-top:35px;
}

.community-buttons a{
    display:inline-block;
    padding:16px 36px;
    border-radius:50px;
    text-decoration:none;
    font-weight:bold;
    transition:.3s;
}

.community-buttons a:first-child{
    background:#39FF14;
    color:#000;
}

.community-buttons a:last-child{
    border:2px solid #39FF14;
    color:#39FF14;
    background:transparent;
}

.community-buttons a:hover{
    transform:scale(1.05);
}
.community-buttons{
    display:flex;
    justify-content:center;
    gap:25px;
    margin-top:30px;
}

.community-buttons a{
    width:80px;
    height:80px;
    border:3px solid #7CFC00;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#7CFC00;
    font-size:40px;
    text-decoration:none;
    transition:.3s;
    box-shadow:0 0 20px rgba(124,252,0,.4);
}

.community-buttons a:hover{
    background:#7CFC00;
    color:#111;
    transform:scale(1.1);
}
@media (max-width:768px){

nav{
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    padding:15px;
}

.logo{
    margin-bottom:15px;
}

nav ul{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:12px;
    list-style:none;
    width:100%;
    margin:0;
    padding:0;
}

nav ul li{
    margin:0;
}

nav a{
    font-size:15px;
}

}
