@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@400;700;900&family=Roboto:wght@400;700&display=swap');

:root {
    --primary: #9147ff;
    --secondary: #00ffaa;
    --dark: #0a0a0a;
    --darker: #050505;
    --light: #f5f5f5;
    --grey: #333333;
    --glow: 0 0 10px rgba(145, 71, 255, 0.7);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--dark);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--light);
}

h1, h2, h3, h4 {
    font-family: 'Exo 2', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.highlight {
    color: var(--primary);
    text-shadow: var(--glow);
}

header {
    background-color: rgba(10, 10, 10, 0.95);
    position: fixed;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
}

.logo {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary);
    text-shadow: var(--glow);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    font-size: 1rem;
    font-weight: 700;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--secondary);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: var(--light);
    transition: transform 0.3s, opacity 0.3s;
}
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 5%;
    background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(145, 71, 255, 0.15), transparent 50%);
    pointer-events: none;
}

.hero-content {
    max-width: 600px;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hero h2 {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: var(--dark);
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.2rem;
    transition: transform 0.3s, box-shadow 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

svg { 
    color: #008000;

}

.user-count {
    display: flex;
    align-items: center;
}

.counter {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    margin-right: 1rem;
}

.counter-text {
    font-size: 1rem;
    opacity: 0.8;
}

.hero-image {
    position: relative;
    flex-shrink: 0;
}

.hero-image img {
    height: 400px;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(145, 71, 255, 0.5);
    border: 2px solid rgba(145, 71, 255, 0.3);
}
.features {
    padding: 5rem 5%;
    background-color: var(--darker);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(0, 255, 170, 0.1), transparent 50%);
    pointer-events: none;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-transform: uppercase;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(20, 20, 20, 0.7);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(145, 71, 255, 0.3);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 0 15px rgba(145, 71, 255, 0.5);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--secondary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}
.screenshots {
    padding: 5rem 5%;
    background-color: var(--dark);
    text-align: center;
}

.screenshots h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-transform: uppercase;
}

.screenshot-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.carousel-container {
    overflow: hidden;
    padding: 2rem 0;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide {
    min-width: 300px;
    margin: 0 1rem;
    flex: 0 0 auto;
}

.carousel-slide img {
    height: 500px;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 255, 170, 0.3);
    border: 2px solid rgba(0, 255, 170, 0.2);
}

.carousel-slide p {
    margin-top: 1rem;
    font-weight: 700;
    color: var(--secondary);
}

.carousel-buttons {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.prev-button, .next-button {
    background-color: var(--grey);
    color: var(--light);
    border: none;
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    margin: 0 0.5rem;
    transition: background-color 0.3s, transform 0.3s;
}

.prev-button:hover, .next-button:hover {
    background-color: var(--primary);
    transform: scale(1.1);
}
.download {
    padding: 5rem 5%;
    background-color: var(--darker);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.download::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(145, 71, 255, 0.1), transparent 50%);
    pointer-events: none;
}

.download h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.download p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.download-button {
    display: inline-block;
    margin-bottom: 3rem;
    transition: transform 0.3s;
}

.download-button:hover {
    transform: scale(1.05);
}

.download-info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.download-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.download-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
}

.download-label {
    font-size: 1rem;
    opacity: 0.8;
}
.support {
    padding: 5rem 5%;
    background-color: var(--dark);
    text-align: center;
}

.support h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-transform: uppercase;
}

.support-options {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.support-card {
    background: rgba(20, 20, 20, 0.7);
    border-radius: 15px;
    padding: 2rem;
    width: 300px;
    text-align: center;
    transition: transform 0.3s;
    border: 1px solid rgba(145, 71, 255, 0.3);
}

.support-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 0 15px rgba(145, 71, 255, 0.5);
}

.support-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.support-card h3 {
    color: var(--secondary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.support-card p {
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.support-button {
    display: inline-block;
    background-color: var(--primary);
    color: var(--light);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    transition: transform 0.3s, background-color 0.3s;
}

.support-button:hover {
    transform: translateY(-5px);
    background-color: var(--secondary);
    color: var(--dark);
}
footer {
    background-color: var(--darker);
    padding: 3rem 5% 1rem;
    position: relative;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    font-family: 'Exo 2', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
    text-shadow: var(--glow);
}

.footer-links, .footer-legal {
    min-width: 150px;
}

footer h4 {
    color: var(--secondary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

footer ul {
    list-style: none;
}

footer li {
    margin-bottom: 0.5rem;
}

footer a {
    opacity: 0.7;
    transition: opacity 0.3s;
}

footer a:hover {
    opacity: 1;
}

.copyright {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    font-size: 0.9rem;
}
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 100px;
    }
    
    .hero-content {
        margin-bottom: 3rem;
    }
    
    .user-count {
        justify-content: center;
    }
    
    .hero-image img {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: rgba(5, 5, 5, 0.95);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: left 0.3s;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 1.5rem 0;
    }
    
    .hamburger {
        display: block;
    }
    
    .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(7px, -6px);
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero h2 {
        font-size: 1.2rem;
    }
    
    .hero-image img {
        height: 400px;
    }
    
    .carousel-slide img {
        height: 400px;
    }
    
    .support-options {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .hero-image img {
        height: 350px;
    }
    
    .carousel-slide img {
        height: 350px;
    }
    
    .screenshots h2, .features h2, .download h2, .support h2 {
        font-size: 2rem;
    }
    
    .download-info {
        gap: 1.5rem;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
@keyframes glow {
    0% { text-shadow: 0 0 5px rgba(145, 71, 255, 0.5); }
    50% { text-shadow: 0 0 20px rgba(145, 71, 255, 0.8); }
    100% { text-shadow: 0 0 5px rgba(145, 71, 255, 0.5); }
}

.logo {
    animation: glow 2s infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.hero-image {
    animation: float 6s ease-in-out infinite;
}