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

:root {
    --text-color: #00f0ff; 
    --accent-color: #ff00ea;
    --font-base: 'Rajdhani', sans-serif;
    --font-size: 16px;

    --neon-glow: 0 0 5px var(--accent-color), 0 0 10px var(--accent-color), 0 0 20px var(--accent-color);
    --cyan-glow: 0 0 5px var(--text-color), 0 0 10px var(--text-color);
    --bg-dark: rgba(9, 5, 16, 0.85);
}

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

body, a, button, input, select, textarea, .card, .action-btn, .partner-card, .doc-card, .admin-drawer { 
    cursor: url('IMG_2380.png') 16 16, auto !important; 
}

body {
    background-color: #000; 
    color: var(--text-color);
    font-family: var(--font-base); 
    font-size: var(--font-size);
    line-height: 1.6; 
    position: relative; 
    min-height: 100vh; 
    overflow-x: hidden; 
    transition: background-color 0.5s ease;
}

/* --- THEMATIC BACKGROUNDS --- */
.synthwave-bg { 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100vw; 
    height: 100vh; 
    background: linear-gradient(to bottom, #090510 0%, #1a0b2e 50%, #000 100%); 
    z-index: -4; 
    transition: background 1s ease; 
}

.synthwave-sun { 
    position: fixed; 
    bottom: 30vh; 
    left: 50%; 
    transform: translateX(-50%); 
    width: 400px; 
    height: 400px; 
    border-radius: 50%; 
    background: linear-gradient(to bottom, #ff00ea 0%, #ffea00 100%); 
    box-shadow: 0 0 80px #ff00ea; 
    z-index: -3; 
    -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 50%, transparent 52%, black 52%, black 60%, transparent 60%, transparent 63%, black 63%, black 75%, transparent 75%, transparent 80%, black 80%, black 100%); 
    transition: all 1s ease; 
}

.cyber-grid { 
    position: fixed; 
    bottom: 0; 
    left: -50%; 
    width: 200%; 
    height: 40vh; 
    background-image: linear-gradient(rgba(0, 240, 255, 0.4) 2px, transparent 2px), linear-gradient(90deg, rgba(0, 240, 255, 0.4) 2px, transparent 2px); 
    background-size: 50px 50px; 
    transform: perspective(600px) rotateX(70deg); 
    z-index: -2; 
    animation: gridMove 2s linear infinite; 
    transition: all 1s ease; 
}

.blue-goo { 
    position: fixed; 
    bottom: 0; 
    left: 0; 
    width: 200%; 
    height: 35vh; 
    background: radial-gradient(circle, rgba(0,240,255,0.4) 0%, transparent 60%); 
    filter: blur(40px); 
    opacity: 0.8; 
    animation: flowGoo 10s infinite alternate ease-in-out; 
    z-index: -1; 
    pointer-events: none; 
}

.blue-goo:nth-child(2) { 
    background: radial-gradient(circle, rgba(255,0,234,0.3) 0%, transparent 60%); 
    animation: flowGoo 15s infinite alternate-reverse ease-in-out; 
    left: -50%; 
}

body::after { 
    content: " "; 
    display: block; 
    position: fixed; 
    top: 0; 
    left: 0; 
    bottom: 0; 
    right: 0; 
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06)); 
    z-index: 9999; 
    background-size: 100% 3px, 3px 100%; 
    pointer-events: none; 
    box-shadow: inset 0 0 100px rgba(0,0,0,0.9); 
    animation: flicker 0.15s infinite; 
}

@keyframes gridMove { 
    0% { background-position: 0 0; } 
    100% { background-position: 0 50px; } 
}

@keyframes flowGoo { 
    0% { transform: translateX(0) scaleY(1); } 
    100% { transform: translateX(-15%) scaleY(1.3); } 
}

@keyframes flicker { 
    0% { opacity: 0.95; } 
    50% { opacity: 1; } 
    100% { opacity: 0.98; } 
}

h1, h2, h3, .logo { 
    font-family: 'Teko', sans-serif; 
    letter-spacing: 2px; 
}

.parsed-link { 
    color: var(--accent-color); 
    text-decoration: underline; 
    text-shadow: 0 0 5px var(--accent-color); 
    transition: 0.3s; 
}

