/* ===== KHAO MANEE V2 ===== */

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

body{
font-family:Arial,Helvetica,sans-serif;
background:#0d0b2b;
background-image:
radial-gradient(circle at top,#1b1b5f 0%,#0d0b2b 60%);
color:#fff;
overflow-x:hidden;
text-align:center;
}

header{
padding:70px 20px 40px;
max-width:1100px;
margin:auto;
}

.logo{
width:220px;
max-width:80%;
border-radius:50%;
box-shadow:0 0 50px rgba(20,241,149,.45);
animation:float 4s ease-in-out infinite;
margin-bottom:30px;
}

@keyframes float{

0%{
transform:translateY(0px);
}

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

100%{
transform:translateY(0px);
}

}

h1{
font-size:64px;
font-weight:800;
margin-bottom:12px;
}

.subtitle{
font-size:2rem;
font-weight:700;
background:linear-gradient(90deg,#9945FF,#14F195);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
margin-bottom:25px;
}

.hero-text{
max-width:720px;
margin:auto;
font-size:1.25rem;
line-height:1.8;
color:#d6d6d6;
}

.buttons{
display:flex;
justify-content:center;
flex-wrap:wrap;
gap:18px;
margin-top:45px;
}

.buttons a{
display:inline-block;
padding:16px 30px;
border-radius:16px;
background:linear-gradient(135deg,#9945FF,#14F195);
color:white;
text-decoration:none;
font-weight:bold;
font-size:17px;
transition:.3s;
box-shadow:0 0 25px rgba(20,241,149,.25);
}

.buttons a:hover{
transform:translateY(-5px);
box-shadow:0 0 40px rgba(20,241,149,.45);
}
section{
max-width:1100px;
margin:40px auto;
padding:35px;
background:rgba(255,255,255,.05);
border:1px solid rgba(255,255,255,.08);
border-radius:24px;
backdrop-filter:blur(14px);
transition:.35s;
}

section:hover{
transform:translateY(-6px);
box-shadow:0 0 30px rgba(20,241,149,.18);
}

h2{
font-size:2.2rem;
margin-bottom:25px;
color:#14F195;
}

.contract{
display:flex;
justify-content:center;
align-items:center;
gap:15px;
flex-wrap:wrap;
margin-top:15px;
}

.contract span{
background:#101010;
padding:15px;
border-radius:14px;
font-family:monospace;
font-size:15px;
word-break:break-all;
max-width:100%;
}

button{
background:#14F195;
color:#000;
padding:14px 22px;
border:none;
border-radius:12px;
font-weight:bold;
cursor:pointer;
transition:.3s;
}

button:hover{
transform:scale(1.05);
}

.why,
.tokenomics,
.roadmap{
display:grid;
gap:22px;
margin-top:25px;
}

.why{
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
}

.tokenomics{
grid-template-columns:repeat(auto-fit,minmax(170px,1fr));
}

.roadmap{
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
}

.card,
.phase{
background:rgba(255,255,255,.06);
border:1px solid rgba(20,241,149,.18);
border-radius:18px;
padding:24px;
transition:.35s;
}

.card:hover,
.phase:hover{
transform:translateY(-8px);
box-shadow:0 0 25px rgba(20,241,149,.28);
}

.phase h3{
color:#14F195;
margin-bottom:15px;
}

.phase p{
margin:8px 0;
}

footer{
margin:70px 0 30px;
color:#aaa;
}

@media(max-width:768px){

h1{
font-size:48px;
}

.subtitle{
font-size:1.6rem;
}

.hero-text{
font-size:1.05rem;
}

.logo{
width:170px;
}

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

.buttons a{
width:90%;
max-width:320px;
}

section{
margin:25px 15px;
padding:25px;
}

}
