body {
    font-family: 'Audiowide', sans-serif;
    background: linear-gradient(135deg, #0a0a24, #111144);
    color: #e0e0ff;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}


html, body {
    scrollbar-width: none; 
    -ms-overflow-style: none; 
}
html::-webkit-scrollbar, 
body::-webkit-scrollbar {
    display: none;
}


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 6%;
    background: rgba(20, 20, 60, 0.6);
    backdrop-filter: blur(8px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 10;
}

.logo {
    font-size: 1.6rem;
    color: #8a9eff;
    letter-spacing: 2px;
}


.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: radial-gradient(circle at top, #20205a, #0a0a24);
    padding: 2rem;
    margin-top: 70px;
}

.hero-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    text-align: left;
    max-width: 1100px;
}

.hero-text {
    flex: 1;
    min-width: 300px;
    animation: fadeInUp 1.2s ease-out;
}

.hero-text h1 {
    font-size: 3rem;
    color: #9daaff;
    margin-bottom: 1rem;
}

.hero-text h1 span {
    color: #7ac7ff;
}

.hero-text p {
    font-size: 1.1rem;
    color: #d0d0ff;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.join-btn {
    background: linear-gradient(90deg, #6671ff, #9b6cff);
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s;
    font-size: 1rem;
}

.join-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(120, 130, 255, 0.6);
}


.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 1.5s ease-in-out;
}

.hero-image img {
    max-width: 300px;
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(120, 100, 255, 0.4);
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 4rem 10%;
    background: #0e0e2a;
}

.feature {
    background: rgba(40, 40, 80, 0.7);
    border-radius: 20px;
    padding: 2rem;
    width: 280px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(130, 140, 255, 0.3);
}

.feature h3 {
    color: #9b7bff;
    margin-bottom: 0.8rem;
}

.feature p {
    color: #c8c8ff;
    font-size: 0.95rem;
}

footer {
    text-align: center;
    padding: 1.5rem;
    background: rgba(20, 20, 60, 0.8);
    color: #aaaaff;
    font-size: 0.9rem;
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 900px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    .hero-text {
        text-align: center;
    }
    .hero-image img {
        max-width: 220px;
    }

}
