*,*::before,*::after{box-sizing:border-box}
:root{
    --deepBlue:#020617;
    --chemBlue:#0f172a;
    --neonCyan:#06b6d4;
    --neonBlue:#3b82f6;
    --glass:rgba(15,23,42,0.7);
    --border:rgba(59,130,246,0.1);
    --text:#e2e8f0;
    --text-muted:#64748b;
    --text-dim:#94a3b8;
}
html{scroll-behavior:smooth}
body{background:var(--deepBlue);color:var(--text);font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;margin:0;line-height:1.6;min-height:100vh;display:flex;flex-direction:column;position:relative}
body::before{content:'';position:fixed;inset:0;z-index:-2;background:url('/static/images/bg/background.webp') center/cover no-repeat;opacity:.25;filter:brightness(.4) saturate(.8)}
body::after{content:'';position:fixed;inset:0;z-index:-1;background:radial-gradient(ellipse at center,rgba(2,6,23,.6) 0%,rgba(2,6,23,.85) 100%)}
a{color:var(--neonCyan);text-decoration:none;transition:color .2s}
a:hover{color:#fff}
img{max-width:100%;height:auto}
input,textarea,select{padding:.75rem;border:1px solid rgba(255,255,255,.1);border-radius:4px;background:rgba(15,23,42,.6);color:var(--text);font-family:inherit;font-size:1rem}
input:focus,textarea:focus,select:focus{outline:2px solid var(--neonCyan);border-color:var(--neonCyan)}
label{display:block;margin:.5rem 0 .25rem;font-weight:600;color:var(--text-dim)}
button,input[type="submit"]{cursor:pointer;font-family:inherit}
button:disabled,input:disabled{opacity:.5;cursor:not-allowed}

::-webkit-scrollbar{width:6px}
::-webkit-scrollbar-track{background:var(--chemBlue)}
::-webkit-scrollbar-thumb{background:#1e293b;border-radius:3px}
::-webkit-scrollbar-thumb:hover{background:#334155}

.btn{display:inline-block;padding:.625rem 1.25rem;border:none;border-radius:4px;font-size:.8125rem;font-weight:600;font-family:"SFMono-Regular",Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;text-transform:uppercase;letter-spacing:.05em;cursor:pointer;transition:all .2s;text-align:center}
.btn-primary{background:linear-gradient(135deg,var(--neonBlue),var(--neonCyan));color:var(--deepBlue)}
.btn-primary:hover{opacity:.9;box-shadow:0 0 20px rgba(6,182,212,.3)}
.btn-outline{border:1px solid rgba(255,255,255,.2);color:#fff;background:transparent}
.btn-outline:hover{border-color:var(--neonCyan);color:var(--neonCyan)}
.btn-sm{padding:.375rem .75rem;font-size:.75rem}
.btn-xs{padding:.25rem .5rem;font-size:.625rem}

.content{max-width:1200px;margin:0 auto;padding:0 1rem}

/* HEADER */
header{position:fixed;width:100%;z-index:100;background:rgba(2,6,23,.95);backdrop-filter:blur(10px);border-bottom:1px solid rgba(255,255,255,.05)}
.nav-inner{width:100%;display:grid;grid-template-columns:auto 1fr auto;align-items:center;gap:1rem;height:4rem;padding:0 1rem}
.nav-left{justify-self:start;display:flex;align-items:center;gap:.5rem}
.nav-brand-icon{width:2rem;height:2rem;border-radius:4px;background:linear-gradient(135deg,var(--neonBlue),var(--neonCyan));display:flex;align-items:center;justify-content:center}
.nav-brand-icon svg{width:1.25rem;height:1.25rem;color:#fff}
.nav-brand{font-family:"SFMono-Regular",Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:.875rem;font-weight:700;letter-spacing:-.02em;color:#fff}
.nav-brand span{color:var(--neonCyan)}
.nav-center{justify-self:center;display:flex;gap:2rem;justify-content:center}
.nav-center a{color:var(--text-dim);font-family:"SFMono-Regular",Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:.6875rem;text-transform:uppercase;letter-spacing:.1em;transition:color .2s}
.nav-center a:hover{color:var(--neonCyan)}
.nav-right{justify-self:end;display:flex;align-items:center;gap:.75rem}
.nav-link{color:var(--text-dim);font-family:"SFMono-Regular",Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:.6875rem;text-transform:uppercase;letter-spacing:.05em;white-space:nowrap}
.nav-link:hover{color:var(--neonCyan)}

/* LANGUAGE SELECTOR - Server Side Form */
.lang-selector{display:flex;align-items:center;gap:.125rem}
.lang-form{display:inline}
.lang-btn{display:inline-flex;align-items:center;justify-content:center;width:1.75rem;height:1.75rem;border:1px solid transparent;background:transparent;font-size:.875rem;cursor:pointer;padding:0;border-radius:2px;transition:all .2s;opacity:.6}
.lang-btn:hover{opacity:1;background:rgba(255,255,255,.05)}
.lang-btn.active{opacity:1;background:rgba(6,182,212,.15);border-color:var(--neonCyan)}
.nav-separator{color:var(--text-muted);font-size:.625rem;opacity:.5}

/* CART ICON */
.cart-icon{position:relative;display:flex;align-items:center;padding:.25rem}
.cart-icon svg{width:1.125rem;height:1.125rem;color:var(--text-dim);transition:color .2s}
.cart-icon:hover svg{color:var(--neonCyan)}
.cart-badge{position:absolute;top:-.25rem;right:-.375rem;width:1rem;height:1rem;background:var(--neonCyan);color:var(--deepBlue);font-size:.5rem;font-weight:700;display:flex;align-items:center;justify-content:center;border-radius:50%;font-family:"SFMono-Regular",Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}

/* MOBILE MENU - CSS :target based toggle (ZERO JS) */
.mobile-menu-btn{display:flex;flex-direction:column;gap:4px;padding:.5rem;cursor:pointer;background:0;border:0;text-decoration:none}
.mobile-menu-btn span{display:block;width:1.25rem;height:2px;background:var(--text-dim);transition:all .2s}
.mobile-nav{display:none;position:fixed;top:4rem;left:0;right:0;bottom:0;background:var(--deepBlue);padding:1rem;z-index:99;flex-direction:column;gap:.5rem;overflow-y:auto}
.mobile-nav:target{display:flex}
.mobile-nav{box-shadow:0 0 50px rgba(0,0,0,.5)}
.mobile-nav a{display:block;padding:.75rem 1rem;color:var(--text-dim);font-family:"SFMono-Regular",Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:.875rem;border-radius:4px;transition:all .2s}
.mobile-nav a:hover{background:rgba(255,255,255,.05);color:var(--neonCyan)}

/* HERO */
.hero{position:relative;padding:0;text-align:center;overflow:hidden;min-height:65vh;display:flex;align-items:center;justify-content:center}
.hero-bg{position:absolute;inset:0;z-index:0}
.hero-bg img{width:100%;height:100%;object-fit:cover;object-position:center;opacity:.35}
.hero-bg::after{content:'';position:absolute;inset:0;background:linear-gradient(180deg,rgba(2,6,23,.5) 0%,rgba(2,6,23,.2) 30%,rgba(2,6,23,.2) 70%,rgba(2,6,23,.85) 100%)}
.hero-content{position:relative;z-index:10;max-width:800px;margin:0 auto;padding:8rem 1rem 4rem}
.hero-badge{display:inline-flex;align-items:center;gap:.5rem;padding:.375rem .75rem;border-radius:9999px;border:1px solid rgba(6,182,212,.3);background:rgba(6,182,212,.1);color:var(--neonCyan);font-family:"SFMono-Regular",Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:.625rem;margin-bottom:1.5rem;text-transform:uppercase;letter-spacing:.1em}
.hero-badge span{width:.375rem;height:.375rem;border-radius:50%;background:var(--neonCyan);animation:pulse 2s infinite}
.hero h1{font-size:clamp(1.75rem,5vw,3.5rem);font-weight:700;letter-spacing:-.02em;margin:0 0 1rem;line-height:1.1}
.hero h1 span{background:linear-gradient(135deg,var(--neonCyan),var(--neonBlue));-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}
.hero p{max-width:36rem;margin:0 auto 1.5rem;font-size:clamp(.875rem,2vw,1.125rem);color:var(--text-dim);font-weight:300}
.hero-buttons{display:flex;flex-direction:column;align-items:center;gap:.75rem}

/* STATS */
.stats{background:rgba(15,23,42,.5);border-top:1px solid rgba(255,255,255,.05);border-bottom:1px solid rgba(255,255,255,.05)}
.stats-inner{max-width:1200px;margin:0 auto;padding:2rem 1rem;display:grid;grid-template-columns:repeat(2,1fr);gap:1.5rem}
.stat{text-align:center}
.stat-value{font-family:"SFMono-Regular",Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:1.5rem;font-weight:700;color:var(--neonCyan);text-shadow:0 0 10px rgba(6,182,212,.5);display:block}
.stat-label{color:var(--text-muted);font-size:.625rem;font-family:"SFMono-Regular",Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;margin-top:.25rem;text-transform:uppercase;letter-spacing:.1em}

/* SECTIONS */
.section-header{display:flex;flex-direction:column;gap:1rem;margin:2rem 0}
.section-header h2{font-family:"SFMono-Regular",Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:1rem;color:#fff;margin:0;display:flex;align-items:center;gap:.5rem;text-transform:uppercase;letter-spacing:.05em}
.section-header h2 span{color:var(--neonCyan)}
.section-filters{display:flex;flex-wrap:wrap;gap:.5rem}
.filter-btn{padding:.375rem .75rem;font-family:"SFMono-Regular",Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:.625rem;color:#fff;background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.1);border-radius:4px;cursor:pointer;transition:all .2s;text-transform:uppercase}
.filter-btn:hover,.filter-btn.active{background:rgba(6,182,212,.15);border-color:var(--neonCyan);color:var(--neonCyan)}

/* PRODUCT GRID */
.product-grid{display:grid;grid-template-columns:repeat(1,1fr);gap:1rem;padding:1rem 0}
.product-card{background:rgba(15,23,42,.6);border:1px solid rgba(255,255,255,.05);border-radius:8px;overflow:hidden;transition:all .2s;position:relative;backdrop-filter:blur(4px)}
.product-card::before{content:'';position:absolute;top:0;left:0;right:0;height:1px;background:linear-gradient(90deg,transparent,var(--neonCyan),transparent);opacity:0;transition:opacity .2s}
.product-card:hover{border-color:rgba(6,182,212,.4);box-shadow:0 4px 20px rgba(6,182,212,.1)}
.product-card:hover::before{opacity:1}
.product-image-wrap{aspect-ratio:1;overflow:hidden;position:relative;background:#000;border:none}
.product-image-wrap img{width:calc(100% - 48px);height:calc(100% - 48px);object-fit:cover;opacity:.92;transition:all .3s;position:relative;z-index:1;margin:24px}
.product-card:hover .product-image-wrap img{transform:scale(1.02);opacity:1}
.product-image-wrap .img-placeholder{width:100%;height:100%;display:flex;align-items:center;justify-content:center;color:var(--text-muted);font-size:.75rem;font-family:"SFMono-Regular",Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}

/* === PRODUCT FRAME - Schwarzer Rahmen mit Molekülen === */
.product-frame{position:relative;width:100%;aspect-ratio:1;background:#000;border-radius:12px;padding:24px;box-sizing:border-box}
.product-frame-inner{position:relative;width:100%;height:100%;border-radius:4px;overflow:hidden;background:#0a0a0a}
.product-frame-inner img{width:100%;height:100%;object-fit:cover;display:block}

/* === FLIEGENDE MOLEKÜL-ICONS - NUR im Rahmen (außerhalb padding) === */
.product-frame .mol{position:absolute;z-index:10;pointer-events:none;background-size:contain;background-repeat:no-repeat}

/* === OBEN: Am inneren Rand des Rahmens (24px) === */
.mol-1{width:8px;height:8px;top:22px;left:28px;background-image:url('/static/images/molecules/molecule-1.svg');opacity:.4;animation:flowLeftRight 10s linear infinite}
.mol-2{width:7px;height:7px;top:24px;left:15%;background-image:url('/static/images/molecules/molecule-2.svg');opacity:.3;animation:flowLeftRight 11s linear infinite 0.8s}
.mol-3{width:9px;height:9px;top:20px;left:30%;background-image:url('/static/images/molecules/molecule-1.svg');opacity:.45;animation:flowLeftRight 9s linear infinite 1.6s}
.mol-4{width:7px;height:7px;top:26px;left:45%;background-image:url('/static/images/molecules/molecule-2.svg');opacity:.35;animation:flowLeftRight 12s linear infinite 2.4s}
.mol-5{width:8px;height:8px;top:22px;left:60%;background-image:url('/static/images/molecules/molecule-1.svg');opacity:.5;animation:flowLeftRight 10s linear infinite 3.2s}
.mol-6{width:7px;height:7px;top:28px;left:75%;background-image:url('/static/images/molecules/molecule-2.svg');opacity:.25;animation:flowLeftRight 11s linear infinite 4s}
.mol-7{width:9px;height:9px;top:21px;left:85%;background-image:url('/static/images/molecules/molecule-1.svg');opacity:.4;animation:flowLeftRight 9s linear infinite 4.8s}
.mol-8{width:7px;height:7px;top:25px;right:28px;background-image:url('/static/images/molecules/molecule-2.svg');opacity:.3;animation:flowLeftRight 12s linear infinite 5.6s}
.mol-9{width:8px;height:8px;top:22px;left:8%;background-image:url('/static/images/molecules/molecule-1.svg');opacity:.45;animation:flowLeftRight 10s linear infinite 6.4s}
.mol-10{width:7px;height:7px;top:27px;left:22%;background-image:url('/static/images/molecules/molecule-2.svg');opacity:.35;animation:flowLeftRight 11s linear infinite 7.2s}
.mol-11{width:9px;height:9px;top:19px;left:52%;background-image:url('/static/images/molecules/molecule-1.svg');opacity:.5;animation:flowLeftRight 9s linear infinite 8s}
.mol-12{width:7px;height:7px;top:26px;left:68%;background-image:url('/static/images/molecules/molecule-2.svg');opacity:.25;animation:flowLeftRight 12s linear infinite 8.8s}

/* === UNTEN: Am inneren Rand des Rahmens === */
.mol-13{width:8px;height:8px;bottom:22px;left:30px;background-image:url('/static/images/molecules/molecule-2.svg');opacity:.35;animation:flowLeftRight 10s linear infinite 0.4s}
.mol-14{width:7px;height:7px;bottom:25px;left:12%;background-image:url('/static/images/molecules/molecule-1.svg');opacity:.45;animation:flowLeftRight 11s linear infinite 1.2s}
.mol-15{width:9px;height:9px;bottom:21px;left:28%;background-image:url('/static/images/molecules/molecule-2.svg');opacity:.3;animation:flowLeftRight 9s linear infinite 2s}
.mol-16{width:7px;height:7px;bottom:27px;left:48%;background-image:url('/static/images/molecules/molecule-1.svg');opacity:.5;animation:flowLeftRight 12s linear infinite 2.8s}
.mol-17{width:8px;height:8px;bottom:23px;left:62%;background-image:url('/static/images/molecules/molecule-2.svg');opacity:.4;animation:flowLeftRight 10s linear infinite 3.6s}
.mol-18{width:7px;height:7px;bottom:28px;left:78%;background-image:url('/static/images/molecules/molecule-1.svg');opacity:.25;animation:flowLeftRight 11s linear infinite 4.4s}
.mol-19{width:9px;height:9px;bottom:20px;left:88%;background-image:url('/static/images/molecules/molecule-2.svg');opacity:.45;animation:flowLeftRight 9s linear infinite 5.2s}
.mol-20{width:7px;height:7px;bottom:26px;right:32px;background-image:url('/static/images/molecules/molecule-1.svg');opacity:.35;animation:flowLeftRight 12s linear infinite 6s}
.mol-21{width:8px;height:8px;bottom:22px;left:6%;background-image:url('/static/images/molecules/molecule-2.svg');opacity:.5;animation:flowLeftRight 10s linear infinite 6.8s}
.mol-22{width:7px;height:7px;bottom:28px;left:38%;background-image:url('/static/images/molecules/molecule-1.svg');opacity:.3;animation:flowLeftRight 11s linear infinite 7.6s}
.mol-23{width:9px;height:9px;bottom:24px;left:72%;background-image:url('/static/images/molecules/molecule-2.svg');opacity:.4;animation:flowLeftRight 9s linear infinite 8.4s}

/* === LINKS: Am inneren Rand des Rahmens === */
.mol-24{width:8px;height:8px;top:30px;left:24px;background-image:url('/static/images/molecules/molecule-1.svg');opacity:.4;animation:flowTopBottom 10s linear infinite}
.mol-25{width:7px;height:7px;top:12%;left:26px;background-image:url('/static/images/molecules/molecule-2.svg');opacity:.3;animation:flowTopBottom 11s linear infinite 0.8s}
.mol-26{width:9px;height:9px;top:25%;left:22px;background-image:url('/static/images/molecules/molecule-1.svg');opacity:.45;animation:flowTopBottom 9s linear infinite 1.6s}
.mol-27{width:7px;height:7px;top:38%;left:28px;background-image:url('/static/images/molecules/molecule-2.svg');opacity:.35;animation:flowTopBottom 12s linear infinite 2.4s}
.mol-28{width:8px;height:8px;top:52%;left:24px;background-image:url('/static/images/molecules/molecule-1.svg');opacity:.5;animation:flowTopBottom 10s linear infinite 3.2s}
.mol-29{width:7px;height:7px;top:65%;left:27px;background-image:url('/static/images/molecules/molecule-2.svg');opacity:.25;animation:flowTopBottom 11s linear infinite 4s}
.mol-30{width:9px;height:9px;top:78%;left:23px;background-image:url('/static/images/molecules/molecule-1.svg');opacity:.4;animation:flowTopBottom 9s linear infinite 4.8s}
.mol-31{width:7px;height:7px;top:88%;left:26px;background-image:url('/static/images/molecules/molecule-2.svg');opacity:.3;animation:flowTopBottom 12s linear infinite 5.6s}
.mol-32{width:8px;height:8px;top:8%;left:25px;background-image:url('/static/images/molecules/molecule-1.svg');opacity:.45;animation:flowTopBottom 10s linear infinite 6.4s}

/* === RECHTS: Am inneren Rand des Rahmens === */
.mol-33{width:8px;height:8px;top:25px;right:24px;background-image:url('/static/images/molecules/molecule-2.svg');opacity:.35;animation:flowTopBottom 10s linear infinite 0.4s}
.mol-34{width:7px;height:7px;top:15%;right:26px;background-image:url('/static/images/molecules/molecule-1.svg');opacity:.45;animation:flowTopBottom 11s linear infinite 1.2s}
.mol-35{width:9px;height:9px;top:32%;right:22px;background-image:url('/static/images/molecules/molecule-2.svg');opacity:.3;animation:flowTopBottom 9s linear infinite 2s}
.mol-36{width:7px;height:7px;top:48%;right:28px;background-image:url('/static/images/molecules/molecule-1.svg');opacity:.5;animation:flowTopBottom 12s linear infinite 2.8s}
.mol-37{width:8px;height:8px;top:62%;right:24px;background-image:url('/static/images/molecules/molecule-2.svg');opacity:.4;animation:flowTopBottom 10s linear infinite 3.6s}
.mol-38{width:7px;height:7px;top:75%;right:27px;background-image:url('/static/images/molecules/molecule-1.svg');opacity:.25;animation:flowTopBottom 11s linear infinite 4.4s}
.mol-39{width:9px;height:9px;top:85%;right:23px;background-image:url('/static/images/molecules/molecule-2.svg');opacity:.45;animation:flowTopBottom 9s linear infinite 5.2s}
.mol-40{width:7px;height:7px;top:95%;right:26px;background-image:url('/static/images/molecules/molecule-1.svg');opacity:.35;animation:flowTopBottom 12s linear infinite 6s}

/* === ECKEN: Am äußeren Rand der Ecken === */
.mol-41{width:10px;height:10px;top:4px;left:4px;background-image:url('/static/images/molecules/molecule-3.svg');opacity:.25;animation:cornerPulse 6s ease-in-out infinite}
.mol-42{width:10px;height:10px;top:4px;right:4px;background-image:url('/static/images/molecules/molecule-3.svg');opacity:.25;animation:cornerPulse 6s ease-in-out infinite 1.5s}
.mol-43{width:10px;height:10px;bottom:4px;left:4px;background-image:url('/static/images/molecules/molecule-3.svg');opacity:.25;animation:cornerPulse 6s ease-in-out infinite 3s}
.mol-44{width:10px;height:10px;bottom:4px;right:4px;background-image:url('/static/images/molecules/molecule-3.svg');opacity:.25;animation:cornerPulse 6s ease-in-out infinite 4.5s}

/* === ANIMATIONEN === */
@keyframes flowLeftRight{0%{transform:translateX(0);opacity:0}10%{opacity:.5}50%{opacity:.35}90%{opacity:.15}100%{transform:translateX(25%);opacity:0}}
@keyframes flowTopBottom{0%{transform:translateY(0);opacity:0}10%{opacity:.5}50%{opacity:.35}90%{opacity:.15}100%{transform:translateY(25%);opacity:0}}
@keyframes cornerPulse{0%,100%{transform:scale(1);opacity:.15}50%{transform:scale(1.2);opacity:.35}}
.product-badge{position:absolute;top:.5rem;left:.5rem;padding:.25rem .5rem;background:rgba(2,6,23,.85);font-family:"SFMono-Regular",Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:.5rem;color:var(--neonCyan);border:1px solid rgba(6,182,212,.2);border-radius:2px;text-transform:uppercase;letter-spacing:.05em;z-index:1}
.product-info{padding:1rem}
.product-header{display:flex;justify-content:space-between;align-items:flex-start;gap:.5rem;margin-bottom:.375rem}
.product-title{font-family:"SFMono-Regular",Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:.875rem;font-weight:600;color:#fff;margin:0}
.product-card:hover .product-title{color:var(--neonCyan)}
.product-price{font-family:"SFMono-Regular",Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-weight:700;color:var(--neonBlue);font-size:.875rem;white-space:nowrap}
.product-desc{color:var(--text-muted);font-size:.75rem;margin:0 0 .75rem;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;line-height:1.4}
.product-action{width:100%;padding:.625rem;background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.1);color:#fff;font-family:"SFMono-Regular",Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:.625rem;font-weight:600;text-transform:uppercase;letter-spacing:.1em;display:flex;align-items:center;justify-content:center;gap:.375rem;transition:all .2s;cursor:pointer}
.product-action:hover{background:var(--neonCyan);color:var(--deepBlue);border-color:var(--neonCyan)}
.product-action svg{width:.75rem;height:.75rem}

/* FORUM */
.forum-grid{display:grid;grid-template-columns:1fr;gap:1rem;padding:1rem 0}
.forum-card{display:block;padding:1rem;background:var(--deepBlue);border:1px solid rgba(255,255,255,.05);border-radius:8px;transition:all .2s}
.forum-card:hover{border-color:rgba(6,182,212,.3)}
.forum-card-header{display:flex;justify-content:space-between;align-items:flex-start;margin-bottom:.5rem;gap:.5rem}
.forum-card h3{font-family:"SFMono-Regular",Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-weight:600;color:#fff;margin:0;font-size:.875rem}
.forum-card:hover h3{color:var(--neonCyan)}
.forum-replies{font-family:"SFMono-Regular",Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:.625rem;color:var(--text-muted);white-space:nowrap}
.forum-card p{color:var(--text-muted);font-size:.75rem;margin:0;line-height:1.4}
.forum-meta{display:flex;align-items:center;gap:.375rem;margin-top:.75rem;font-family:"SFMono-Regular",Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:.625rem;color:var(--text-muted)}
.forum-meta span.dot{width:.375rem;height:.375rem;border-radius:50%;background:var(--neonCyan);flex-shrink:0}

/* NEWS */
.news-list{display:flex;flex-direction:column;gap:1rem;padding:1rem 0}
.news-card{display:flex;flex-direction:column;padding:1rem;background:var(--deepBlue);border:1px solid rgba(255,255,255,.05);border-radius:8px;gap:1rem}
.news-image{width:100%;height:8rem;background:var(--chemBlue);border-radius:4px;overflow:hidden;flex-shrink:0}
.news-image img{width:100%;height:100%;object-fit:cover;opacity:.8}
.news-content{flex:1}
.news-date{font-family:"SFMono-Regular",Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:.625rem;color:var(--neonCyan);margin-bottom:.5rem}
.news-content h3{font-family:"SFMono-Regular",Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-weight:600;color:#fff;font-size:.875rem;margin:0 0 .5rem}
.news-content p{color:var(--text-muted);font-size:.75rem;margin:0 0 .75rem;line-height:1.4}
.news-link{color:var(--neonCyan);font-family:"SFMono-Regular",Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:.75rem;display:inline-flex;align-items:center;gap:.25rem}
.news-link:hover{color:#fff}

/* POSTS */
.post{background:var(--chemBlue);padding:1rem;border-radius:8px;border:1px solid rgba(255,255,255,.05);border-left:3px solid var(--neonCyan)}
.post.op-post{border-left-color:var(--neonCyan)}
.post h1{color:var(--neonCyan);margin:0 0 .5rem;font-size:1.125rem;font-family:"SFMono-Regular",Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}
.post-meta{color:var(--text-muted);font-size:.75rem;margin-bottom:.75rem;font-family:"SFMono-Regular",Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}
.post-body{line-height:1.6;white-space:pre-wrap;font-size:.875rem}
.post-signature{margin-top:.75rem;padding-top:.75rem;border-top:1px solid rgba(255,255,255,.05);font-size:.75rem;color:var(--text-muted);font-style:italic}
.reply-form{background:var(--chemBlue);padding:1rem;border-radius:8px;margin-top:1rem;border:1px solid rgba(255,255,255,.05)}
.reply-form textarea{width:100%;height:120px;margin:.5rem 0;resize:vertical}

/* AUTH */
.auth-container{display:flex;align-items:center;justify-content:center;min-height:80vh;padding:1rem}
.auth-box{background:var(--chemBlue);border:1px solid rgba(255,255,255,.05);padding:1.5rem;border-radius:8px;max-width:24rem;width:100%}
.auth-box h1{font-family:"SFMono-Regular",Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:1.25rem;color:#fff;margin:0 0 1.25rem;text-align:center}
.auth-form{display:flex;flex-direction:column;gap:.5rem}
.auth-form input[type="text"],.auth-form input[type="password"],.auth-form input[type="email"]{width:100%;padding:.75rem;border:1px solid rgba(255,255,255,.1);border-radius:4px;background:rgba(15,23,42,.6);color:var(--text);font-family:inherit;font-size:1rem;margin:0}
.auth-form input[type="text"]:focus,.auth-form input[type="password"]:focus,.auth-form input[type="email"]:focus{outline:2px solid var(--neonCyan);border-color:var(--neonCyan)}
.auth-form input[type="hidden"]{display:none}
.auth-switch{text-align:center;margin-top:1rem;color:var(--text-muted);font-size:.875rem}
.auth-switch a{color:var(--neonCyan)}

/* ALERTS */
.alert{padding:.75rem 1rem;border-radius:4px;margin-bottom:1rem;font-size:.875rem}
.alert-error{background:rgba(220,38,38,.15);border:1px solid rgba(220,38,38,.3);color:#fca5a5}
.alert-success{background:rgba(5,150,105,.15);border:1px solid rgba(5,150,105,.3);color:#6ee7b7}

/* CART TABLE */
.cart-table{width:100%;border-collapse:collapse}
.cart-table th,.cart-table td{padding:.75rem .5rem;text-align:left;border-bottom:1px solid rgba(255,255,255,.05);font-size:.875rem}
.cart-table th{color:var(--neonCyan);font-family:"SFMono-Regular",Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:.75rem;font-weight:600}
.cart-table td{vertical-align:middle}
.cart-table .product-cell{display:flex;align-items:center;gap:.75rem}
.cart-table .product-img{width:3rem;height:3rem;border-radius:4px;object-fit:cover;background:var(--deepBlue)}
.qty-form{display:inline-flex;align-items:center;gap:.25rem}
.qty-form input[type="number"]{width:3rem;text-align:center;padding:.25rem;font-size:.75rem}
.cart-total-row{display:flex;justify-content:flex-end;align-items:center;gap:1rem;padding:1.5rem 0;font-family:"SFMono-Regular",Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:1.125rem;font-weight:700}
.cart-total-row span:last-child{color:var(--neonCyan);text-shadow:0 0 10px rgba(6,182,212,.5)}

/* ACCOUNT */
.account-card{background:var(--chemBlue);padding:1.25rem;border-radius:8px;border:1px solid rgba(255,255,255,.05)}
.account-card h3{font-family:"SFMono-Regular",Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:1rem;color:var(--neonCyan);margin:0 0 1rem}
.field{margin-bottom:1rem}
.field:last-child{margin-bottom:0}
.field-label{color:var(--text-muted);font-size:.75rem;display:block;margin-bottom:.25rem;font-family:"SFMono-Regular",Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}

/* EMPTY STATE */
.empty-state{text-align:center;padding:3rem 1rem;color:var(--text-muted)}
.empty-state h2{font-family:"SFMono-Regular",Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:1.125rem;color:#fff;margin:0 0 1rem}

/* ADMIN */
.admin-stats{display:grid;grid-template-columns:repeat(1,1fr);gap:1rem;margin:1.5rem 0}
.stat-card{background:var(--chemBlue);padding:1.25rem;border-radius:8px;text-align:center;border:1px solid rgba(255,255,255,.05)}
.stat-card .stat-value{font-size:1.75rem}
.stat-card .stat-label{font-size:.625rem}
.admin-section{background:var(--chemBlue);padding:1rem;border-radius:8px;margin-bottom:1rem;border:1px solid rgba(255,255,255,.05)}
.admin-section h3{color:var(--neonCyan);margin:0 0 .75rem;font-family:"SFMono-Regular",Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:.875rem}
.admin-form{display:flex;flex-wrap:wrap;gap:.5rem;align-items:center}
.admin-form input,.admin-form select{flex:1;min-width:8rem;font-size:.875rem}
.admin-table-wrap{background:var(--chemBlue);border-radius:8px;border:1px solid rgba(255,255,255,.05);overflow-x:auto}
.admin-table{width:100%;border-collapse:collapse;min-width:600px}
.admin-table th,.admin-table td{padding:.625rem .5rem;text-align:left;border-bottom:1px solid rgba(255,255,255,.05);font-size:.8125rem}
.admin-table th{color:var(--neonCyan);background:rgba(2,6,23,.5);font-family:"SFMono-Regular",Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:.6875rem;font-weight:600;text-transform:uppercase;white-space:nowrap}
.action-cell{display:flex;gap:.375rem;flex-wrap:wrap}

/* BADGES */
.badge{display:inline-block;padding:.125rem .375rem;border-radius:2px;font-size:.625rem;font-family:"SFMono-Regular",Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;text-transform:uppercase}
.badge-pending{background:rgba(217,119,6,.2);color:#fbbf24}
.badge-paid{background:rgba(5,150,105,.2);color:#34d399}
.badge-shipped{background:rgba(59,130,246,.2);color:#60a5fa}
.badge-completed{background:rgba(5,150,105,.2);color:#34d399}
.badge-cancelled{background:rgba(220,38,38,.2);color:#f87171}

/* EMPTY CART */
.cart-empty{text-align:center;padding:3rem 1rem}
.cart-empty h2{font-family:"SFMono-Regular",Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:1.125rem;color:#fff;margin:0 0 .5rem}
.cart-empty p{color:var(--text-muted);font-size:.875rem;margin:0 0 1.5rem}

/* FOOTER */
footer{border-top:1px solid rgba(255,255,255,.05);background:var(--deepBlue);padding:2rem 1rem;margin-top:auto}
.footer-inner{max-width:1200px;margin:0 auto;display:flex;flex-direction:column;align-items:center;gap:1rem;text-align:center}
.footer-copy{color:var(--text-muted);font-size:.75rem;font-family:"SFMono-Regular",Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}
.footer-copy small{display:block;opacity:.5;font-size:.625rem;margin-top:.25rem}
.footer-links{display:flex;flex-wrap:wrap;justify-content:center;gap:1rem}
.footer-links a{color:var(--text-muted);font-size:.75rem}
.footer-links a:hover{color:var(--neonCyan)}

/* MAIN */
main{flex:1;max-width:1200px;margin:0 auto;padding:5rem 1rem 2rem;width:100%}

/* ANIMATIONS */
@keyframes pulse{0%,100%{opacity:1}50%{opacity:.4}}

/* RESPONSIVE: Tablet */
@media(min-width:480px){
    .product-grid{grid-template-columns:repeat(2,1fr)}
    .stats-inner{grid-template-columns:repeat(4,1fr)}
    .hero-buttons{flex-direction:row}
    .admin-stats{grid-template-columns:repeat(2,1fr)}
}

/* RESPONSIVE: Desktop */
@media(min-width:768px){
    .nav-center{display:flex;gap:2rem}
    .product-grid{grid-template-columns:repeat(2,1fr);gap:1.25rem}
    .forum-grid{grid-template-columns:repeat(2,1fr)}
    .news-card{flex-direction:row}
    .news-image{width:12rem;height:auto;aspect-ratio:16/10}
    .section-header{flex-direction:row;align-items:center}
    .admin-stats{grid-template-columns:repeat(4,1fr)}
    .mobile-menu-btn{display:none}
    .mobile-nav{display:none !important}
}

/* RESPONSIVE: Large Desktop */
@media(min-width:1024px){
    .product-grid{grid-template-columns:repeat(3,1fr);gap:1.5rem}
    .hero{min-height:75vh}
    .hero-content{padding:10rem 2rem 5rem}
    .stats-inner{padding:2.5rem 2rem}
}

/* RESPONSIVE: Legacy Mobile */
@media(max-width:479px){
    .nav-inner{height:3.5rem}
    .nav-brand{font-size:.75rem}
    .nav-brand-icon{width:1.5rem;height:1.5rem}
    .nav-auth{gap:.375rem}
    .nav-link{font-size:.625rem}
    main{padding:4.5rem .75rem 1.5rem}
    .hero{min-height:50vh}
    .hero-content{padding:6rem .75rem 2.5rem}
    .hero-badge{font-size:.5rem;padding:.25rem .5rem}
    .hero-buttons .btn{width:100%}
    .btn{padding:.5rem 1rem;font-size:.6875rem}
    .product-grid{gap:.75rem}
    .product-info{padding:.75rem}
    .product-title{font-size:.8125rem}
    .product-price{font-size:.8125rem}
    .stat-value{font-size:1.25rem}
    .stat-label{font-size:.5rem}
    .section-header h2{font-size:.875rem}
    .filter-btn{padding:.25rem .5rem;font-size:.5625rem}
}

/* RESPONSIVE: Very small screens */
@media(max-width:359px){
    .nav-brand a{display:none}
    .hero{min-height:45vh}
    .hero-content{padding:5rem .5rem 2rem}
    .hero h1{font-size:1.5rem}
    .hero p{font-size:.8125rem}
    .stats-inner{gap:1rem}
    .stat{padding:.25rem}
}