@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('../fonts/PlusJakartaSans-VariableFont_wght.ttf') format('truetype');
    font-weight: 200 800;
    font-style: normal;
}

@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('../fonts/PlusJakartaSans-Italic-VariableFont_wght.ttf') format('truetype');
    font-weight: 200 800;
    font-style: italic;
}

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

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #e5e7eb;
    background: #0a0a0a;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #1f1f1f;
    z-index: 1000;
    padding: 1rem 2rem;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: #e5e7eb;
    text-decoration: none;
}

.logo-icon {
    height: 30px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 20px;
    height: 2px;
    background: #e5e7eb;
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
}

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

.nav-links li {
    position: relative;
}

.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    cursor: pointer;
}

.dropdown-toggle i {
    width: 16px;
    height: 16px;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(10, 10, 10, 0.98);
    border: 1px solid #1f1f1f;
    border-radius: 8px;
    padding: 0.5rem 0;
    min-width: 200px;
    margin-top: 0.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.dropdown.active .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.3s;
}

.dropdown-menu a:hover {
    background: #1a1a1a;
    color: #e5e7eb;
}

.dropdown-menu a.coming-soon {
    color: #6b7280;
    cursor: default;
}

.dropdown-menu a.coming-soon:hover {
    background: transparent;
}

.github-btn {
    background: #7c3aed;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.3s;
}

.github-btn:hover {
    background: #6d28d9;
}

/* Hero Section */
.hero {
    margin-top: 40px;
    padding: 6rem 2rem 4rem;
    text-align: center;
    background: #0a0a0a;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #e5e7eb;
}

.hero h1 span {
    background: linear-gradient(90deg, #3DAF35 0%, #FEEF4E 50%, #F52035 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.3rem;
    color: #9ca3af;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-image {
    max-width: 900px;
    margin: 3rem auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(61, 175, 53, 0.21), 0 0 80px rgba(254, 239, 78, 0.14), 0 0 100px rgba(245, 32, 53, 0.14);
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.4);
}

.btn-primary i {
    width: 20px;
    height: 20px;
}

.btn-secondary {
    background: transparent;
    color: #e5e7eb;
    padding: 1rem 2rem;
    border: 1px solid #3a3a3a;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    background: #1a1a1a;
    border-color: #1D5D57;
}

.btn-secondary i {
    width: 20px;
    height: 20px;
}

.quick-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.quick-links a {
    color: #18a396;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.quick-links a:hover {
    color: #1bbeae;
    text-decoration: underline;
}

.quick-links a i {
    width: 16px;
    height: 16px;
}

.stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    margin-top: 3rem;
    padding: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #e5e7eb;
}

.stat-label {
    color: #6b7280;
    font-size: 0.9rem;
}

/* Features Section */
.features {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 4rem 2rem;
    background: #0a0a0a;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #e5e7eb;
}

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

.feature-card {
    padding: 2rem;
    border-radius: 12px;
    background: #0f0f0f;
    border: 1px solid #1f1f1f;
    /* transition: transform 0.3s, box-shadow 0.3s; */
}

/* .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(29, 93, 87, 0.5);
    border-color: #1D5D57;
} */

.feature-image {
    width: 100%;
    background: #1a1a1a;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border: 1px solid #2a2a2a;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.feature-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

/* Carousel styles */
.carousel {
    width: 100%;
    position: relative;
}

.carousel-images {
    width: 100%;
    position: relative;
}

.carousel-images img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    border-radius: 4px;
}

.carousel-images img.active {
    opacity: 1;
    position: relative;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
}

.carousel-control:hover {
    background: #18a396;
}

.carousel-control.prev {
    left: 8px;
}

.carousel-control.next {
    right: 8px;
}

.carousel-control i {
    width: 20px;
    height: 20px;
    color: #0a0a0a;
}

.carousel-control svg {
    stroke: #0a0a0a;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #e5e7eb;
}

.feature-card ul {
    list-style: none;
    padding-left: 0;
    padding-top: 1rem;
}

.feature-card li {
    padding: 0.5rem 0;
    color: #9ca3af;
    position: relative;
    padding-left: 1.5rem;
}

.feature-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1D5D57;
    font-weight: bold;
}

/* Installation Section */
.installation {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.installation h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.install-steps {
    max-width: 600px;
    margin: 2rem auto;
    text-align: left;
    background: rgba(0, 0, 0, 0.2);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.install-steps ol {
    padding-left: 1.5rem;
}

.install-steps li {
    margin: 1rem 0;
    font-size: 1.1rem;
}

/* About Section */
.about {
    max-width: 900px;
    margin: 4rem auto;
    padding: 4rem 2rem;
    background: #0a0a0a;
}

.about-content {
    background: #0f0f0f;
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid #1f1f1f;
}

.about h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #e5e7eb;
}

.about h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #7c3aed;
}

.about p {
    margin-bottom: 1rem;
    color: #9ca3af;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

/* Support Section */
.support {
    background: #0a0a0a;
    padding: 4rem 2rem;
    text-align: center;
}

.support h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #e5e7eb;
}

.support p {
    color: #9ca3af;
}

.support-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.sponsor-btn {
    background: #7c3aed;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s;
}

.sponsor-btn:hover {
    transform: translateY(-2px);
}

/* Footer */
footer {
    background: #0a0a0a;
    color: white;
    padding: 4rem 2rem 2rem;
    /* border-top: 1px solid #1f1f1f; */
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin: 0.5rem 0;
}

.footer-section a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #7c3aed;
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #1f1f1f;
    color: #6b7280;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        padding: 2rem;
        border-bottom: 1px solid #1f1f1f;
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .stats {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .quick-links {
        flex-direction: column;
        gap: 1.5rem;
        padding-left: 2rem;
        align-items: flex-start;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        padding-left: 1rem;
        margin-top: 0;
    }
}
