:root {
    --safety-orange: #d35400;
    --bg: #0a0a0a;
    --panel: #111111;
    --text: #a0a0a0;
    --border: #222;
}

* { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }
body { 
    background-color: var(--bg); color: var(--text); 
    font-family: 'Share Tech Mono', monospace; line-height: 1.6; overflow-x: hidden;
}

/* CRT SCANLINE OVERLAY */
body::before {
    content: ""; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.1) 50%), 
                linear-gradient(90deg, rgba(255, 0, 0, 0.03), rgba(Green, 255, 0, 0.01), rgba(0, 0, 255, 0.03));
    background-size: 100% 3px, 3px 100%; z-index: 9999; pointer-events: none; opacity: 0.3;
}

h1, h2, h3 { font-family: 'Special Elite', cursive; text-transform: uppercase; color: #fff; }

/* NAVIGATION */
nav {
    padding: 0 5%; height: 80px; border-bottom: 2px solid var(--safety-orange);
    background: #050505; display: flex; justify-content: space-between; align-items: center;
    position: sticky; top: 0; z-index: 100;
}
.nav-logo { height: 50px; width: auto; display: block; }
.nav-links a { 
    color: #666; text-decoration: none; margin-left: 20px; 
    font-size: 0.8rem; transition: 0.3s; text-transform: uppercase;
}
.nav-links a:hover { color: var(--safety-orange); }

/* INTERACTIVE TICKER */
.ticker-wrap {
    width: 100%; overflow: hidden; background: rgba(211, 84, 0, 0.05);
    border-bottom: 1px solid var(--border); padding: 6px 0; font-size: 0.75rem;
}
.ticker {
    display: inline-block; white-space: nowrap; animation: marquee 30s linear infinite; color: var(--safety-orange);
}
@keyframes marquee { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }

/* FLOATING HUD */
.floating-hud {
    position: fixed; bottom: 20px; right: 20px; display: flex; flex-direction: column; gap: 10px; z-index: 1000;
}
.hud-icon {
    width: 45px; height: 45px; background: #000; border: 1px solid var(--safety-orange);
    display: flex; justify-content: center; align-items: center;
    color: var(--safety-orange); text-decoration: none; font-weight: bold; transition: 0.2s;
}
.hud-icon:hover { background: var(--safety-orange); color: #000; transform: scale(1.1); }

/* LAYOUT BLOCKS */
.section { padding: 60px 5%; }
.container { max-width: 1200px; margin: auto; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.card { background: var(--panel); border: 1px solid var(--border); padding: 25px; transition: 0.3s; overflow: hidden; }
.card:hover { border-color: var(--safety-orange); transform: translateY(-5px); }
.card img { 
    width: 100%; height: 350px; object-fit: cover; border: 1px solid #1a1a1a; 
    margin-bottom: 20px; transition: 0.1s; filter: brightness(0.8);
}
.card:hover img { filter: sepia(1) hue-rotate(160deg) brightness(1.1); clip-path: polygon(0 2%, 100% 0, 100% 100%, 0 98%); }

.btn { 
    width: 100%; padding: 12px; border: 1px solid var(--border); background: #000; 
    color: #fff; text-decoration: none; text-align: center; display: inline-block; transition: 0.2s;
}
.btn:hover { background: var(--safety-orange); color: #000; }

.page-title { margin-bottom: 40px; border-left: 5px solid var(--safety-orange); padding-left: 20px; }
.price { color: var(--safety-orange); font-size: 1.4rem; display: block; margin: 15px 0; font-weight: bold; }

/* LOADOUT TOGGLES */
details { background: #111; border: 1px solid #222; padding: 15px; margin-bottom: 10px; cursor: pointer; }
summary { color: var(--safety-orange); font-family: 'Special Elite'; outline: none; }

footer { text-align: center; padding: 60px; font-size: 0.6rem; opacity: 0.3; }

@media (max-width: 768px) {
    nav { height: auto; flex-direction: column; padding: 15px; }
    .nav-links { margin-top: 15px; }
}