/* Base Styles */
:root {
    --primary-color: #0f0; /* Neon Green */
    --primary-color-dark: #00d000;
    --secondary-color: #333;
    --background-dark: #111;
    --background-medium: #222;
    --text-color: #f5f5f5;
    --text-color-secondary: #aaa;
    --glow-effect: 0 0 10px rgba(0, 255, 0, 0.5);
    --card-background: rgba(40, 40, 40, 0.8);
    --transition-speed: 0.3s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background-dark);
    color: var(--text-color);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: var(--text-color);
    transition: color var(--transition-speed);
}

a:hover {
    color: var(--primary-color);
}

ul {
    list-style: none;
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

.highlight {
    color: var(--primary-color);
    text-shadow: var(--glow-effect);
}

button {
    cursor: pointer;
    transition: all var(--transition-speed);
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(17, 17, 17, 0.9);
    backdrop-filter: blur(5px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.shop-now-btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    transition: all var(--transition-speed);
}

.shop-now-btn:hover {
    background-color: var(--primary-color);
    color: var(--background-dark);
    box-shadow: var(--glow-effect);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 3px 0;
    transition: all var(--transition-speed);
}

/* Hero Section */
.hero {
    display: flex;
    min-height: 100vh;
    padding: 120px 5% 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #111 0%, #222 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 70%, rgba(0, 255, 0, 0.05), transparent 70%);
    z-index: 0;
}

.hero-content {
    flex: 1;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--text-color-secondary);
    max-width: 600px;
}

.cta-button {
    background-color: var(--primary-color);
    color: var(--background-dark);
    border: none;
    padding: 0.875rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    align-self: flex-start;
    box-shadow: var(--glow-effect);
}

.cta-button:hover {
    background-color: var(--primary-color-dark);
    transform: translateY(-2px);
}

.hero-image {
    flex: 1;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-image-container {
    position: relative;
    width: 300px;
    height: 400px;
}

.product-image-x {
    position: absolute;
    width: 220px;
    top: 50px;
    left: 0;
    transform: rotate(-15deg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border: 2px solid rgba(0, 255, 0, 0.3);
    transition: transform 0.3s ease;
}

.product-image-x:hover {
    transform: rotate(-10deg) scale(1.05);
}

.product-image-y {
    position: absolute;
    width: 220px;
    top: 20px;
    right: 0;
    transform: rotate(15deg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border: 2px solid rgba(0, 255, 0, 0.3);
    transition: transform 0.3s ease;
}

.product-image-y:hover {
    transform: rotate(10deg) scale(1.05);
}

/* Sections Common */
section {
    padding: 80px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

/* Product Showcase Section */
.products {
    background-color: var(--background-medium);
}

.product-cards {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.product-card {
    background: var(--card-background);
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    max-width: 400px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform var(--transition-speed);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.product-card .product-image {
    height: 200px;
    background-color: #1a1a1a;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.product-card .product-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-card .product-image img {
    max-width: 80%;
    max-height: 180px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.product-card .product-image img:hover {
    transform: scale(1.05);
}

.product-card .product-info {
    padding: 1.5rem;
}

.product-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.product-price {
    font-size: 1.25rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.product-description {
    color: var(--text-color-secondary);
    margin-bottom: 1rem;
}

.product-features {
    margin-bottom: 1.5rem;
}

.product-features li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.product-features i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.buy-now-btn {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--background-dark);
    border: none;
    padding: 0.75rem;
    font-weight: 600;
    border-radius: 5px;
    font-size: 1rem;
}

.buy-now-btn:hover {
    background-color: var(--primary-color-dark);
}

/* How It Works Section */
.how-it-works {
    background-color: var(--background-dark);
}

.steps {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 2rem;
    background: var(--card-background);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.step-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-shadow: var(--glow-effect);
}

.step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.step p {
    color: var(--text-color-secondary);
}

/* Shipping & Refund Policy Section */
.shipping-policy {
    background-color: var(--background-medium);
}

.policy-items {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.policy-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 2rem;
    background: var(--card-background);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.policy-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-shadow: var(--glow-effect);
}

.policy-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.policy-item p {
    color: var(--text-color-secondary);
}

/* Footer */
footer {
    background-color: #0a0a0a;
    padding: 4rem 5% 1rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.footer-logo {
    flex: 1;
    min-width: 200px;
}

.footer-logo img {
    height: 40px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-links {
    flex: 2;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-section {
    min-width: 150px;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: var(--text-color);
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-color-secondary);
    font-size: 0.9rem;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-contact {
    flex: 1;
    min-width: 200px;
}

.footer-contact h4 {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 1.25rem;
    color: var(--text-color-secondary);
}

.footer-contact i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    transition: all var(--transition-speed);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    color: var(--background-dark);
    transform: translateY(-2px);
}

.social-icons i {
    font-size: 1.2rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: var(--text-color-secondary);
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 100px;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .cta-button {
        align-self: center;
    }
    
    .hero-image {
        margin-top: 2rem;
    }
    
    .product-x-image,
    .product-y-image {
        transform: rotate(0);
    }
    
    .product-cards,
    .steps,
    .policy-items {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-links,
    .mobile-hidden {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 2.3rem;
    }
    
    section h2 {
        font-size: 2rem;
    }
    
    .step,
    .policy-item {
        min-width: 100%;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(17, 17, 17, 0.98);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 999;
    transform: translateY(-100%);
    transition: transform 0.4s;
}

.mobile-nav.active {
    transform: translateY(0);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.mobile-nav-links a {
    font-size: 1.5rem;
    font-weight: 600;
}

.close-nav {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Animations */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 255, 0, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 255, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 255, 0, 0);
    }
}

@keyframes screen-glow {
    0% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        opacity: 0.3;
    }
}

.pulse {
    animation: pulse 2s infinite;
}