.parsed-link:hover { 
    color: #fff; 
    text-shadow: 0 0 10px #fff; 
}

.glitch { 
    position: relative; 
    color: #fff; 
    font-size: 2.5rem; 
    font-weight: 600; 
    text-shadow: var(--neon-glow); 
    user-select: none; 
}

.glitch::before, .glitch::after { 
    content: attr(data-text); 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: transparent; 
}

.glitch::before { 
    left: 2px; 
    text-shadow: -2px 0 red; 
    clip: rect(24px, 550px, 90px, 0); 
    animation: glitch-anim 3s infinite linear alternate-reverse; 
}

.glitch::after { 
    left: -2px; 
    text-shadow: -2px 0 blue; 
    clip: rect(85px, 550px, 140px, 0); 
    animation: glitch-anim 2.5s infinite linear alternate-reverse; 
}

@keyframes glitch-anim { 
    0% { clip: rect(10px, 9999px, 86px, 0); } 
    5% { clip: rect(70px, 9999px, 12px, 0); } 
    10% { clip: rect(35px, 9999px, 98px, 0); } 
    15% { clip: rect(93px, 9999px, 45px, 0); } 
    20% { clip: rect(2px, 9999px, 76px, 0); } 
    25% { clip: rect(10px, 9999px, 86px, 0); } 
    100% { clip: rect(10px, 9999px, 86px, 0); } 
}

/* Navbar */
header { 
    background-color: rgba(9, 5, 16, 0.95); 
    padding: 1rem 2rem; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    border-bottom: 2px solid var(--accent-color); 
    box-shadow: var(--neon-glow); 
    position: sticky; 
    top: 0; 
    z-index: 100; 
}

.nav-buttons { 
    display: flex; 
    gap: 1rem; 
    align-items: center; 
}

button { 
    font-family: 'Teko', sans-serif; 
    font-size: 1.2rem; 
    background-color: rgba(0,0,0,0.5); 
    color: var(--text-color); 
    border: 2px solid var(--text-color); 
    padding: 0.5rem 1.5rem; 
    transition: all 0.3s ease; 
    text-transform: uppercase; 
    box-shadow: var(--cyan-glow); 
}

button:hover { 
    background-color: var(--text-color); 
    color: #000; 
    box-shadow: 0 0 15px var(--text-color); 
    transform: scale(1.05); 
}

/* VIAL DROPDOWN MENU */
.vial-menu-wrapper { 
    position: relative; 
    display: inline-block; 
}

.vial-btn { 
    border-color: #39ff14; 
    color: #39ff14; 
    box-shadow: 0 0 10px #39ff14; 
    display: flex; 
    align-items: center; 
    gap: 5px; 
}

.vial-btn:hover { 
    background-color: #39ff14; 
    color: #000; 
    box-shadow: 0 0 20px #39ff14; 
}

.dropdown-menu { 
    position: absolute; 
    top: 120%; 
    right: 0; 
    background: rgba(10, 5, 20, 0.95); 
    border: 2px solid #39ff14; 
    box-shadow: 0 0 15px #39ff14; 
    border-radius: 5px; 
    min-width: 200px; 
    display: flex; 
    flex-direction: column; 
    opacity: 0; 
    transform: translateY(-10px); 
    pointer-events: none; 
    transition: 0.3s ease; 
    z-index: 200; 
}

.dropdown-menu.active { 
    opacity: 1; 
    transform: translateY(0); 
    pointer-events: auto; 
}

.dropdown-menu a { 
    color: #fff; 
    padding: 12px 20px; 
    text-decoration: none; 
    font-family: 'Teko', sans-serif; 
    font-size: 1.3rem; 
    border-bottom: 1px solid rgba(57, 255, 20, 0.3); 
    transition: 0.2s; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
}

.dropdown-menu a:last-child { 
    border-bottom: none; 
}

.dropdown-menu a:hover { 
    background: rgba(57, 255, 20, 0.2); 
    color: #39ff14; 
    text-shadow: 0 0 5px #39ff14; 
    padding-left: 25px;
}

