:root {
    --neon-green: #39FF14;
    --neon-lime: #00FF7F;
    --neon-pink: #FF10F0;
    --neon-cyan: #00FFFF;
    --neon-yellow: #FFFF00;
    --dark-bg: #0A0A0A;
    --card-bg: #111111;
    --text-light: #FFFFFF;
    --text-gray: #888888;
    --border-color: #222;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Neon grid background */
.neon-grid {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(57, 255, 20, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(57, 255, 20, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}

/* Neon weed leaf background */
.neon-leaf-bg {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vh;
    height: 80vh;
    max-width: 600px;
    max-height: 600px;
    min-width: 300px;
    min-height: 300px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.12;
    filter: blur(1px);
}

.neon-leaf-bg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 50px rgba(57, 255, 20, 0.5)) drop-shadow(0 0 100px rgba(57, 255, 20, 0.3));
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    height: 45px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-menu a:hover {
    color: var(--neon-green);
    text-shadow: 0 0 10px var(--neon-green);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    border-radius: 2px;
    transition: 0.3s;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.1;
}

.hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.1;
}

.neon-text {
    color: var(--neon-green);
    text-shadow:
        0 0 5px var(--neon-green),
        0 0 10px var(--neon-green),
        0 0 20px var(--neon-green),
        0 0 40px var(--neon-green);
    animation: neonPulse 2s ease-in-out infinite alternate;
}

@keyframes neonPulse {
    from {
        text-shadow:
            0 0 5px var(--neon-green),
            0 0 10px var(--neon-green),
            0 0 20px var(--neon-green);
    }
    to {
        text-shadow:
            0 0 10px var(--neon-green),
            0 0 20px var(--neon-green),
            0 0 40px var(--neon-green),
            0 0 80px var(--neon-green);
    }
}

.hero-tagline {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 10px;
    font-weight: 600;
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-neon {
    background: transparent;
    color: var(--neon-green);
    border: 2px solid var(--neon-green);
    box-shadow:
        0 0 10px var(--neon-green),
        inset 0 0 10px rgba(57, 255, 20, 0.1);
}

.btn-neon:hover {
    background: var(--neon-green);
    color: var(--dark-bg);
    box-shadow:
        0 0 20px var(--neon-green),
        0 0 40px var(--neon-green),
        inset 0 0 20px rgba(57, 255, 20, 0.3);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--border-color);
}

.btn-outline:hover {
    border-color: var(--neon-green);
    color: var(--neon-green);
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.3);
}

/* Floating lights */
.floating-lights {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.light {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: float 8s ease-in-out infinite;
}

.light-1 {
    width: 300px;
    height: 300px;
    background: rgba(57, 255, 20, 0.15);
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.light-2 {
    width: 200px;
    height: 200px;
    background: rgba(0, 255, 127, 0.1);
    bottom: 20%;
    left: 10%;
    animation-delay: 2s;
}

.light-3 {
    width: 250px;
    height: 250px;
    background: rgba(57, 255, 20, 0.1);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 4s;
}

.light-4 {
    width: 150px;
    height: 150px;
    background: rgba(255, 16, 240, 0.1);
    top: 30%;
    left: 20%;
    animation-delay: 1s;
}

.light-5 {
    width: 180px;
    height: 180px;
    background: rgba(0, 255, 255, 0.08);
    bottom: 30%;
    right: 15%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.1); }
}

/* Exclusive Heritage Section */
.exclusive {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(57, 255, 20, 0.02) 0%, transparent 100%);
    position: relative;
}

.exclusive-badge {
    text-align: center;
    margin-bottom: 20px;
}

.badge-pulse {
    display: inline-block;
    padding: 8px 24px;
    background: transparent;
    border: 2px solid var(--neon-pink);
    color: var(--neon-pink);
    font-family: 'Orbitron', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 0 5px var(--neon-pink);
    }
    50% {
        box-shadow: 0 0 20px var(--neon-pink), 0 0 30px var(--neon-pink);
    }
}

.neon-title {
    font-family: 'Orbitron', sans-serif;
    color: var(--neon-green);
    text-shadow:
        0 0 10px var(--neon-green),
        0 0 20px var(--neon-green),
        0 0 40px var(--neon-green);
}

