:root {
    --primary: #39FF14;
    --primary-dim: rgba(57, 255, 20, 0.2);
    --secondary: #127500;
    --dark-bg: #050505;
    --card-bg: #0f0f0f;
    --text-white: #ffffff;
    --text-gray: #a0a0a0;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --font-heading: 'Teko', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    --nav-height: 60px;
    --bottom-nav-height: 70px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-white);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
    padding-bottom: var(--bottom-nav-height); /* Space for mobile nav */
}

/* === UTILITIES & ANIMATIONS === */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.skew-btn {
    display: inline-block;
    background: var(--primary);
    color: #000;
    padding: 12px 30px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    text-transform: uppercase;
    text-decoration: none;
    transform: skewX(-15deg);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px var(--primary-dim);
}

.skew-btn span {
    display: block;
    transform: skewX(15deg);
}

.skew-btn:hover {
    background: #fff;
    box-shadow: 0 0 25px var(--primary);
    transform: skewX(-15deg) scale(1.05);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: #000;
}

.glass-card {
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 20px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.glass-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.5);
}

/* === HEADER === */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    max-height: 35px;
    width: auto;
    display: block;
}

.desktop-nav {
    display: none;
}

.desktop-nav a {
    color: var(--text-white);
    text-decoration: none;
    margin: 0 20px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.desktop-nav a:hover {
    color: var(--primary);
}

.header-actions {
    display: flex;
    gap: 15px;
}

.icon-btn {
    color: var(--text-white);
    font-size: 1.2rem;
    position: relative;
    transition: color 0.3s;
}

.icon-btn:hover {
    color: var(--primary);
}

.badge {
    position: absolute;
    top: -5px;
    right: -8px;
    background: var(--primary);
    color: #000;
    font-size: 0.7rem;
    font-weight: bold;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* === HERO SECTION === */
.hero-section {
    position: relative;
    padding-top: calc(var(--nav-height) + 40px);
    padding-bottom: 60px;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.stripe {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(57, 255, 20, 0.1), transparent);
    transform: skewX(-20deg);
}

.stripe-1 {
    width: 200px;
    height: 120%;
    top: -10%;
    left: 20%;
    filter: blur(20px);
}

.stripe-2 {
    width: 100px;
    height: 120%;
    top: -10%;
    right: 10%;
    filter: blur(40px);
    background: linear-gradient(90deg, transparent, rgba(18, 117, 0, 0.3), transparent);
}

.glow-orb {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--primary);
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.2;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
}

.glitch-text {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 0.9;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-white);
    margin-bottom: 10px;
    position: relative;
}

.sub-headline {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.hero-desc {
    color: var(--text-gray);
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-can {
    width: 100%;
    max-width: 280px;
    z-index: 2;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.8));
}

.can-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    opacity: 0.4;
    z-index: 1;
}

.price-tag {
    margin-top: 15px;
    font-weight: 600;
    color: var(--text-white);
    font-size: 0.9rem;
}

/* === HIGHLIGHTS === */
.highlights-section {
    padding: 60px 0;
}

.section-header {
    margin-bottom: 30px;
}

.section-header h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    text-transform: uppercase;
    color: var(--text-white);
}

.line-accent {
    width: 60px;
    height: 4px;
    background: var(--primary);
    margin-top: 5px;
    border-radius: 2px;
}

.grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.highlight-card {
    text-align: left;
}

.icon-box {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.highlight-card h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    text-transform: uppercase;
    margin-bottom: 10px;
    line-height: 1;
}

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

/* === INGREDIENTS === */
.ingredients-section {
    padding: 60px 0;
    background: linear-gradient(180deg, transparent, rgba(57, 255, 20, 0.02), transparent);
}

.ingredients-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.tech-circle-container {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto;
    border-radius: 50%;
    border: 2px solid var(--glass-border);
    display: flex;
    justify-content: center;
    align-items: center;
}

.radar-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border-top: 2px solid var(--primary);
    border-right: 2px solid transparent;
    animation: spin 4s linear infinite;
}

.center-stat {
    text-align: center;
    z-index: 2;
}

.center-stat span {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary);
    line-height: 1;
}

.center-stat small {
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--text-white);
}

.ingredient-item {
    margin-bottom: 20px;
}

.ing-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 0.95rem;
}

