body {
    background-color: #0a0a0a;
    color: #fff;
    font-family: monospace, monospace;
    margin: 0;
    padding: 0;
}

h1, h3, h4 {
    color: #0ff; /* cyan accent */
}

.slogan {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    max-width: 800px;
    margin: 0 auto;
}

.hero-logo {
    max-width: 400px;
    width: 100%;
    margin-bottom: 30px;
    height: auto;
}

.feature-card {
    border: 2px solid #0ff;
    border-radius: 4px;
    padding: 16px;
    margin: 8px;
}

.number {
    color: #0f0; /* green accent */
}

.download-btn {
    background-color: #ff6600;
    color: #0a0a0a;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 2px;
    margin: 5px;
}

section {
    padding: 40px 20px;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
}
.hero-logo {
    max-width: 400px;
    width: 100%;
    margin-bottom: 30px;
    height: auto;
}
.slogan {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    max-width: 800px;
    margin: 0 auto;
}
.download-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}
.screenshot-carousel {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
}
.carousel-container {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 20px 0;
}
.carousel-slide {
    flex: 0 0 auto;
    width: 280px;
}
.carousel-slide img {
    width: 100%;
    border: 2px solid #0ff;
    border-radius: 4px;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}
.step {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 30px;
    border: 2px solid #f60;
    border-radius: 4px;
}
.step-number {
    font-size: 3rem;
    color: #f60;
    min-width: 80px;
}
.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}
.screenshot-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border: 2px solid #0ff;
    border-radius: 4px;
    display: block;
}
.testimonials-carousel {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}
.testimonials-container {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: #0ff #0a0a0a;
}
.testimonials-container::-webkit-scrollbar {
    height: 8px;
}
.testimonials-container::-webkit-scrollbar-track {
    background: #0a0a0a;
}
.testimonials-container::-webkit-scrollbar-thumb {
    background: #0ff;
    border-radius: 4px;
}
.testimonial-card {
    flex: 0 0 auto;
    width: 280px;
    scroll-snap-align: start;
    border: 2px solid #f04;
    border-radius: 4px;
    padding: 30px;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.testimonial-card {
    border: 2px solid #f04;
    border-radius: 4px;
    padding: 30px;
}
.qr-codes {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-top: 50px;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}
.language-selector {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}
.language-selector select {
    background-color: #0a0a0a;
    color: #0ff;
    border: 2px solid #0ff;
    border-radius: 4px;
    padding: 8px 15px;
    font-family: monospace;
    font-size: 14px;
    cursor: pointer;
}
.language-selector select:hover {
    background-color: #0ff;
    color: #0a0a0a;
}
.language-selector select:focus {
    outline: none;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .features-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding: 20px 0;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: #0ff #0a0a0a;
    }
    .features-grid::-webkit-scrollbar {
        height: 8px;
    }
    .features-grid::-webkit-scrollbar-track {
        background: #0a0a0a;
    }
    .features-grid::-webkit-scrollbar-thumb {
        background: #0ff;
        border-radius: 4px;
    }
    .feature-card {
        flex: 0 0 auto;
        width: calc(100% - 40px);
        max-width: 320px;
        scroll-snap-align: start;
        margin: 0;
    }

    .screenshots-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 0;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: #0ff #0a0a0a;
    }
    .screenshots-grid::-webkit-scrollbar {
        height: 8px;
    }
    .screenshots-grid::-webkit-scrollbar-track {
        background: #0a0a0a;
    }
    .screenshots-grid::-webkit-scrollbar-thumb {
        background: #0ff;
        border-radius: 4px;
    }
    .screenshot-item {
        flex: 0 0 100%;
        width: 100%;
        scroll-snap-align: start;
    }
    .screenshot-item img {
        width: 100%;
        height: auto;
        max-height: 80vh;
        object-fit: contain;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    .cta-buttons .download-btn {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }

    section {
        text-align: center;
    }
    .section-title {
        text-align: center;
    }
}
