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

:root {
    /* Primary Colors */
    --neon-green: #22FF88;
    --cyber-green: #00FF9D;
    --dark-emerald: #064E3B;
    
    /* Accent Colors */
    --electric-lime: #A3FF12;
    --cyber-teal: #00FFC8;
    
    /* Backgrounds */
    --bg-dark: #020617;
    --bg-light: #0F172A;
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.06);
    --glass-border: rgba(255, 255, 255, 0.1);
    
    /* Typography */
    --font-heading: 'Orbitron', sans-serif;
    --font-heading-alt: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-ui: 'Rajdhani', sans-serif;
}

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

body {
    background: linear-gradient(135deg, var(--bg-dark), var(--bg-light));
    background-attachment: fixed;
    color: #ffffff;
    font-family: var(--font-body);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.font-poppins { font-family: var(--font-heading-alt); }
.font-ui { font-family: var(--font-ui); text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; }

a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Glassmorphism Classes */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(34, 255, 136, 0.15);
    border-color: rgba(34, 255, 136, 0.3);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 4px;
    font-family: var(--font-ui);
    font-size: 1.1rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(90deg, var(--neon-green), var(--cyber-teal));
    color: #000;
    font-weight: 700;
}

.btn-primary:hover {
    box-shadow: 0 0 20px var(--neon-green);
    color: #000;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--neon-green);
    color: var(--neon-green);
}

.btn-outline:hover {
    background: rgba(34, 255, 136, 0.1);
    box-shadow: 0 0 15px rgba(34, 255, 136, 0.5) inset;
}

.w-100 { width: 100%; }

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(2, 6, 23, 0.8);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand a {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-brand span {
    color: var(--neon-green);
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-menu li a {
    font-family: var(--font-ui);
    font-size: 1.1rem;
    position: relative;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--neon-green);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--neon-green);
}

.nav-menu li a:hover::after {
    width: 100%;
}

.nav-icons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-icons a {
    font-size: 1.2rem;
    position: relative;
}

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

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--neon-green);
    color: #000;
    font-size: 0.7rem;
    font-weight: bold;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    background: none;
    border: none;
    color: #fff;
}

/* Main Layout Setup */
main {
    padding-top: 80px; /* Offset for sticky nav */
}

section {
    padding: 5rem 5%;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(34, 255, 136, 0.3);
}

.section-header h2 span {
    color: var(--neon-green);
}

.section-header p {
    color: #aaa;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 120px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(34, 255, 136, 0.1) 0%, transparent 70%);
    z-index: -1;
    animation: pulseGlow 4s infinite alternate;
}

@keyframes pulseGlow {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    100% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}

.hero-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
}

.hero-text {
    flex: 1;
    min-width: 300px;
}

.hero-text h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px rgba(34, 255, 136, 0.4);
}

.hero-text h1 span {
    background: linear-gradient(90deg, var(--neon-green), var(--cyber-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text p {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.hero-image img {
    width: 100%;
    max-width: 600px;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(34, 255, 136, 0.3));
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 3rem 2rem;
}

.feature-icon {
    font-size: 3rem;
    color: var(--neon-green);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 15px var(--neon-green);
}

.feature-card h3 {
    font-family: var(--font-heading-alt);
    margin-bottom: 1rem;
}

/* Product Shop */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.product-card {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    background: rgba(0,0,0,0.3);
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image-wrapper img {
    transform: scale(1.1);
}

.badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--neon-green);
    color: #000;
    font-family: var(--font-ui);
    font-weight: 700;
    padding: 0.2rem 0.8rem;
    border-radius: 4px;
    font-size: 0.8rem;
    box-shadow: 0 0 10px var(--neon-green);
}

.product-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    color: var(--cyber-teal);
    font-size: 0.8rem;
    text-transform: uppercase;
    font-family: var(--font-ui);
    margin-bottom: 0.5rem;
}

.product-title {
    font-family: var(--font-heading-alt);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.product-rating {
    color: var(--electric-lime);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    margin-bottom: 1rem;
}

.product-price {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--neon-green);
}

/* Teams Section */
.teams-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-card {
    text-align: center;
    position: relative;
    overflow: hidden;
}

.team-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: rgba(0,0,0,0.5);
    border: 2px solid var(--neon-green);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(34, 255, 136, 0.2);
    overflow: hidden;
}

