:root {
    --dark: #050505;
    --neon-blue: #00f3ff;
    --neon-pink: #ff00ff;
    --glass: rgba(255, 255, 255, 0.05);
    --border: 1px solid rgba(255, 255, 255, 0.1);
}

body {
    background: var(--dark);
    color: #eee;
    font-family: 'Courier New', monospace; /* Fallback for a tech look */
    margin: 0;
    overflow-x: hidden;
}

/* Background Animation */
.bg-orb {
    position: fixed; top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle at 50% 50%, #1a0b2e, #000 60%);
    z-index: -1; animation: pulse 10s infinite alternate;
}
@keyframes pulse { 0% { transform: scale(1); } 100% { transform: scale(1.1); } }

/* Shared Glass Styles */
.glass, .glass-card, .glass-panel, .glass-quote, header {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: var(--border);
    padding: 2rem;
}

/* Header */
header {
    display: flex; justify-content: space-between; align-items: center;
    position: sticky; top: 0; z-index: 100; border-bottom: 1px solid var(--neon-blue);
}
.logo { font-weight: bold; color: var(--neon-blue); text-shadow: 0 0 10px var(--neon-blue); }
nav a { color: #fff; text-decoration: none; margin-left: 1rem; transition: 0.3s; }
nav a:hover { color: var(--neon-pink); text-shadow: 0 0 8px var(--neon-pink); }

/* Typography */
h1, h2, h3 { text-transform: uppercase; margin: 0 0 1rem 0; }
.glitch-text {
    font-size: clamp(2rem, 8vw, 6rem);
    position: relative;
    color: #fff;
}
.glitch-text::before {
    content: attr(data-text); position: absolute; left: 2px; text-shadow: -1px 0 red;
    top: 0; clip-path: inset(0 0 0 0); animation: glitch-anim 2s infinite linear alternate-reverse;
}
@keyframes glitch-anim {
    0% { clip-path: inset(10% 0 80% 0); } 20% { clip-path: inset(80% 0 10% 0); } 100% { clip-path: inset(40% 0 40% 0); }
}

/* Layout */
.container { max-width: 1200px; margin: 4rem auto; padding: 0 1rem; }
.cards, .holo-grid, .tier-wrap {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem;
}

/* Buttons */
.cyber-btn {
    display: inline-block; padding: 1rem 2rem; border: 1px solid var(--neon-blue);
    color: var(--neon-blue); text-decoration: none; text-transform: uppercase;
    transition: 0.3s; position: relative; overflow: hidden;
}
.cyber-btn::before {
    content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: var(--neon-blue); transition: 0.3s; z-index: -1;
}
.cyber-btn:hover { color: #000; }
.cyber-btn:hover::before { left: 0; }
.cyber-btn.primary { background: var(--neon-blue); color: #000; box-shadow: 0 0 15px var(--neon-blue); }
.cyber-btn.full { width: 100%; text-align: center; border: none; cursor: pointer; }

/* Components */
.glass-card { transition: 0.3s; transform: skewX(-5deg); }
.glass-card:hover { transform: skewX(-5deg) translateY(-10px); border-color: var(--neon-pink); box-shadow: 0 0 20px rgba(255, 0, 255, 0.2); }

.holo-item {
    aspect-ratio: 16/9; background: rgba(0, 243, 255, 0.1); border: 1px solid var(--neon-blue);
    display: flex; align-items: center; justify-content: center;
    position: relative;
}
.holo-item::after {
    content: ''; position: absolute; bottom: 0; right: 0;
    width: 20px; height: 20px;
    background: linear-gradient(-45deg, var(--neon-blue) 50%, transparent 50%);
}

/* FAQ */
details { background: rgba(0,0,0,0.5); border-left: 2px solid var(--neon-pink); padding: 1rem; margin-bottom: 1rem; }
summary { cursor: pointer; color: var(--neon-pink); outline: none; }

/* Forms */
input {
    width: 100%; background: rgba(0,0,0,0.5); border: none; border-bottom: 1px solid #fff;
    padding: 1rem; color: #fff; margin-bottom: 1rem; font-family: inherit;
}
input:focus { outline: none; border-color: var(--neon-blue); background: rgba(0, 243, 255, 0.1); }

footer { text-align: center; padding: 3rem; font-size: 0.8rem; opacity: 0.7; border-top: 1px solid #333; }