:root {
    --acid-lime: #CCFF00;
    --hot-pink: #FF3CAC;
    --deep-black: #0D0D0D;
    --void-purple: #1A1A2E;
    --electric-cyan: #00F5FF;
    --soft-white: #F5F5F5;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Chillax', sans-serif;
    background: var(--deep-black);
    color: var(--soft-white);
    overflow-x: hidden;
    cursor: none;
}

.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--acid-lime);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease, background 0.2s ease;
    mix-blend-mode: difference;
}

.cursor.hover {
    transform: scale(2);
    background: var(--acid-lime);
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(13, 13, 13, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(204, 255, 0, 0.1);
}

.logo {
    font-family: 'Clash Display', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--acid-lime);
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.logo span { color: var(--hot-pink); }

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    color: var(--soft-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--acid-lime);
    transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--acid-lime); }
.nav-links a:hover::after { width: 100%; }

.cart-btn {
    background: transparent;
    border: 2px solid var(--acid-lime);
    color: var(--acid-lime);
    padding: 0.75rem 1.5rem;
    font-family: 'Chillax', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cart-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--acid-lime);
    transition: left 0.3s ease;
    z-index: -1;
}

.cart-btn:hover { color: var(--deep-black); }
.cart-btn:hover::before { left: 0; }

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--hot-pink);
    color: var(--deep-black);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.floating-badge {
    position: absolute;
    padding: 0.75rem 1.5rem;
    background: rgba(26, 26, 46, 0.9);
    border: 1px solid rgba(204, 255, 0, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--soft-white);
    backdrop-filter: blur(10px);
    z-index: 5;
}

.badge-1 { top: 25%; left: 10%; animation: float 6s ease-in-out infinite; }
.badge-2 { top: 35%; right: 10%; animation: float 7s ease-in-out infinite 0.5s; }

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

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 0 2rem;
}

.hero-tag {
    font-family: 'Clash Display', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--acid-lime);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: 'Clash Display', sans-serif;
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 700;
    line-height: 0.95;
    margin-bottom: 1.5rem;
}

.hero-title .line1 { display: block; color: var(--soft-white); }
.hero-title .line2 {
    display: block;
    color: transparent;
    -webkit-text-stroke: 2px var(--acid-lime);
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    color: rgba(245, 245, 245, 0.7);
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn-primary {
    background: var(--acid-lime);
    color: var(--deep-black);
    padding: 1.2rem 2.5rem;
    font-family: 'Chillax', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(204, 255, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--soft-white);
    padding: 1.2rem 2.5rem;
    font-family: 'Chillax', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: 2px solid rgba(245, 245, 245, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--hot-pink);
    color: var(--hot-pink);
}

.products { padding: 8rem 3rem; position: relative; }

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

.section-tag {
    font-family: 'Clash Display', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--hot-pink);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Clash Display', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    color: var(--soft-white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.product-card {
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid rgba(204, 255, 0, 0.1);
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
    cursor: pointer;
}

.product-card:hover {
    border-color: var(--acid-lime);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(204, 255, 0, 0.1);
}

.product-image {
    height: 300px;
    background: linear-gradient(135deg, var(--void-purple) 0%, var(--deep-black) 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-3d-preview {
    width: 200px;
    height: 200px;
    perspective: 1000px;
}

.cube {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    animation: rotateCube 8s linear infinite;
}

@keyframes rotateCube {
    0% { transform: rotateX(0deg) rotateY(0deg); }
    100% { transform: rotateX(360deg) rotateY(360deg); }
}

.cube-face {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 2px solid var(--acid-lime);
    background: rgba(204, 255, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Clash Display', sans-serif;
    font-size: 1.5rem;
    color: var(--acid-lime);
}

.cube-face:nth-child(1) { transform: rotateY(0deg) translateZ(100px); }
.cube-face:nth-child(2) { transform: rotateY(90deg) translateZ(100px); }
.cube-face:nth-child(3) { transform: rotateY(180deg) translateZ(100px); }
.cube-face:nth-child(4) { transform: rotateY(-90deg) translateZ(100px); }
.cube-face:nth-child(5) { transform: rotateX(90deg) translateZ(100px); }
.cube-face:nth-child(6) { transform: rotateX(-90deg) translateZ(100px); }

.product-info { padding: 1.5rem; }

.product-category {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--hot-pink);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 0.5rem;
}

.product-name {
    font-family: 'Clash Display', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--soft-white);
    margin-bottom: 0.5rem;
}

.product-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--acid-lime);
    margin-bottom: 1rem;
}

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

.btn-add-cart {
    flex: 1;
    background: var(--acid-lime);
    color: var(--deep-black);
    padding: 0.75rem 1rem;
    font-family: 'Chillax', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-add-cart:hover { background: var(--soft-white); }

.btn-wishlist {
    width: 45px;
    background: transparent;
    border: 1px solid rgba(245, 245, 245, 0.2);
    color: var(--soft-white);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-wishlist:hover {
    border-color: var(--hot-pink);
    color: var(--hot-pink);
}

.features {
    padding: 8rem 3rem;
    background: linear-gradient(180deg, var(--deep-black) 0%, var(--void-purple) 50%, var(--deep-black) 100%);
    position: relative;
    overflow: hidden;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(26, 26, 46, 0.3);
    border: 1px solid rgba(204, 255, 0, 0.1);
    transition: all 0.4s ease;
}

.feature-card:hover {
    border-color: var(--acid-lime);
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border: 2px solid var(--acid-lime);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.feature-title {
    font-family: 'Clash Display', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--soft-white);
    margin-bottom: 1rem;
}

.feature-desc {
    font-size: 0.95rem;
    color: rgba(245, 245, 245, 0.6);
    line-height: 1.6;
}

.showcase {
    padding: 8rem 3rem;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.showcase-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.showcase-content { position: relative; z-index: 10; }

.showcase-title {
    font-family: 'Clash Display', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.showcase-title span { color: var(--acid-lime); }

.showcase-desc {
    font-size: 1.1rem;
    color: rgba(245, 245, 245, 0.7);
    line-height: 1.7;
    margin-bottom: 2rem;
}

#showcase-canvas {
    width: 100%;
    height: 500px;
    border: 1px solid rgba(204, 255, 0, 0.2);
}

footer {
    padding: 4rem 3rem 2rem;
    border-top: 1px solid rgba(204, 255, 0, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto 4rem;
}

.footer-desc {
    font-size: 0.95rem;
    color: rgba(245, 245, 245, 0.6);
    line-height: 1.6;
    margin-top: 1rem;
}

.footer-title {
    font-family: 'Clash Display', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--soft-white);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.75rem; }

.footer-links a {
    color: rgba(245, 245, 245, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover { color: var(--acid-lime); }

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(245, 245, 245, 0.1);
    font-size: 0.85rem;
    color: rgba(245, 245, 245, 0.4);
}

@media (max-width: 1024px) {
    .features-grid { grid-template-columns: 1fr; }
    .showcase-container { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    nav { padding: 1rem 1.5rem; }
    .nav-links { display: none; }
    .hero-cta { flex-direction: column; align-items: center; }
    .products-grid { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; gap: 2rem; }
    .cursor { display: none; }
    body { cursor: auto; }
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--deep-black); }
::-webkit-scrollbar-thumb { background: var(--acid-lime); }
::-webkit-scrollbar-thumb:hover { background: var(--hot-pink); }