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

body{
background:linear-gradient(135deg,#fff5fb,#eef8ff);
color:#333;
}

/* NAVBAR */

nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 40px;
background:white;
box-shadow:0 5px 20px rgba(0,0,0,.08);
position:sticky;
top:0;
z-index:1000;
}

nav h1{
color:#c45aa8;
font-size:28px;
}

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

nav a{
text-decoration:none;
color:#555;
font-weight:600;
}

nav a:hover{
color:#c45aa8;
}


/* HERO */

.hero{
text-align:center;
padding:80px 20px;
background:linear-gradient(135deg,#ffe8f5,#eaf7ff);
}

.hero h2{
font-size:42px;
color:#a8468b;
margin-bottom:15px;
}

.hero p{
font-size:20px;
margin-bottom:30px;
}

.hero button{
padding:14px 35px;
border:none;
border-radius:30px;
background:#c45aa8;
color:white;
font-size:17px;
cursor:pointer;
transition:.3s;
}

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


/* CARDS */

.card{

width:90%;
max-width:800px;
margin:30px auto;
padding:30px;
background:white;
border-radius:25px;
box-shadow:0 15px 30px rgba(0,0,0,.08);

}

.card h2{
color:#a8468b;
margin-bottom:20px;
}


/* WORD */

#word{
font-size:35px;
color:#333;
}

#meaning{
font-size:22px;
color:#777;
margin-bottom:20px;
}


/* BUTTONS */

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

.buttons button,
#nextQuestion{

flex:1;
padding:13px;
border:none;
border-radius:15px;
background:#c45aa8;
color:white;
cursor:pointer;
font-size:16px;

}

button:hover{
opacity:.9;
}


/* SEARCH */

#search{

width:100%;
padding:13px;
border-radius:15px;
border:2px solid #eee;
margin:15px 0;

}


/* QUIZ */

#answers button{

display:block;
width:100%;
padding:12px;
margin:10px 0;
border:none;
border-radius:12px;
background:#f3e4f0;
cursor:pointer;

}


/* FOOTER */

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


/* MOBILE */

@media(max-width:600px){

nav{
flex-direction:column;
gap:15px;
}

nav ul{
gap:12px;
font-size:14px;
}

.hero h2{
font-size:30px;
}

}
.whatsapp-btn{
display:inline-block;
margin-top:20px;
padding:14px 28px;
background:#25D366;
color:white;
text-decoration:none;
border-radius:30px;
font-size:17px;
font-weight:600;
transition:.3s;
}

.whatsapp-btn:hover{
transform:scale(1.05);
background:#1ebc59;
}