/* Slideshow */
.slideshow-container { 
    max-width: 1200px; 
    margin: 2rem auto; 
    height: 350px; 
    position: relative; 
    overflow: hidden; 
    border: 3px solid var(--text-color); 
    box-shadow: var(--cyan-glow); 
    background: #000; 
    display: none; 
    z-index: 10; 
}

.slide { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    opacity: 0; 
    transition: opacity 1s ease-in-out; 
    object-fit: cover; 
}

.slide.active { 
    opacity: 1; 
}

/* Custom Links Section */
.custom-links { 
    max-width: 1200px; 
    margin: 1rem auto; 
    display: flex; 
    justify-content: center; 
    gap: 1rem; 
    flex-wrap: wrap; 
    z-index: 10; 
    position: relative; 
}

.custom-links a { 
    color: var(--accent-color); 
    background: rgba(0,0,0,0.7); 
    text-decoration: none; 
    font-family: 'Teko', sans-serif; 
    font-size: 1.5rem; 
    border: 1px solid var(--accent-color); 
    padding: 0.5rem 1.5rem; 
    box-shadow: var(--neon-glow); 
    transition: 0.3s; 
}

.custom-links a:hover { 
    background: var(--accent-color); 
    color: #000; 
    transform: translateY(-3px); 
}

/* Main Container */
.container { 
    max-width: 1200px; 
    margin: 2rem auto; 
    padding: 0 1rem; 
    position: relative; 
    z-index: 10; 
}

.site-paragraph { 
    font-size: 1.5rem; 
    text-align: center; 
    color: #fff; 
    text-shadow: var(--cyan-glow); 
    margin-bottom: 2rem; 
    font-family: 'Teko', sans-serif; 
}

/* Controls / Filters */
.controls { 
    display: flex; 
    gap: 1rem; 
    margin-bottom: 2rem; 
    flex-wrap: wrap; 
    width: 100%; 
    max-width: 100%; 
}

.controls select, .controls input { 
    padding: 0.5rem; 
    border: 1px solid var(--text-color); 
    background-color: rgba(0,0,0,0.7); 
    color: var(--text-color); 
    outline: none; 
    flex: 1; 
    min-width: 0; 
    max-width: 100%; 
    font-family: var(--font-base); 
    box-shadow: inset 0 0 5px rgba(0, 240, 255, 0.2); 
    text-overflow: ellipsis; 
    white-space: nowrap; 
    overflow: hidden; 
}

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

.card { 
    background-color: rgba(15, 10, 30, 0.9); 
    border: 1px solid var(--accent-color); 
    overflow: hidden; 
    box-shadow: 0 0 15px rgba(255, 0, 234, 0.3); 
    transition: transform 0.3s ease, box-shadow 0.3s ease; 
    display: flex; 
    flex-direction: column; 
    cursor: pointer; 
}

.card:hover { 
    transform: translateY(-8px); 
    box-shadow: var(--neon-glow); 
}

.card-img-container { 
    width: 100%; 
    height: 200px; 
    overflow: hidden; 
    background-color: #000; 
    border-bottom: 2px solid var(--text-color); 
    position: relative; 
}

.card img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: transform 0.5s ease; 
    filter: contrast(1.2) saturate(1.2); 
}

.card:hover img { 
    transform: scale(1.05); 
}

.card-content { 
    padding: 1.5rem; 
    flex-grow: 1; 
    display: flex; 
    flex-direction: column; 
    pointer-events: none; 
}

.card-title { 
    font-size: 1.8rem; 
    color: #fff; 
    text-shadow: var(--cyan-glow); 
    margin-bottom: 0.5rem; 
}

.card-tags { 
    display: flex; 
    gap: 0.5rem; 
    flex-wrap: wrap; 
    margin-bottom: 1rem; 
}

.tag { 
    border: 1px solid var(--accent-color); 
    font-size: 0.75rem; 
    padding: 0.2rem 0.5rem; 
    color: var(--accent-color); 
    text-transform: uppercase; 
}

.price { 
    font-size: 1.8rem; 
    font-family: 'Teko', sans-serif; 
    color: var(--accent-color); 
    text-shadow: var(--neon-glow); 
    margin-top: auto;
}

/* Forms */
.form-row { 
    display: flex; 
    gap: 1rem; 
}

