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

body {
font-family: 'Hachi Maru Pop', cursive;
background: linear-gradient(135deg, #F1FFED 0%, #ECE8FE 50%, #FFEFF6 100%);
min-height: 100vh;
display: flex;
flex-direction: column;
}

nav {
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
padding: 1rem 2rem;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
position: sticky;
top:0;
z-index: 100;
}

.nav-container {
max-width: 1600px;
max-height: 100px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
}

.logo {
font-size: 1rem;
font-weight: bold;
background: linear-gradient(135deg, #6366f1, #ec4899);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
padding-top: 1px;
}

.nav-links {
display: flex;
gap: 1.5rem;
list-style: none;
flex-wrap: wrap;
}

.nav-links a {
text-decoration: none;
color: #333;
font-weight: 500;
transition: all 0.3s;
padding: 0.5rem 1rem;
border-radius: 8px;
}

.nav-links a:hover {
background: linear-gradient(135deg, #ECE8FE, #FFEFF6);
transform: translateY(-2px);
}

.nav-links a.active {
background: linear-gradient(135deg, #6366f1, #ec4899);
color: white;
}

main {
flex: 1;
max-width: 1200px;
margin: 2rem auto;
padding: 2rem;
width: 100%;
}

.hero {
background: rgba(255, 255, 255, 0.9);
backdrop-filter: blur(10px);
border-radius: 20px;
padding: 3rem;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
margin-bottom: 2rem;
animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

h1 {
font-size: 2.5rem;
margin-bottom: 1rem;
background: linear-gradient(135deg, #6366f1, #ec4899);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

h2 {
font-size: 1.8rem;
margin: 2rem 0 1rem;
color: #333;
}

p {
line-height: 1.8;
color: #555;
margin-bottom: 1rem;
}

.content-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
margin-top: 2rem;
}

.card {
background: rgba(255, 255, 255, 0.9);
backdrop-filter: blur(10px);
border-radius: 15px;
padding: 2rem;
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
transition: all 0.3s;
animation: fadeIn 0.8s ease-out;
}

.card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.card h3 {
font-size: 1.3rem;
margin-bottom: 1rem;
color: #6366f1;
}

.card li {
    margin-bottom: 0.5rem;
    margin-left: 1rem;
}

.code-example {
background:#1C1B19;
color: #f8f8f2;
padding: 1.5rem;
border-radius: 10px;
overflow-x: auto;
margin: 1.5rem 0;
font-family: 'Courier New', monospace;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.code-example code {
font-size: 0.9rem;
line-height: 1.6;
}

footer {
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
padding: 2rem;
text-align: center;
box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
margin-top: auto;
}

footer p {
color: #666;
margin: 0;
}

.cta-button {
display: inline-block;
background: linear-gradient(135deg, #6366f1, #ec4899);
color: white;
padding: 1rem 2rem;
border-radius: 10px;
text-decoration: none;
font-weight: bold;
margin-top: 1rem;
transition: all 0.3s;
box-shadow: 0 5px 15px rgba(99, 102, 241, 0.3);
}

.cta-button:hover {
transform: translateY(-3px);
box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
}

@media (max-width: 768px) {
.nav-links {
justify-content: center;
width: 100%;
margin-top: 1rem;
}

h1 {
font-size: 2rem;
}

.hero {
padding: 2rem;
}
}