.team-logo img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.team-card h3 {
    margin-bottom: 1.5rem;
    color: #fff;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #cbd5e1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author i {
    font-size: 2rem;
    color: var(--neon-green);
}

.testimonial-author-info h4 {
    font-size: 1rem;
    margin: 0;
}

.testimonial-author-info span {
    font-size: 0.8rem;
    color: var(--cyber-teal);
    font-family: var(--font-ui);
}

/* Blog */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.blog-card {
    padding: 0;
    overflow: hidden;
}

.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid var(--glass-border);
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    font-family: var(--font-ui);
    color: var(--neon-green);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.blog-content h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-family: var(--font-heading-alt);
}

.read-more {
    color: var(--cyber-teal);
    font-family: var(--font-ui);
    font-weight: 700;
    text-transform: uppercase;
}

.read-more:hover {
    color: var(--neon-green);
    text-shadow: 0 0 8px var(--neon-green);
}

/* Page Headers (Shop, Teams, About, etc.) */
.page-header {
    padding: 8rem 5% 4rem;
    text-align: center;
    background: linear-gradient(to bottom, rgba(2, 6, 23, 0.9), transparent);
    border-bottom: 1px solid var(--glass-border);
    margin-bottom: 3rem;
}

.page-header h1 {
    font-size: 3rem;
    color: var(--neon-green);
    text-shadow: 0 0 20px rgba(34, 255, 136, 0.4);
}

/* Single Product Page */
.product-single {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
}

.product-gallery {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.product-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-details h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.product-details .price {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--neon-green);
    margin-bottom: 1.5rem;
}

.product-details .description {
    color: #cbd5e1;
    margin-bottom: 2rem;
}

.size-selector {
    margin-bottom: 2rem;
}

.size-selector h4 {
    margin-bottom: 1rem;
    font-family: var(--font-ui);
}

.size-options {
    display: flex;
    gap: 1rem;
}

.size-btn {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    cursor: pointer;
    font-family: var(--font-ui);
    font-weight: 600;
    transition: all 0.3s ease;
}

.size-btn:hover, .size-btn.active {
    border-color: var(--neon-green);
    color: var(--neon-green);
    box-shadow: 0 0 10px rgba(34, 255, 136, 0.3);
}

/* Contact Form */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.contact-info i {
    color: var(--neon-green);
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    width: 100%;
    background: rgba(0,0,0,0.3);
    border: 1px solid var(--glass-border);
    padding: 1rem;
    border-radius: 4px;
    color: #fff;
    font-family: var(--font-body);
}

.form-control:focus {
    outline: none;
    border-color: var(--neon-green);
    box-shadow: 0 0 10px rgba(34, 255, 136, 0.2);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* Legal Pages Content */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    color: var(--neon-green);
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
}

.legal-content p {
    margin-bottom: 1.5rem;
    color: #cbd5e1;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    list-style: disc;
    color: #cbd5e1;
}

/* Footer */
footer {
    background: rgba(2, 6, 23, 0.95);
    border-top: 1px solid var(--glass-border);
    padding: 4rem 5% 2rem;
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-family: var(--font-heading);
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-brand h3 span {
    color: var(--neon-green);
}

.footer-brand p {
    color: #aaa;
    margin-bottom: 1.5rem;
}

.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: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: #fff;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--neon-green);
    color: #000;
    box-shadow: 0 0 15px var(--neon-green);
    border-color: var(--neon-green);
}

.footer-links h4 {
    font-family: var(--font-ui);
    color: var(--cyber-teal);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    color: #aaa;
}

.footer-links ul li a:hover {
    color: var(--neon-green);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    color: #64748b;
    font-size: 0.9rem;
}

/* Toast Notification */
.toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.toast {
    background: rgba(2, 6, 23, 0.9);
    border: 1px solid var(--neon-green);
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 0 20px rgba(34, 255, 136, 0.2);
    transform: translateX(120%);
    transition: transform 0.3s ease;
    font-family: var(--font-ui);
    font-weight: 600;
}

.toast.show {
    transform: translateX(0);
}

.toast i {
    color: var(--neon-green);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-text h1 { font-size: 3rem; }
    .product-single { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .contact-container { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(2, 6, 23, 0.95);
        backdrop-filter: blur(15px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: left 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero {
        padding-top: 80px;
        text-align: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-text p {
        margin: 0 auto 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}