.form-group { 
    margin-bottom: 1rem; 
    flex: 1; 
}

.form-group label { 
    display: block; 
    margin-bottom: 0.5rem; 
    color: var(--text-color); 
    font-family: 'Teko', sans-serif; 
    font-size: 1.2rem; 
    letter-spacing: 1px; 
}

.form-group input, .form-group textarea, .form-group select { 
    width: 100%; 
    padding: 0.75rem; 
    border: 1px solid var(--accent-color); 
    background-color: #111; 
    color: #fff; 
    font-family: var(--font-base); 
    font-size: 1rem; 
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus { 
    outline: 2px solid var(--text-color); 
    background-color: #1a1a1a; 
}

.submit-btn { 
    width: 100%; 
    padding: 1rem; 
    background-color: var(--accent-color); 
    color: #000; 
    border: none; 
    font-size: 1.5rem; 
    margin-top: 1rem; 
    box-shadow: var(--neon-glow); 
}

.submit-btn:hover { 
    background-color: #fff; 
    color: var(--accent-color); 
}

/* General Modals */
.modal { 
    display: none; 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background-color: rgba(0, 0, 0, 0.9); 
    justify-content: center; 
    align-items: center; 
    z-index: 1000; 
}

.modal.active { 
    display: flex; 
    animation: fadeIn 0.3s ease-out; 
}

.modal-content { 
    background-color: rgba(15, 10, 30, 0.95); 
    padding: 2rem; 
    border: 2px solid var(--text-color); 
    width: 90%; 
    max-width: 600px; 
    max-height: 90vh; 
    overflow-y: auto; 
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.4); 
    position: relative; 
    transition: all 0.3s ease; 
}

/* 75/25 Split Layout */
.split-layout { 
    display: flex; 
    gap: 2rem; 
}

.split-75 { 
    flex: 3; 
}

.split-25 { 
    flex: 1; 
    border-left: 2px dashed var(--accent-color); 
    padding-left: 1.5rem; 
}

/* Partner Cards & Calendar */
.partner-card { 
    background: rgba(0,0,0,0.8); 
    border: 1px solid var(--text-color); 
    padding: 1rem; 
    margin-bottom: 1rem; 
    box-shadow: 0 0 10px rgba(0,240,255,0.2); 
    transition: 0.3s; 
    text-decoration: none; 
    display: block; 
    color: #fff; 
}

.partner-card:hover { 
    transform: translateX(5px); 
    box-shadow: var(--cyan-glow); 
    background: rgba(0,240,255,0.1); 
}

.partner-name { 
    font-family: 'Teko', sans-serif; 
    font-size: 2rem; 
    color: #fff; 
    margin-bottom: 0.2rem; 
    text-shadow: var(--cyan-glow); 
    text-transform: uppercase; 
    line-height: 1; 
}

.partner-owner { 
    font-family: monospace; 
    color: var(--accent-color); 
    font-size: 1rem; 
    margin-bottom: 0.5rem; 
}

.partner-focus { 
    color: #ccc; 
    font-size: 0.95rem; 
}

.event-card { 
    background: #111; 
    border-left: 4px solid var(--accent-color); 
    padding: 0.8rem; 
    margin-bottom: 1rem; 
}

.event-date { 
    font-family: 'Teko', sans-serif; 
    color: var(--accent-color); 
    font-size: 1.6rem; 
    line-height: 1.2; 
    text-shadow: var(--neon-glow); 
}

.event-title { 
    font-weight: bold; 
    color: #fff; 
    margin-bottom: 0.3rem; 
}

.event-desc { 
    font-size: 0.9rem; 
    color: #aaa; 
}

/* IFRAME MODAL FIXES */
.iframe-modal-content { 
    max-width: 1000px; 
    width: 95%; 
    height: 85vh; 
    padding: 1rem; 
    display: flex; 
    flex-direction: column; 
}

.iframe-wrapper { 
    flex-grow: 1; 
    width: 100%; 
    border: 2px solid var(--text-color); 
    background: #000; 
    overflow: hidden; 
    position: relative; 
}

.iframe-wrapper iframe { 
    width: 100%; 
    height: 100%; 
    border: none; 
}

