
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0a0a0a;
    color: #ffffff;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

/* Navigation */
.nav {
    position: sticky;
    top: 0;
    background-color: rgba(15, 15, 15, 0.95);
    padding: 1rem 2rem;
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #2a2a2a;
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-logo {
    width: 40px;
    height: 40px;
    background-color: #4f46e5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-logo i {
    font-size: 24px;
    color: white;
}

.nav-brand h1 {
    font-size: 1.5rem;
    font-weight: bold;
    background: linear-gradient(45deg, #4f46e5, #818cf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #4f46e5;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background: radial-gradient(circle at center, #1a1a1a 0%, #0a0a0a 100%);
}

.hero-content {
    text-align: center;
    max-width: 800px;
}

.hero h2 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #4f46e5, #818cf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #00008B;
}

/* Demo Section 
.demo {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.demo-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
}*/

.code-block {
    background: #1a1a1a;
    padding: 1.5rem;
    font-size: 1rem;
    border-radius: 8px;
    font-family: poppins;
}

.preview {
    background: rgba(255, 255, 255, 0.02);
    padding: 1.5rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* About Section 
.about {
    padding: 4rem 2rem;
    background: #1a1a1a;
} 

.about-content {
    max-width: 1200px;
    margin: 0 auto;
} 

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
} 

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
} 

.stat-number {
    font-size: 2.5rem;
    color: #4f46e5;
    margin-bottom: 0.5rem;
}
    
.footer {
    background: #0a0a0a;
    padding: 2rem;
    border-top: 1px solid #2a2a2a;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: #ffffff;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #4f46e5;
}*/

/* Resources Page 
.resources {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
} 

.font-grid, .color-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(9rem, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.font-card, .color-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
}

.color-sample {
    width: 100%;
    height: 100px;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}*/

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(15, 15, 15, 0.95);
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
        border-bottom: 1px solid #2a2a2a;
    }

    .nav-links.active {
        display: flex;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .demo-container {
        grid-template-columns: 1fr;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
