body{
margin:0;
font-family:Arial, Helvetica, sans-serif;
background:white;
color:#111;
position:relative;
z-index:1;
}

/* 🌶️ BACKGROUND */
.pepper-bg{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
pointer-events:none;
z-index:0;
}

.pepper-bg span{
position:absolute;
font-size:28px;
opacity:0.07;
animation:float 15s linear infinite;
}

.pepper-bg span:nth-child(1){left:10%;}
.pepper-bg span:nth-child(2){left:30%;}
.pepper-bg span:nth-child(3){left:50%;}
.pepper-bg span:nth-child(4){left:70%;}
.pepper-bg span:nth-child(5){left:90%;}

@keyframes float{
0%{transform:translateY(100vh);}
100%{transform:translateY(-10vh);}
}

/* NAV */
.nav{
display:flex;
justify-content:space-between;
padding:15px 30px;
border-bottom:1px solid #eee;
position:relative;
z-index:10;
}

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

.logo img{
width:50px;
}

.menu-toggle{
display:none;
font-size:28px;
cursor:pointer;
}

/* NAV LINKS */
nav{
display:flex;
gap:10px;
}

nav a{
display:flex;
align-items:center;
justify-content:center;
background:#ff3b3b;
color:white;
padding:8px 16px;
border-radius:6px;
text-decoration:none;
}

/* MOBILE NAV */
@media(max-width:768px){

.menu-toggle{
display:block;
}

nav{
display:none;
flex-direction:column;
position:absolute;
top:60px;
left:0;
width:100%;
background:white;
padding:10px;
}

nav.show{
display:flex;
}

}

/* HERO */
.hero{
text-align:center;
padding:30px 20px 2px;
}

.hero-logo{
width:420px;
max-width:90%;
margin-bottom:2px;
}

.hero-title{
font-size:64px;
margin:0;
background:linear-gradient(90deg,#ff3c00,#ff9500);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

/* ABOUT */
.about-section{
display:flex;
justify-content:center;
padding:20px;
}

.about-box{
max-width:800px;
padding:40px;
border-radius:20px;
border:1px solid rgba(255,80,0,0.2);
box-shadow:0 10px 25px rgba(0,0,0,0.08);
text-align:center;
}

.about-subtitle{color:#888;}
.about-intro{font-size:26px;margin:20px 0;}
.about-main{font-size:20px;}
.about-secondary{color:#555;}

.hot{
color:#ff3b3b;
animation:glow 2s infinite alternate;
}

@keyframes glow{
from{ text-shadow:0 0 5px rgba(255,60,0,0.4); }
to{ text-shadow:0 0 20px rgba(255,60,0,0.8); }
}

/* ANIMATION */
.fade-up{
opacity:0;
transform:translateY(30px);
animation:fadeUp 0.8s forwards;
}

.delay-1{animation-delay:0.2s;}
.delay-2{animation-delay:0.4s;}
.delay-3{animation-delay:0.6s;}
.delay-4{animation-delay:0.8s;}
.delay-5{animation-delay:1s;}

@keyframes fadeUp{
to{opacity:1; transform:translateY(0);}
}

/* CHART */
.chart-section{
padding:40px 0;
text-align:center;
}

.chart-title{
color:#ff3b3b;
font-size:36px;
}

.chart-full iframe{
width:80%;
height:690px;
}

/* SECTIONS */
.section{
padding:40px 20px;
max-width:900px;
margin:auto;
text-align:center;
}

.section h2,
.buy-title{
color:#ff3b3b;
}

/* GRID */
.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:20px;
}

.card{
padding:25px;
border:1px solid #eee;
border-radius:10px;
transition:0.3s;
}

.card:hover{
transform:translateY(-5px);
}

/* COMMUNITY */
.community-buttons{
display:flex;
justify-content:center;
gap:10px;
flex-wrap:wrap;
}

.community-btn{
display:flex;
align-items:center;
gap:12px;
padding:18px 40px;
border:2px solid #ff3b3b;
border-radius:14px;
width:260px;
justify-content:center;
font-size:18px;
}

.community-btn img{
width:28px;
}

.community-btn:hover{
background:#ff3b3b;
color:white;
}

/* BUY */
.buy-section{
display:flex;
justify-content:center;
padding:40px;
}

.buy-box{
max-width:500px;
padding:40px;
border:1px solid rgba(255,80,0,0.2);
border-radius:20px;
text-align:center;
}

/* BUTTON */
.buy-button{
background:#ff3b3b;
color:white;
padding:14px 30px;
border-radius:8px;
display:inline-block;
}

/* FOOTER */
.footer{
text-align:center;
padding:20px;
border-top:1px solid #eee;
}
/* TOKENOMICS LABEL COLOR */

.card h3 {
  color: #ff3b3b; /* main red */
  font-weight: 700;
}

/* optional gradient style (more premium) */
.card h3 {
  background: linear-gradient(90deg, #ff3c00, #ff9500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* 🔥 LEGAL PAGES */

.legal-container{
max-width:800px;
margin:80px auto;
padding:40px;

border-radius:20px;
border:1px solid rgba(255,60,0,0.3);
box-shadow:0 10px 30px rgba(255,60,0,0.15);

text-align:left;
}

/* TITLE */
.legal-container h1{
text-align:center;
font-size:36px;

background:linear-gradient(90deg,#ff3c00,#ff9500);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

/* DATE */
.legal-date{
text-align:center;
color:#888;
margin-bottom:30px;
}

/* HEADINGS */
.legal-container h3{
color:#ff3b3b;
margin-top:25px;
}

/* TEXT */
.legal-container p,
.legal-container li{
color:#333;
line-height:1.7;
}

/* BUTTON */
.back-home{
display:inline-block;
margin-top:30px;
padding:12px 20px;

border:2px solid #ff3b3b;
border-radius:10px;

text-decoration:none;
color:#ff3b3b;

transition:0.3s;
}

.back-home:hover{
background:#ff3b3b;
color:white;
box-shadow:0 0 15px rgba(255,60,0,0.4);
}