.fullscreen-modal { 
    width: 100vw !important; 
    height: 100vh !important; 
    max-width: 100vw !important; 
    max-height: 100vh !important; 
    border: none !important; 
    border-radius: 0 !important; 
    margin: 0 !important; 
    padding: 40px 10px 10px 10px !important; 
    position: fixed !important; 
    top: 0 !important; 
    left: 0 !important; 
    z-index: 10000 !important; 
}

/* Post Cards (Blog) */
.post-card { 
    background: #050505; 
    border: 1px solid #39ff14; 
    padding: 1.5rem; 
    margin-bottom: 1.5rem; 
    box-shadow: inset 0 0 10px rgba(57, 255, 20, 0.1); 
    border-left: 5px solid #39ff14; 
}

.post-title { 
    font-family: 'Teko', sans-serif; 
    font-size: 2rem; 
    color: #fff; 
    text-shadow: 0 0 5px #39ff14; 
    margin-bottom: 0.5rem; 
    text-transform: uppercase; 
}

.post-date { 
    font-size: 0.9rem; 
    color: #888; 
    font-family: monospace; 
    margin-bottom: 1rem; 
}

.post-content { 
    color: #ddd; 
    white-space: pre-wrap; 
    font-size: 1.1rem; 
    line-height: 1.6; 
}

/* Doc Cards (PDFs) */
.doc-card { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    background: #050505; 
    border: 1px solid var(--text-color); 
    padding: 1rem; 
    margin-bottom: 1rem; 
    transition: 0.3s; 
}

.doc-card:hover { 
    box-shadow: inset 0 0 15px rgba(0, 240, 255, 0.3); 
    transform: scale(1.02); 
}

.doc-title { 
    font-family: 'Teko', sans-serif; 
    font-size: 1.5rem; 
    color: #fff; 
}

.doc-desc { 
    font-size: 0.9rem; 
    color: #aaa; 
}

/* Zoom Image Modal */
#imgZoomModal .modal-content { 
    background: transparent; 
    border: none; 
    box-shadow: none; 
    max-width: 90%; 
    text-align: center; 
    position: relative; 
}

#imgZoomModal img { 
    max-width: 100%; 
    max-height: 80vh; 
    border: 3px solid var(--accent-color); 
    box-shadow: var(--neon-glow); 
}

.glitch-close { 
    position: absolute; 
    top: -30px; 
    right: 0; 
    font-size: 3rem; 
    color: #ff00ea; 
    background: transparent; 
    border: none; 
    text-shadow: 0 0 15px #ff00ea; 
    z-index: 10001; 
    animation: staticFlicker 0.2s infinite; 
    font-family: 'Teko', sans-serif; 
    box-shadow: none; 
    padding: 0; 
    width: 50px; 
    height: 50px; 
    line-height: 50px; 
}

.glitch-close:hover { 
    background: transparent; 
    transform: scale(1.2); 
    box-shadow: none; 
}

/* Quick View */
.quick-view-flex { 
    display: flex; 
    gap: 2rem; 
    flex-wrap: wrap; 
}

.quick-view-img { 
    flex: 1; 
    min-width: 250px; 
    position: relative; 
}

.quick-view-img img { 
    width: 100%; 
    border: 2px solid var(--accent-color); 
    box-shadow: var(--neon-glow); 
}

.qv-arrow { 
    background: rgba(0,0,0,0.8); 
    color: var(--text-color); 
    border: 1px solid var(--text-color); 
    padding: 2px 10px; 
    font-family: 'Teko', sans-serif; 
    font-size: 1.5rem; 
    transition: 0.2s; 
    box-shadow: none; 
}

.qv-arrow:hover { 
    background: var(--text-color); 
    color: #000; 
    box-shadow: var(--cyan-glow); 
}

.quick-view-info { 
    flex: 1; 
    min-width: 250px; 
    display: flex; 
    flex-direction: column; 
}

.quick-view-desc { 
    color: #ccc; 
    margin: 1rem 0; 
    flex-grow: 1; 
    font-size: 1.1rem; 
}

.modal-header { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    margin-bottom: 1.5rem; 
    border-bottom: 1px solid var(--accent-color); 
    padding-bottom: 10px; 
}

