.navbar{
position:fixed;
top:0;
left:0;
width:100%;
z-index:1000;

display:flex;
justify-content:space-between;
align-items:center;

padding:20px 60px;

background:rgba(10,15,30,.8);
backdrop-filter:blur(20px);
}

body{
padding-top:90px;
}

.logo{
font-size:28px;
font-weight:bold;
color:#ffffff;
}

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

.nav-links a{
text-decoration:none;
color:white;
}

.auth-buttons{
display:flex;
gap:15px;
}

.login-btn{
padding:10px 20px;
background:transparent;
color:white;
border:1px solid #7C3AED;
}

.signup-btn{
padding:10px 20px;
background:#7C3AED;
color:white;
}

.hero{
display:flex;
align-items:center;
justify-content:space-between;
padding:100px 80px;
position:relative;
overflow:hidden;
min-height:85vh;
}

.hero::before{
content:"";

position:absolute;

width:700px;
height:700px;

right:-200px;
top:-150px;

background:radial-gradient(
circle,
rgba(124,58,237,.25),
transparent
);

pointer-events:none;
}

.hero-left{
max-width:650px;
}

.hero-left h1{
font-size:56px;
line-height:1.15;
margin-bottom:20px;
max-width:600px;

background:linear-gradient(
90deg,
#ffffff,
#c4b5fd,
#22D3EE
);

-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

.hero-left p{
font-size:22px;
color:#cbd5e1;
margin-bottom:30px;
}

.hero-right{
display:flex;
justify-content:center;
align-items:center;
flex:1;
}

.hero-circle{
width:500px;
height:500px;
border-radius:50%;
background:linear-gradient(
135deg,
#7C3AED,
#4F46E5,
#22D3EE
);
filter:blur(20px);
opacity:0.8;
}

.language-chips{
display:flex;
justify-content:center;
gap:15px;
flex-wrap:wrap;
margin-bottom:40px;
}

.language-chips span{
padding:10px 20px;
background:#111827;
border-radius:50px;
}

.hero-buttons{
display:flex;
justify-content:center;
gap:20px;
}

.start-btn{
padding:16px 40px;
border:none;
border-radius:12px;
font-size:18px;
color:white;
background:linear-gradient(
135deg,
#7C3AED,
#4F46E5
);
}

.writer-btn{
padding:16px 40px;
border:none;
border-radius:12px;
font-size:18px;
background:#22D3EE;
color:#000;
}

.section{
padding:80px 60px;
}

.section h2{
margin-bottom:30px;
}

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

.novel-card,
.writer-card{
background:#111827;
padding:30px;
border-radius:15px;
}

.writer-cta{
padding:100px 20px;
text-align:center;
background:#111827;
}

.writer-cta h2{
font-size:40px;
margin-bottom:20px;
}

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

.logo{
font-size:32px;
font-weight:800;
letter-spacing:1px;

background:linear-gradient(
90deg,
#ffffff,
#c4b5fd,
#22D3EE
);

-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

.stats{
display:flex;
justify-content:center;
gap:80px;
padding:60px 20px;
}

.stat{
text-align:center;
}

.stat h2{
font-size:40px;
color:#22D3EE;
}

.stat p{
color:#cbd5e1;
}

.section{
padding:100px 80px;
}

.section-title{
font-size:40px;
margin-bottom:40px;
}

.novels-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.novel-card{
background:#111827;
padding:20px;
border-radius:20px;
transition:.3s;
}

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

.cover{
height:260px;
border-radius:15px;
background:linear-gradient(
135deg,
#7C3AED,
#4F46E5,
#22D3EE
);
margin-bottom:20px;
}

.novel-card h3{
margin-bottom:10px;
}

.novel-card p{
color:#94A3B8;
}

.categories{
display:flex;
flex-wrap:wrap;
gap:20px;
}

.categories span{
padding:14px 30px;
background:#111827;
border-radius:50px;
font-size:18px;
}

.writer-avatar{
width:70px;
height:70px;

border-radius:50%;

background:linear-gradient(
135deg,
#7C3AED,
#22D3EE
);

display:flex;
align-items:center;
justify-content:center;

font-size:28px;
font-weight:bold;

margin-bottom:15px;
}