.ing-val {
    color: var(--primary);
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: #222;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 5px;
}

.fill {
    height: 100%;
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary);
}

.ing-desc {
    font-size: 0.8rem;
    color: var(--text-gray);
}

/* === BENEFITS === */
.benefits-section {
    padding: 60px 0;
}

.center-text {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefits-grid {
    grid-template-columns: repeat(3, 1fr); /* 3 in a row on mobile too for icons */
    gap: 10px;
}

.benefit-box {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 20px 10px;
    text-align: center;
    transition: 0.3s;
}

.benefit-box:hover {
    border-color: var(--primary);
    background: rgba(57, 255, 20, 0.05);
}

.hex-icon {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.benefit-box h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    text-transform: uppercase;
}

/* === STREAMERS === */
.streamers-section {
    padding: 60px 0;
}

.streamer-scroller {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding-bottom: 20px;
    scrollbar-width: none; /* Hide scrollbar Firefox */
}

.streamer-scroller::-webkit-scrollbar {
    display: none; /* Hide scrollbar Chrome */
}

.streamer-card {
    min-width: 120px;
    text-align: center;
}

.avatar-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 10px;
}

.avatar-wrapper img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--primary);
    object-fit: cover;
}

.live-badge {
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    background: red;
    color: white;
    font-size: 0.6rem;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: bold;
}

.streamer-card h4 {
    font-size: 0.9rem;
    margin-bottom: 2px;
}

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

.center-btn-wrapper {
    text-align: center;
    margin-top: 30px;
}

/* === SOCIAL PROOF === */
.social-proof-section {
    padding: 60px 0;
}

.testimonials-grid {
    display: grid;
    gap: 20px;
}

.testimonial-card .stars {
    color: #FFD700;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.testimonial-card p {
    font-style: italic;
    font-size: 0.95rem;
    margin-bottom: 15px;
    color: #ddd;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-info img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.user-info h5 {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.user-info small {
    color: var(--text-gray);
    font-size: 0.75rem;
}

/* === NEWSLETTER === */
.newsletter-section {
    padding: 40px 0 80px;
}

.newsletter-box {
    text-align: center;
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(57, 255, 20, 0.05));
}

.newsletter-box h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--text-white);
}

.newsletter-form {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.newsletter-form input {
    background: rgba(0,0,0,0.5);
    border: 1px solid var(--glass-border);
    padding: 15px;
    border-radius: 5px;
    color: #fff;
    font-family: var(--font-body);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary);
}

/* === FOOTER === */
footer {
    background: #000;
    padding: 60px 0 30px;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    max-width: 150px;
    margin-bottom: 15px;
}

.footer-col h4 {
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-col a {
    display: block;
    color: var(--text-gray);
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--primary);
}

.copyright {
    text-align: center;
    color: #555;
    font-size: 0.8rem;
    border-top: 1px solid #111;
    padding-top: 20px;
}

/* === MOBILE BOTTOM NAV === */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: var(--bottom-nav-height);
    background: #0a0a0a;
    border-top: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.7rem;
    gap: 5px;
    transition: color 0.3s;
}

.nav-item i {
    font-size: 1.2rem;
}

.nav-item.active, .nav-item:hover {
    color: var(--primary);
}

/* === RESPONSIVE MEDIA QUERIES === */

/* Tablet (768px+) */
@media (min-width: 768px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        text-align: left;
    }
    
    .hero-desc {
        margin-left: 0;
    }
    
    .ingredients-layout {
        flex-direction: row;
        align-items: center;
    }
    
    .tech-circle-container {
        width: 300px;
        height: 300px;
    }
    
    .newsletter-form {
        flex-direction: row;
        justify-content: center;
    }
    
    .newsletter-form input {
        width: 300px;
    }

    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
    body {
        padding-bottom: 0;
    }
    
    .mobile-bottom-nav {
        display: none;
    }
    
    .desktop-nav {
        display: block;
    }

    .glitch-text {
        font-size: 5rem;
    }

    .hero-can {
        max-width: 350px;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Animations */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

.floating-anim {
    animation: float 4s ease-in-out infinite;
}

.reveal-up, .reveal-left, .reveal-right {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal-left { transform: translateX(-30px); }
.reveal-right { transform: translateX(30px); }

.active-reveal {
    opacity: 1;
    transform: translate(0);
}