.close-btn { 
    background: none; 
    border: none; 
    box-shadow: none; 
    color: var(--accent-color); 
    font-size: 2rem; 
    padding: 0; 
}

.close-btn:hover { 
    color: #fff; 
    background: transparent; 
    box-shadow: none; 
    transform: scale(1.2);
}

.key-box { 
    border: 2px dashed var(--text-color); 
    padding: 1.5rem; 
    text-align: center; 
    font-size: 1.5rem; 
    font-weight: bold; 
    color: var(--text-color); 
    text-shadow: var(--cyan-glow); 
    margin: 1.5rem 0; 
    word-break: break-all; 
}

/* --- ADMIN DRAWER ARCHITECTURE --- */
.admin-overlay { 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100vw; 
    height: 100vh; 
    background: rgba(0,0,0,0.7); 
    z-index: 10000; 
    opacity: 0; 
    pointer-events: none; 
    transition: 0.4s; 
    backdrop-filter: blur(5px); 
}

.admin-overlay.active { 
    opacity: 1; 
    pointer-events: auto; 
}

.admin-drawer { 
    position: fixed; 
    top: 0; 
    right: 0; 
    transform: translateX(100%); 
    width: 100%; 
    max-width: 800px; 
    height: 100vh; 
    background: rgba(10, 5, 20, 0.98); 
    z-index: 10001; 
    overflow-y: auto; 
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); 
    border-left: 2px solid var(--accent-color); 
    box-shadow: -5px 0 30px rgba(255, 0, 234, 0.3); 
    padding: 2rem; 
}

.admin-drawer.open { 
    transform: translateX(0); 
}

.admin-table { 
    width: 100%; 
    border-collapse: collapse; 
    margin-top: 2rem; 
    background: #111; 
}

.admin-table th, .admin-table td { 
    padding: 1rem; 
    text-align: left; 
    border-bottom: 1px solid rgba(0, 240, 255, 0.3); 
}

.admin-table th { 
    color: var(--accent-color); 
    font-family: 'Teko', sans-serif; 
    font-size: 1.2rem; 
    background: #000; 
}

.action-btn { 
    font-size: 1rem; 
    padding: 0.3rem 0.6rem; 
    margin-right: 0.5rem; 
}

.tabs { 
    display: flex; 
    gap: 1rem; 
    margin-bottom: 2rem; 
    flex-wrap: wrap; 
}

.tab-btn { 
    flex: 1; 
    text-align: center; 
    border-color: var(--accent-color); 
    color: var(--accent-color); 
    box-shadow: none;
}

.tab-btn.active { 
    background-color: var(--accent-color); 
    color: #000; 
    box-shadow: var(--neon-glow); 
}

.tab-content { 
    display: none; 
}

.tab-content.active { 
    display: block; 
    animation: fadeIn 0.4s; 
}

.cart-item { 
    display: flex; 
    justify-content: space-between; 
    margin-bottom: 1rem; 
    border-bottom: 1px solid var(--text-color); 
    padding-bottom: 0.5rem; 
}

.cart-total { 
    font-size: 2rem; 
    font-family: 'Teko'; 
    text-align: right; 
    margin: 1rem 0; 
    color: var(--accent-color); 
    text-shadow: var(--neon-glow); 
}

.builder-item { 
    background: #000; 
    border: 1px solid var(--text-color); 
    padding: 1rem; 
    margin-bottom: 1rem; 
}

/* --- VAULT (PRIVATE CONSOLE) STYLES --- */
.vault-modal {
    width: 100vw !important; 
    height: 100vh !important; 
    max-width: 100vw !important; 
    max-height: 100vh !important; 
    border: none !important; 
    border-radius: 0 !important; 
    margin: 0 !important; 
    padding: 20px !important; 
    background: rgba(5, 2, 10, 0.98) !important;
}

.vault-header {
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    border-bottom: 2px solid #39ff14; 
    padding-bottom: 1rem; 
    margin-bottom: 2rem;
}

.vault-header h1 {
    font-size: 3rem; 
    color: #39ff14; 
    text-shadow: 0 0 10px #39ff14; 
    margin: 0;
}

.compound-grid {
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); 
    gap: 1.5rem;
}

