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

body {
            font-family: 'Geist', sans-serif;
            background: linear-gradient(135deg, #16294b 0%, #000000 100%);
            color: #ffffff;
            min-height: 100vh;
        }



        nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    background: rgba(0, 0, 0, 0.5);
}

.logo {
            display: flex;
            align-items: center;
            gap: 1rem;
            font-size: 2.5rem;
            font-weight: bold;
        }

        .logo-icon {
            width: 100px;
            height: 100px;
            object-fit: contain;
        }
        
        .logo-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .logo-text {
            color: #ffffff;
        }

        .logo-text span {
            color: #00b7ff;
        }

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

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

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

.shop-btn {
  display: flex;
    justify-content: space-between;  
  background: #00b7ff;
    color: #ffffff;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
}

.shop-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 170, 255, 0.4);
}


.hero {
    text-align: center;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}


.hero h1 {
    font-size: 7rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.hero .highlight {
    color: #00b7ff;
}

.hero p {
    font-size: 1.25rem;
    color: #b0b0b0;
    margin: 2rem auto;
    max-width: 600px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin: 3rem 0;
}

.btn-primary {
    background: #00b7ff;
    color: #000000;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}


.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 255, 136, 0.4);
}


.btn-secondary {
    background: transparent;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border: 2px solid #ffffff;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #ffffff;
    color: #000000;
}


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

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

.stat-number {
    font-size: 5rem;
    font-weight: 900;
    color: #00b7ff;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: #808080;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid #00b7ff;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-indicator::before {
    content: '';
    width: 6px;
    height: 10px;
    background: #00b7ff;
    border-radius: 3px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(20px);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }

    .stats {
        gap: 2rem;
        flex-wrap: wrap;
    }

    .nav-links {
        display: none;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
      .features-header h2 {
                font-size: 2.5rem;
            }

            .features-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
}

.features-section {
            padding: 6rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }


         .features-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .features-header h2 {
            font-size: 3.5rem;
            font-weight: 900;
            text-transform: uppercase;
            line-height: 1.1;
            margin-bottom: 1.5rem;
        }

        .features-header .highlight {
            color: #00b7ff;
        }

        .features-header p {
            font-size: 1.125rem;
            color: #a0a0a0;
            max-width: 600px;
            margin: 0 auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 2.5rem;
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(0, 255, 136, 0.3);
            transform: translateY(-5px);
        }

        .feature-icon {
            width: 64px;
            height: 64px;
            background: rgba(0, 255, 136, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin-bottom: 1.5rem;
        }

        .feature-card h3 {
            font-size: 1.75rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: #ffffff;
        }

        .feature-card p {
            font-size: 1rem;
            color: #a0a0a0;
            line-height: 1.6;
        }

@media (max-width: 480px) {
            nav {
                padding: 1rem;
            }

            .logo-icon {
                width: 35px;
                height: 35px;
            }

            .logo-text {
                font-size: 1rem;
            }

            .shop-btn {
                padding: 0.5rem 1rem;
                font-size: 0.8rem;
            }

            .hero h1 {
                font-size: 2rem;
            }

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

            .stat-number {
                font-size: 3rem;
            }

            .stats {
                gap: 1rem;
            }

            .features-section {
                padding: 4rem 1rem;
            }

            .features-header h2 {
                font-size: 2rem;
            }

            .feature-card {
                padding: 2rem;
            }
        }