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

body{
background:#030303;
color:white;
overflow-x:hidden;
}

.bg-grid{
position:fixed;
inset:0;
background-image:
linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
background-size:40px 40px;
z-index:-3;
}

.glow{
position:fixed;
width:500px;
height:500px;
border-radius:50%;
filter:blur(120px);
z-index:-2;
}

.glow1{
background:#ff000044;
top:-100px;
left:-100px;
}

.glow2{
background:#ff003344;
bottom:-100px;
right:-100px;
}

nav{
position:fixed;
top:0;
width:100%;
display:flex;
justify-content:space-between;
align-items:center;
padding:25px 60px;
backdrop-filter:blur(20px);
background:#00000088;
border-bottom:1px solid #ffffff11;
z-index:999;
}

.logo{
font-size:28px;
font-weight:900;
color:#ff2d55;
letter-spacing:2px;
}

.nav-links{
display:flex;
gap:30px;
}

.nav-links a{
color:#ddd;
text-decoration:none;
transition:.3s;
}

.nav-links a:hover{
color:#ff2d55;
}

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

.badge{
padding:12px 24px;
border:1px solid #ff2d55;
border-radius:999px;
background:#ff003311;
margin-bottom:30px;
backdrop-filter:blur(10px);
}

.hero h1{
font-size:110px;
font-weight:900;
line-height:1;
text-shadow:0 0 30px #ff003355;
}

.hero span{
color:#ff2d55;
}

.subtitle{
margin-top:25px;
font-size:24px;
color:#aaa;
}

.buttons{
margin-top:40px;
display:flex;
gap:20px;
flex-wrap:wrap;
}

button{
padding:16px 30px;
border:none;
border-radius:18px;
background:linear-gradient(135deg,#ff0033,#ff2d55);
color:white;
font-weight:bold;
cursor:pointer;
transition:.3s;
box-shadow:0 0 20px #ff003344;
}

button:hover{
transform:translateY(-4px);
}

.stats,.feature-grid,.status-grid,.review-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
width:100%;
max-width:1200px;
margin-top:60px;
}

.glass,.feature-card,.status-card,.review-card{
background:#ffffff08;
border:1px solid #ffffff11;
padding:35px;
border-radius:28px;
backdrop-filter:blur(20px);
box-shadow:0 0 30px #00000066;
transition:.3s;
}

.glass:hover,.feature-card:hover,.status-card:hover,.review-card:hover{
transform:translateY(-8px);
border-color:#ff2d55;
}

section{
padding:120px 20px;
text-align:center;
}

section h2{
font-size:60px;
margin-bottom:20px;
}

.discord{
padding-bottom:160px;
}

.chatbot{
position:fixed;
bottom:25px;
right:25px;
z-index:999;
}

.chat-toggle{
width:75px;
height:75px;
border-radius:50%;
font-size:28px;
}

.chat-window{
display:none;
flex-direction:column;
width:340px;
height:450px;
background:#090909;
border:1px solid #ffffff11;
border-radius:28px;
overflow:hidden;
position:absolute;
bottom:95px;
right:0;
backdrop-filter:blur(20px);
}

.chat-header{
padding:18px;
font-weight:900;
color:#ff2d55;
border-bottom:1px solid #ffffff11;
}

.messages{
flex:1;
overflow-y:auto;
padding:18px;
}

.bot-msg,.user-msg{
padding:12px 16px;
margin-bottom:12px;
border-radius:18px;
max-width:80%;
}

.bot-msg{
background:#ff003322;
}

.user-msg{
background:#222;
margin-left:auto;
}

.chat-input{
display:flex;
border-top:1px solid #ffffff11;
}

.chat-input input{
flex:1;
background:#111;
border:none;
padding:16px;
color:white;
}

footer{
padding:50px;
text-align:center;
color:#777;
}

@media(max-width:768px){

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

nav{
padding:20px;
}

.nav-links{
display:none;
}

section h2{
font-size:42px;
}

}