.compound-card {
    background: #000; 
    border: 1px solid #444; 
    padding: 1.5rem; 
    position: relative;
    box-shadow: inset 0 0 20px rgba(255,255,255,0.05);
}

.compound-card.active { 
    border-color: var(--text-color); 
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.2); 
}

.compound-card.paused { 
    border-color: #ffea00; 
    opacity: 0.8; 
}

.compound-card.archived { 
    border-color: #555; 
    opacity: 0.5; 
    filter: grayscale(100%); 
}

.comp-alias { 
    font-size: 2rem; 
    font-family: 'Teko', sans-serif; 
    color: #fff; 
    line-height: 1; 
    margin-bottom: 5px; 
}

.comp-true { 
    font-family: monospace; 
    color: #888; 
    font-size: 0.9rem; 
    margin-bottom: 1rem; 
    display: block; 
}

.comp-dose { 
    font-size: 1.2rem; 
    color: var(--accent-color); 
    margin-bottom: 10px; 
}

/* Confidence Badges */
.badge { 
    display: inline-block; 
    padding: 3px 8px; 
    font-size: 0.75rem; 
    font-family: monospace; 
    text-transform: uppercase; 
    border: 1px solid; 
    margin-top: 10px; 
}

.badge-high { 
    color: #39ff14; 
    border-color: #39ff14; 
    background: rgba(57, 255, 20, 0.1); 
}

.badge-med { 
    color: #ffea00; 
    border-color: #ffea00; 
    background: rgba(255, 234, 0, 0.1); 
}

.badge-low { 
    color: #ff00ea; 
    border-color: #ff00ea; 
    background: rgba(255, 0, 234, 0.1); 
}

.badge-unk { 
    color: #888; 
    border-color: #888; 
    background: rgba(136, 136, 136, 0.1); 
}

/* --- INTERACTIVE VIAL BUBBLES --- */
.vial-bubble { 
    position: fixed; 
    pointer-events: none; 
    width: 8px; 
    height: 8px; 
    border: 1px solid #00f0ff; 
    background: rgba(0,240,255,0.5); 
    border-radius: 50%; 
    animation: fizzUp 0.8s ease-out forwards; 
    z-index: 10000; 
}

@keyframes fizzUp { 
    0% { opacity: 1; transform: translateY(0) scale(1); } 
    100% { opacity: 0; transform: translateY(-50px) scale(1.5); } 
}

/* --- PULL TO REFRESH VIAL --- */
#ptr-overlay { 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100px; 
    display: flex; 
    justify-content: center; 
    align-items: flex-end; 
    padding-bottom: 10px; 
    z-index: 99; 
    transform: translateY(-100%); 
    transition: transform 0.2s; 
    pointer-events: none; 
}

.ptr-vial { 
    width: 30px; 
    height: 60px; 
    border: 3px solid rgba(255,255,255,0.5); 
    border-radius: 4px; 
    position: relative; 
    overflow: hidden; 
    background: rgba(0,0,0,0.8); 
    box-shadow: 0 0 15px var(--accent-color); 
}

.ptr-vial::before { 
    content: ""; 
    position: absolute; 
    top: -5px; 
    left: 2px; 
    right: 2px; 
    height: 10px; 
    background: #ccc; 
    border-radius: 2px; 
}

.ptr-liquid { 
    position: absolute; 
    bottom: 0; 
    left: 0; 
    width: 100%; 
    height: 0%; 
    background: var(--text-color); 
    box-shadow: 0 0 15px var(--text-color); 
    transition: height 0.1s; 
}

.ptr-vial.sparkle { 
    animation: vialFlash 0.5s infinite; 
}

