@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

:root {
    --bg-color: #121212;
    --primary-color: #f0f0f0;
    --accent-color: #39ff14; /* Neon green from logo */
    --secondary-accent: #c724b1; /* A pink/purple shade */
    --card-bg: #1e1e1e;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-color);
    color: var(--primary-color);
    overflow-x: hidden;
}

/* Header */
header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    background: rgba(18, 18, 18, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 5%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav .logo {
    height: 40px;
    width: auto;
}

.nav-links a {
    color: var(--primary-color);
    text-decoration: none;
    margin-left: 2rem;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover:not(.cta-button) {
    color: var(--accent-color);
}

.cta-button {
    background-color: var(--accent-color);
    color: var(--bg-color);
    padding: 0.8rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px var(--accent-color);
}

.nav-cta {
    padding: 0.5rem 1.5rem;
    font-weight: 600;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 5% 50px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-content {
    z-index: 2;
    max-width: 650px;
}

.hero-logo {
    width: 150px;
    margin-bottom: 1.5rem;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    margin-bottom: 2rem;
    color: rgba(240, 240, 240, 0.8);
}

.hero-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    filter: blur(5px) brightness(0.6);
    transform: scale(1.1);
}

.hero-images .hero-img {
    position: absolute;
    width: clamp(150px, 20vw, 250px);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* General Section Styling */
.features, .community-cta {
    padding: 100px 8%;
}

.section-title {
    text-align: center;
    font-size: clamp(2.2rem, 5vw, 2.8rem);
    margin-bottom: 4rem;
    font-weight: 700;
}

/* Features Section */
.feature-grid {
    display: grid;
    gap: 5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.feature-item.reverse {
    flex-direction: row-reverse;
}

.feature-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.feature-item img {
    width: 100%;
    max-width: 320px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    object-fit: contain;
}

.feature-text {
    flex: 1;
}

.feature-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    background: -webkit-linear-gradient(45deg, var(--accent-color), var(--secondary-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(240, 240, 240, 0.8);
}

/* Community CTA */
.community-cta {
    text-align: center;
    background: linear-gradient(45deg, var(--bg-color), #2a0a2f 60%, var(--secondary-accent));
    padding: 100px 5%;
    border-radius: 30px;
    margin: 50px 5%;
}

.community-content {
    max-width: 700px;
    margin: 0 auto;
}

.community-content h2 {
    font-size: clamp(2.2rem, 5vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.community-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: rgba(240, 240, 240, 0.9);
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem 5%;
    background-color: transparent;
    margin-top: 50px;
    color: rgba(240, 240, 240, 0.5);
}

/* Responsive Design */
@media (max-width: 900px) {
    .feature-item, .feature-item.reverse {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    .feature-item img {
        max-width: 350px;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 14px;
    }
    .nav-links a:not(.nav-cta) {
        display: none;
    }
    .nav-links {
        display: flex;
        justify-content: flex-end;
        width: 100%;
    }
    .hero-images {
       filter: blur(8px) brightness(0.4);
    }
}