.exclusive-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: center;
    margin-top: 40px;
}

.heritage-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.heritage-img {
    max-width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(57, 255, 20, 0.3));
}

.heritage-info h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.heritage-desc {
    color: var(--text-gray);
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 1.05rem;
}

.heritage-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 25px;
}

.heritage-features li {
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.check {
    color: var(--neon-green);
    font-size: 1.2rem;
    text-shadow: 0 0 10px var(--neon-green);
}

.heritage-cta {
    color: var(--neon-cyan);
    font-weight: 600;
    text-shadow: 0 0 10px var(--neon-cyan);
}

/* Features Section */
.features {
    padding: 80px 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--neon-green);
    box-shadow: 0 0 30px rgba(57, 255, 20, 0.2);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.neon-glow {
    filter: drop-shadow(0 0 10px var(--neon-green));
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-light);
}

.feature-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Products Section */
.products {
    padding: 100px 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.neon-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 35px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.neon-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-green), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.neon-card:hover::before {
    opacity: 1;
}

.neon-card:hover {
    border-color: var(--neon-green);
    box-shadow:
        0 0 20px rgba(57, 255, 20, 0.3),
        inset 0 0 20px rgba(57, 255, 20, 0.05);
    transform: translateY(-5px);
}

.exclusive-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--neon-pink);
    color: var(--dark-bg);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 0 15px var(--neon-pink);
}

.product-image {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 20px;
}

.product-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-light);
}

.product-card p {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.product-features {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.product-features li {
    background: rgba(57, 255, 20, 0.1);
    color: var(--neon-green);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(57, 255, 20, 0.3);
}

/* About Section */
.about {
    padding: 100px 0;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.about-text p {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.05rem;
}

.highlight {
    color: var(--neon-pink);
    text-shadow: 0 0 10px var(--neon-pink);
    font-weight: 600;
}

.about-stats {
    display: flex;
    gap: 50px;
    margin-top: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
}

.stat-label {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-top: 5px;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(57, 255, 20, 0.02) 0%, transparent 100%);
}

.neon-box {
    background: var(--card-bg);
    border-radius: 30px;
    padding: 60px;
    text-align: center;
    border: 1px solid var(--border-color);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.neon-box::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, var(--neon-green), var(--neon-pink), var(--neon-cyan), var(--neon-green));
    background-size: 400% 400%;
    z-index: -1;
    border-radius: 32px;
    animation: gradientBorder 8s ease infinite;
    opacity: 0.3;
}

@keyframes gradientBorder {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.cta-box h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-box p {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.age-warning {
    color: var(--neon-pink);
    font-size: 0.95rem;
    font-weight: 500;
    margin: 20px 0 25px;
    text-shadow: 0 0 10px var(--neon-pink);
}

/* Contact Section */
.contact {
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    margin-top: 50px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.neon-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    background: var(--card-bg);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.neon-icon:hover {
    border-color: var(--neon-green);
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.4);
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--text-light);
}

.contact-item p {
    color: var(--text-gray);
}

.contact-social h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.contact-social p {
    color: var(--text-gray);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link {
    background: var(--card-bg);
    padding: 12px 24px;
    border-radius: 10px;
    color: var(--text-light);
    text-decoration: none;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.social-link:hover {
    border-color: var(--neon-green);
    color: var(--neon-green);
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.3);
}

/* Footer */
.footer {
    background: #050505;
    padding: 50px 0 30px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-text {
    color: var(--text-gray);
    margin-bottom: 15px;
}

.footer-disclaimer {
    color: var(--text-gray);
    font-size: 0.8rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.7;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 75px;
        flex-direction: column;
        background: var(--card-bg);
        width: 100%;
        text-align: center;
        padding: 20px 0;
        border-bottom: 1px solid var(--border-color);
        transition: 0.3s;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .exclusive-content,
    .about-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .heritage-features {
        grid-template-columns: 1fr;
    }

    .about-stats {
        gap: 30px;
    }

    .neon-box {
        padding: 40px 25px;
    }

    .neon-box h2 {
        font-size: 1.8rem;
    }
}