@keyframes vialFlash { 
    0% { box-shadow: 0 0 20px #fff; background: #fff; } 
    100% { box-shadow: 0 0 15px var(--text-color); background: rgba(0,0,0,0.8); } 
}

/* --- EASTER EGGS / SECRETS --- */
body.blacklight-mode { --text-color: #39ff14 !important; --accent-color: #ff00ff !important; }
body.blacklight-mode .synthwave-bg { background: linear-gradient(to bottom, #110022 0%, #2a0044 50%, #000 100%); }
body.blacklight-mode .synthwave-sun { background: linear-gradient(to bottom, #00ffff 0%, #ff00ff 100%); box-shadow: 0 0 150px #00ffff; }
body.blacklight-mode .cyber-grid { background-image: linear-gradient(rgba(255, 0, 255, 0.6) 2px, transparent 2px), linear-gradient(90deg, rgba(255, 0, 255, 0.6) 2px, transparent 2px); }
body.blacklight-mode .card { border-color: #39ff14; box-shadow: 0 0 25px rgba(57, 255, 20, 0.5), inset 0 0 15px rgba(57, 255, 20, 0.2); background-color: rgba(26, 0, 51, 0.85); }
body.blacklight-mode button { animation: blacklightPulse 1s infinite alternate; }
@keyframes blacklightPulse { 0% { box-shadow: 0 0 5px var(--accent-color); transform: scale(1); } 100% { box-shadow: 0 0 20px var(--accent-color), 0 0 35px var(--text-color); transform: scale(1.03); } }
.bl-particle { position: fixed; pointer-events: none; z-index: 9999; font-size: 2.5rem; animation: floatUp linear forwards; text-shadow: 0 0 15px var(--accent-color); }
@keyframes floatUp { 0% { transform: translateY(110vh) rotate(0deg); opacity: 0; } 10% { opacity: 1; } 90% { opacity: 1; } 100% { transform: translateY(-10vh) rotate(360deg); opacity: 0; } }

#eggToast { position: fixed; top: 20px; left: 50%; transform: translateX(-50%); background: rgba(0,0,0,0.9); border: 2px solid var(--accent-color); padding: 15px 30px; color: #fff; text-align: center; font-family: 'Teko', sans-serif; font-size: 1.8rem; letter-spacing: 1px; box-shadow: var(--neon-glow); z-index: 10000; display: none; opacity: 0; transition: opacity 0.5s; text-transform: uppercase; }
#trainWrapper { position: fixed; bottom: 20px; left: 100vw; display: flex; align-items: center; gap: 5px; z-index: 10000; font-size: 2rem; white-space: nowrap; user-select: none; }
.train-car { background: #222; border: 2px solid var(--text-color); border-radius: 5px; padding: 5px 10px; color: var(--accent-color); font-family: monospace; font-size: 1rem; font-weight: bold; display: flex; align-items: center; justify-content: center; box-shadow: 0 0 10px rgba(0,0,0,0.8); }
.train-engine { font-size: 3rem; position: relative; }
.train-smoke { position: absolute; top: -30px; left: 10px; font-size: 1.5rem; animation: smokeRise 1.5s infinite linear; opacity: 0; }
@keyframes smokeRise { 0% { transform: translateY(0) scale(0.5) rotate(-10deg); opacity: 1; } 100% { transform: translateY(-60px) scale(1.5) rotate(10deg); opacity: 0; } }
@keyframes trainDrive { 0% { left: 100vw; } 100% { left: -100vw; } }

footer { text-align: center; padding: 2rem; margin-top: 4rem; position: relative; z-index: 10; }
footer a, footer span { color: #444; text-decoration: none; font-size: 0.9rem; font-family: monospace; transition: 0.3s; }
footer a:hover, footer span:hover { color: var(--text-color); text-shadow: var(--cyan-glow); }

/* --- MOBILE RESPONSIVENESS FIXES --- */
@media (max-width: 768px) {
    header { flex-direction: column; gap: 1rem; padding: 1rem; }
    .nav-buttons { width: 100%; justify-content: center; flex-wrap: wrap; }
    .controls { flex-direction: column; gap: 0.5rem; width: 100%; }
    .controls select, .controls input { width: 100%; min-width: 0; max-width: 100%; }
    .split-layout { flex-direction: column; }
    .split-25 { border-left: none; border-top: 2px dashed var(--accent-color); padding-left: 0; padding-top: 1.5rem; margin-top: 1.5rem; }
    .quick-view-flex { flex-direction: column; }
    .form-row { flex-direction: column; gap: 0; }
    .admin-drawer { max-width: 100%; padding: 1rem; }
    .vault-modal { padding: 10px !important; }
    .vault-header { flex-direction: column; gap: 1rem; text-align: center; }
}
