:root {
    /* Palette */
    --bg-deep: #050608;
    --bg-panel: #111216;
    
    --c-orange: #ff9d00;
    --c-orange-glow: rgba(255, 157, 0, 0.6);
    --c-yellow: #ffcc00;
    --c-white: #e6e6e6;
    --c-grey: #2a2d35;
    
    --font-head: 'Rajdhani', sans-serif;
    --font-body: 'Roboto Mono', monospace;
    
    --glass: rgba(20, 20, 25, 0.7);
    --border-light: rgba(255, 255, 255, 0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg-deep);
    color: var(--c-white);
    font-family: var(--font-body);
    overflow-x: hidden;
    min-height: 100vh;
}

/* --- BACKGROUND VFX --- */
.grid-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: -1;
    pointer-events: none;
}

.ambient-light {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    z-index: -2;
}

.orange-spot { top: -10%; right: -10%; width: 600px; height: 600px; background: var(--c-orange); }
.yellow-spot { bottom: -10%; left: -10%; width: 500px; height: 500px; background: var(--c-yellow); }

.vignette {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle, transparent 40%, #000 100%);
    pointer-events: none;
    z-index: 0;
}

/* --- HEADER --- */
.hud-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background: rgba(10, 10, 14, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 157, 0, 0.2);
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo-container { display: flex; align-items: center; gap: 15px; }

.logo-box {
    width: 45px; height: 45px;
    background: linear-gradient(135deg, var(--c-orange), #cc7a00);
    color: #000;
    font-weight: 800;
    font-family: var(--font-head);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 0 15px var(--c-orange-glow);
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.logo-text { display: flex; flex-direction: column; line-height: 1; }
.glitch-text { font-family: var(--font-head); font-weight: 700; font-size: 1.5rem; letter-spacing: 2px; text-shadow: 0 0 5px rgba(255,255,255,0.3); }
.sub-logo { font-size: 0.6rem; color: var(--c-orange); letter-spacing: 4px; }

.main-nav ul { display: flex; list-style: none; gap: 30px; }
.main-nav a { 
    text-decoration: none; color: #aaa; font-weight: 600; font-family: var(--font-head); text-transform: uppercase; 
    transition: 0.3s; position: relative;
}
.main-nav a:hover, .main-nav a.active { color: #fff; text-shadow: 0 0 8px var(--c-orange); }

.status-badge {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid #333;
    padding: 5px 12px;
    font-size: 0.7rem;
    color: #0f0;
    border-radius: 4px;
    display: flex; align-items: center; gap: 8px;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.5);
}
.dot { width: 8px; height: 8px; background: #0f0; border-radius: 50%; box-shadow: 0 0 5px #0f0; }
.mobile-toggle { display: none; background: transparent; border: 1px solid var(--c-orange); color: var(--c-orange); font-size: 1.5rem; padding: 0 10px; }

/* --- HERO --- */
.hero-section {
    text-align: center;
    padding: 6rem 1rem 4rem;
    position: relative;
    z-index: 2;
}

.hud-tag {
    color: var(--c-orange);
    font-size: 0.8rem;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px var(--c-orange-glow);
}

h1 {
    font-family: var(--font-head);
    font-size: 4rem;
    line-height: 0.9;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    text-shadow: 0 5px 15px rgba(0,0,0,0.8);
}

.gradient-text {
    background: linear-gradient(180deg, #fff, #999);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 5px rgba(255,255,255,0.3));
}

.hero-desc {
    max-width: 700px;
    margin: 0 auto 3rem;
    color: #bbb;
    font-size: 1.1rem;
}

/* --- 3D BUTTONS --- */
.cta-group { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }

.btn-3d {
    position: relative;
    padding: 14px 40px;
    font-family: var(--font-head);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
    transition: all 0.2s ease;
    overflow: hidden;
    text-decoration: none;
}

.btn-3d.primary {
    background: linear-gradient(180deg, #ffb300, #d68300);
    color: #000;
    border-top: 1px solid rgba(255,255,255,0.5);
    box-shadow: 
        0 10px 20px rgba(0,0,0,0.5),
        0 0 20px rgba(255, 157, 0, 0.4),
        inset 0 -2px 5px rgba(0,0,0,0.2);
}

.btn-3d.primary:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 15px 30px rgba(0,0,0,0.6),
        0 0 30px rgba(255, 157, 0, 0.6),
        inset 0 -2px 5px rgba(0,0,0,0.2);
}

.btn-3d.secondary {
    background: rgba(30,30,30,0.6);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: inset 0 0 20px rgba(0,0,0,0.5);
}

.btn-3d.secondary:hover {
    border-color: var(--c-orange);
    color: var(--c-orange);
    background: rgba(40,40,40,0.8);
}

.arr { font-weight: 900; margin-left: 5px; animation: slideRight 1s infinite alternate; display: inline-block;}
@keyframes slideRight { from { transform: translateX(0); } to { transform: translateX(5px); } }

/* --- HOLOGRAM PANEL (LINKS) --- */
.link-wrapper {
    padding: 0 1rem;
    margin-bottom: 5rem;
    display: flex; justify-content: center;
    perspective: 1000px;
}

.hologram-panel {
    width: 100%;
    max-width: 800px;
    background: rgba(15, 17, 23, 0.8);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 157, 0, 0.3);
    position: relative;
    box-shadow: 
        0 0 0 1px rgba(0,0,0,0.5),
        0 20px 50px rgba(0,0,0,0.8);
    transform: rotateX(2deg); /* slight tilt for 3D effect */
}

.hologram-panel::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--c-orange), transparent);
    opacity: 0.8;
}

.panel-top-bar {
    background: rgba(255, 157, 0, 0.05);
    padding: 10px 20px;
    display: flex; justify-content: space-between;
    font-size: 0.8rem;
    border-bottom: 1px solid rgba(255, 157, 0, 0.1);
    color: var(--c-orange);
    font-weight: bold;
}

.live-indicator {
    color: #0f0; text-shadow: 0 0 5px #0f0;
    animation: blink 2s infinite;
}

.panel-body { padding: 30px; }
.panel-body label { display: block; margin-bottom: 10px; color: #888; font-size: 0.8rem; letter-spacing: 1px; }

.input-3d-wrapper {
    display: flex;
    background: #000;
    border: 1px solid #333;
    box-shadow: inset 0 3px 10px rgba(0,0,0,0.8); /* Inset shadow for depth */
    margin-bottom: 15px;
}

#onion-link {
    width: 100%;
    background: transparent;
    border: none;
    color: var(--c-white);
    padding: 15px;
    font-family: var(--font-body);
    font-size: 1.1rem;
    outline: none;
}

.btn-copy {
    background: var(--c-grey);
    border: none; border-left: 1px solid #333;
    color: var(--c-orange);
    font-weight: bold;
    padding: 0 25px;
    cursor: pointer;
    transition: 0.2s;
}
.btn-copy:hover { background: #333; color: #fff; }

.security-readout {
    display: flex; gap: 20px; font-size: 0.75rem; color: #666; font-family: var(--font-body);
}

/* --- INFO GRID --- */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 5rem;
    padding: 0 1rem;
}

.card-volumetric {
    background: linear-gradient(145deg, #121318, #0a0b0e);
    border: 1px solid #222;
    padding: 2rem;
    position: relative;
    box-shadow: 
        0 5px 15px rgba(0,0,0,0.5),
        inset 0 1px 0 rgba(255,255,255,0.05); /* Top highlight */
    transition: 0.3s;
}

.card-volumetric:hover {
    transform: translateY(-5px);
    border-color: var(--c-orange);
    box-shadow: 
        0 15px 30px rgba(0,0,0,0.7),
        0 0 20px rgba(255, 157, 0, 0.1),
        inset 0 1px 0 rgba(255,255,255,0.05);
}

.icon-3d { font-size: 2.5rem; margin-bottom: 1rem; filter: drop-shadow(0 5px 5px rgba(0,0,0,0.5)); }

.card-volumetric h3 { color: var(--c-white); margin-bottom: 10px; font-size: 1.4rem; font-family: var(--font-head); }
.card-volumetric p { color: #888; font-size: 0.95rem; }

/* --- CONTENT SECTION --- */
.glass-text-section {
    max-width: 900px;
    margin: 0 auto 5rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.02);
    border-left: 3px solid var(--c-orange);
    backdrop-filter: blur(5px);
    position: relative;
}

.section-badge { position: absolute; top: -10px; right: 20px; background: #000; padding: 0 10px; color: #555; font-size: 0.8rem; font-weight: bold; border: 1px solid #333; }

.text-orange { color: var(--c-orange); }

.glass-text-section h2 { margin-bottom: 1.5rem; font-size: 2rem; }
.text-columns { column-count: 2; column-gap: 40px; color: #ccc; margin-bottom: 2rem; }

.link-tech {
    display: inline-block;
    color: var(--c-orange);
    font-family: var(--font-body);
    font-weight: bold;
    border-bottom: 1px dashed var(--c-orange);
}

/* --- FOOTER --- */
.footer-volumetric {
    background: #08090b;
    border-top: 1px solid #222;
    padding: 3rem 5% 1rem;
    position: relative;
    box-shadow: inset 0 20px 20px -20px rgba(0,0,0,1);
}

.footer-content {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; max-width: 1200px; margin: 0 auto;
}

.footer-content h4 { color: #666; margin-bottom: 1rem; letter-spacing: 1px; }
.footer-content a { display: block; color: #999; margin-bottom: 8px; font-size: 0.9rem; }
.footer-content a:hover { color: var(--c-orange); padding-left: 5px; }

.data-row { display: flex; justify-content: space-between; border-bottom: 1px dotted #333; padding: 5px 0; font-size: 0.85rem; color: #666; }
.val-green { color: #0f0; } .val-orange { color: var(--c-orange); }

.copyright { text-align: center; margin-top: 3rem; color: #444; font-size: 0.7rem; }

@keyframes blink { 50% { opacity: 0.5; } }

/* RESPONSIVE */
@media (max-width: 768px) {
    .main-nav { display: none; }
    .mobile-toggle { display: block; }
    h1 { font-size: 2.5rem; }
    .text-columns { column-count: 1; }
    .hero-section { padding-top: 4rem; }
}
/* --- LINKS PAGE SPECIFIC STYLES --- */

.page-header {
    text-align: center;
    padding: 3rem 1rem;
}

.warning-banner {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid red;
    display: inline-block;
    padding: 10px 20px;
    margin-bottom: 2rem;
    font-size: 0.8rem;
    color: #ff5555;
    letter-spacing: 1px;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.2);
}

.blink-red { animation: blinkRed 1s infinite; font-weight: bold; }
@keyframes blinkRed { 50% { opacity: 0.4; } }

.header-sub { color: #888; max-width: 600px; margin: 0 auto; }

/* --- TECH TABLE --- */
.table-responsive {
    overflow-x: auto;
}

.tech-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    font-size: 0.9rem;
    font-family: var(--font-body);
}

.tech-table th {
    text-align: left;
    padding: 15px;
    color: var(--c-orange);
    border-bottom: 2px solid #333;
    font-family: var(--font-head);
    font-weight: 700;
    letter-spacing: 1px;
}

.tech-table td {
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #ccc;
    vertical-align: middle;
}

.tech-table tr:hover td {
    background: rgba(255, 157, 0, 0.05);
    color: #fff;
}

/* Badges & Dots */
.badge-main { background: var(--c-orange); color: #000; padding: 3px 8px; font-weight: bold; font-size: 0.7rem; border-radius: 2px; }
.badge-mirror { border: 1px solid #555; color: #aaa; padding: 2px 8px; font-size: 0.7rem; }
.badge-private { border: 1px dashed #555; color: #555; padding: 2px 8px; font-size: 0.7rem; }

.status-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: 5px; }
.status-dot.green { background: #00ff00; box-shadow: 0 0 5px #00ff00; }
.status-dot.orange { background: var(--c-orange); }

.mono-font { font-family: 'Courier New', monospace; letter-spacing: 1px; }

.btn-copy-small {
    background: transparent;
    border: 1px solid #444;
    color: var(--c-orange);
    padding: 5px 10px;
    cursor: pointer;
    font-size: 0.75rem;
    transition: 0.2s;
}
.btn-copy-small:hover { background: var(--c-orange); color: #000; }

.dimmed-row { opacity: 0.5; }
.locked-txt { font-size: 0.7rem; color: #555; }

/* --- SEO ARTICLE STYLES --- */
.seo-article h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--c-white);
    border-left: 3px solid var(--c-orange);
    padding-left: 15px;
}

.seo-article p { margin-bottom: 1.5rem; line-height: 1.8; color: #bbb; }

.info-box-alert {
    background: rgba(200, 50, 50, 0.1);
    border-left: 4px solid #ff4444;
    padding: 1.5rem;
    margin: 2rem 0;
}
.info-box-alert h4 { color: #ff4444; margin-bottom: 0.5rem; }

/* --- CODE WINDOW (PGP) --- */
.pgp-section { padding: 0 1rem 5rem; max-width: 1000px; margin: 0 auto; }
.pgp-desc { margin-bottom: 1.5rem; color: #888; }

.code-window {
    background: #08090b;
    border: 1px solid #333;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.window-bar {
    background: #1a1c23;
    padding: 8px 15px;
    display: flex; align-items: center; gap: 8px;
    border-bottom: 1px solid #333;
}

.dot-r, .dot-y, .dot-g { width: 10px; height: 10px; border-radius: 50%; }
.dot-r { background: #ff5f56; }
.dot-y { background: #ffbd2e; }
.dot-g { background: #27c93f; }

.win-title { margin-left: 10px; font-size: 0.8rem; color: #777; font-family: monospace; }

.code-content {
    padding: 20px;
    color: #4af626; /* Hacker Green */
    font-size: 0.8rem;
    overflow-x: auto;
    white-space: pre-wrap;
    line-height: 1.4;
}

.btn-copy-full {
    width: 100%;
    padding: 15px;
    background: #222;
    color: #fff;
    border: none;
    border-top: 1px solid #333;
    cursor: pointer;
    font-weight: bold;
}
.btn-copy-full:hover { background: #333; color: var(--c-orange); }
/* --- GUIDE PAGE LAYOUT --- */

.guide-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto 5rem;
    padding: 0 1rem;
    gap: 40px;
    position: relative;
}

/* Sidebar Navigation (Desktop) */
.guide-sidebar {
    width: 250px;
    flex-shrink: 0;
    display: none; /* Mobile first hidden, shown on desktop via media query */
}

@media (min-width: 992px) {
    .guide-sidebar { display: block; }
}

.nav-panel {
    background: rgba(10, 10, 14, 0.8);
    border: 1px solid #333;
    padding: 20px;
    position: sticky;
    top: 100px; /* Sticks when scrolling */
    border-left: 2px solid var(--c-orange);
}

.nav-panel h4 { color: var(--c-orange); margin-bottom: 15px; font-size: 0.9rem; }
.nav-panel ul { list-style: none; }
.nav-panel li { margin-bottom: 10px; }
.nav-panel a { font-size: 0.85rem; color: #888; font-family: var(--font-head); font-weight: 600; }
.nav-panel a:hover { color: #fff; padding-left: 5px; }

/* Guide Content */
.guide-content { flex-grow: 1; }

.step-card {
    background: linear-gradient(145deg, rgba(20, 22, 28, 0.6), rgba(10, 10, 10, 0.8));
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0; /* padding handled inside body */
    margin-bottom: 4rem;
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    display: flex;
}

.step-marker {
    background: #1a1a1a;
    width: 60px;
    flex-shrink: 0;
    border-right: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: bold;
    color: #444;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
}

.step-card:hover .step-marker { color: var(--c-orange); text-shadow: 0 0 10px var(--c-orange-glow); }

.step-body { padding: 2rem; width: 100%; }

.step-body h2 {
    color: var(--c-white);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    border-bottom: 1px solid rgba(255, 157, 0, 0.2);
    padding-bottom: 10px;
}

.step-body h3 { color: var(--c-orange); font-size: 1.1rem; margin: 1.5rem 0 1rem; }
.step-body p { color: #bbb; line-height: 1.7; margin-bottom: 1rem; }

/* Protocol Box (Checklist) */
.protocol-box {
    background: rgba(0,0,0,0.3);
    border: 1px solid #333;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.check-list { list-style: none; }
.check-list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: #ccc;
}
.check-list li::before {
    content: '✓';
    position: absolute; left: 0; color: var(--c-orange); font-weight: bold;
}

/* Terminal Box */
.terminal-box {
    background: #0d0d0d;
    border: 1px solid #333;
    font-family: 'Roboto Mono', monospace;
    margin: 1.5rem 0;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.5);
}

.term-header {
    background: #222;
    padding: 5px 15px;
    font-size: 0.75rem;
    color: #888;
    border-bottom: 1px solid #333;
}

.term-content { padding: 15px; font-size: 0.85rem; color: #ccc; }
.cmd { color: #fff; font-weight: bold; }
.output { color: #666; display: block; margin-top: 5px; }

/* Split Info Box */
.info-split-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 2rem;
}

.split-col {
    padding: 1.5rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid #333;
}

.highlight-col {
    border-color: rgba(0, 255, 0, 0.2);
    background: rgba(0, 255, 0, 0.02);
}

.split-col h4 { font-size: 0.9rem; margin-bottom: 10px; }

/* Numeric List */
.num-list { margin-left: 20px; color: #bbb; }
.num-list li { margin-bottom: 10px; padding-left: 10px; }

/* Responsive Guide */
@media (max-width: 768px) {
    .step-card { flex-direction: column; }
    .step-marker { 
        width: 100%; height: 40px; 
        writing-mode: horizontal-tb; 
        transform: none; 
        border-right: none; border-bottom: 1px solid #333; 
    }
    .info-split-box { grid-template-columns: 1fr; }
}
/* --- SECURITY PAGE STYLES --- */

/* Scan Line Animation (VFX) */
.scan-line {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 5px;
    background: rgba(0, 255, 0, 0.3);
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.5);
    animation: scanDown 4s linear infinite;
    pointer-events: none;
    z-index: 50;
    opacity: 0.3;
}

@keyframes scanDown {
    0% { top: -10%; }
    100% { top: 110%; }
}

/* Warrant Canary Panel */
.canary-section {
    padding: 0 1rem 4rem;
    display: flex; justify-content: center;
}

.canary-panel {
    background: #e6e6e6; /* Paper color inverted for high contrast or keep dark? Let's stick to Dark Tactical */
    background: #14161a;
    border: 2px solid var(--c-white);
    max-width: 800px;
    width: 100%;
    padding: 0;
    position: relative;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.05);
}

.canary-header {
    background: #222;
    padding: 15px 30px;
    display: flex; justify-content: space-between; align-items: center;
    border-bottom: 2px solid var(--c-white);
}

.canary-header h3 { margin: 0; color: #fff; }

.status-badge-live {
    background: #0f0; color: #000; padding: 5px 10px; font-weight: bold; font-size: 0.8rem;
}

.canary-body { padding: 30px; font-family: 'Courier New', monospace; color: #ccc; }

.highlight-date {
    background: #333; color: var(--c-orange); padding: 2px 8px; font-weight: bold;
}

.canary-list { margin: 20px 0 30px; padding-left: 20px; }
.canary-list li { margin-bottom: 10px; }

.signature-block {
    border-top: 1px dashed #555;
    padding-top: 20px;
    font-size: 0.8rem;
    color: #888;
}

.canary-footer {
    background: #111;
    padding: 15px;
    text-align: center;
    border-top: 1px solid #333;
}

.btn-verify {
    background: transparent; border: 1px solid #555; color: #888; padding: 10px 20px; cursor: pointer; transition: 0.3s;
}
.btn-verify:hover { border-color: #fff; color: #fff; }

/* Grid for PGP and Text */
.security-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 5rem;
    padding: 0 1rem;
}

.sec-col-left { flex: 1; min-width: 300px; }
.sec-col-right { flex: 1.5; min-width: 300px; }

.pgp-area {
    width: 100%; height: 250px;
    background: #050505; color: #666;
    border: 1px solid #333;
    padding: 15px; font-family: monospace; font-size: 0.7rem;
    resize: none; outline: none; margin-top: 10px;
}

.security-article h4 { color: var(--c-white); margin-top: 1.5rem; margin-bottom: 0.5rem; }
.security-article p { font-size: 0.95rem; color: #999; margin-bottom: 1rem; }

/* Phishing Wall */
.phishing-wall {
    background: #0f0505;
    border-top: 1px solid #300;
    border-bottom: 1px solid #300;
    padding: 4rem 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.warning-strip {
    display: flex; justify-content: center; gap: 30px;
    color: #500; font-weight: bold; font-family: var(--font-head); letter-spacing: 2px;
    margin-bottom: 2rem; opacity: 0.5;
}

.phish-grid {
    display: flex; justify-content: center; flex-wrap: wrap; gap: 20px;
    max-width: 1000px; margin: 0 auto;
}

.phish-card {
    background: rgba(255, 0, 0, 0.05);
    border: 1px solid rgba(255, 0, 0, 0.2);
    padding: 15px 30px;
    display: flex; flex-direction: column; gap: 5px;
}

.phish-url { color: #aaa; text-decoration: line-through; }
.phish-tag { color: #f00; font-size: 0.7rem; font-weight: bold; }

.phish-note { margin-top: 2rem; color: #666; font-size: 0.9rem; }
/* --- FAQ PAGE STYLES --- */

/* Search Terminal Effect */
.search-terminal-container {
    max-width: 600px;
    margin: 2rem auto;
    background: #000;
    border: 1px solid #333;
    padding: 15px;
    font-family: 'Roboto Mono', monospace;
    display: flex;
    align-items: center;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.8);
}

.term-prompt { color: var(--c-orange); margin-right: 5px; }
.blinking-cursor { color: #fff; animation: blinkCursor 1s infinite; }

@keyframes blinkCursor { 50% { opacity: 0; } }

/* FAQ Layout */
.faq-wrapper {
    max-width: 900px;
    margin: 0 auto 5rem;
    padding: 0 1rem;
}

.faq-category-title {
    color: #555;
    font-family: var(--font-head);
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin: 3rem 0 1.5rem;
    border-bottom: 1px solid #222;
    padding-bottom: 10px;
}

/* Accordion Item (HUD Style) */
.faq-item-hud {
    background: linear-gradient(145deg, #121318, #0a0b0e);
    border: 1px solid #222;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-item-hud summary {
    padding: 20px;
    cursor: pointer;
    list-style: none; /* Hide default triangle */
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #ccc;
    font-family: var(--font-head);
    font-size: 1.1rem;
    transition: 0.3s;
}

/* Remove default marker in some browsers */
.faq-item-hud summary::-webkit-details-marker { display: none; }

.q-marker { color: var(--c-orange); margin-right: 10px; }

.toggle-icon {
    font-weight: bold;
    color: #555;
    font-size: 1.5rem;
    transition: 0.3s;
}

/* Open State Effects */
.faq-item-hud[open] {
    border-color: var(--c-orange);
    box-shadow: 0 0 20px rgba(255, 157, 0, 0.1);
    background: #15171e;
}

.faq-item-hud[open] summary {
    color: #fff;
    border-bottom: 1px solid rgba(255, 157, 0, 0.2);
}

.faq-item-hud[open] .toggle-icon {
    transform: rotate(45deg); /* Turn + into x */
    color: var(--c-orange);
}

.answer-content {
    padding: 20px 20px 30px;
    color: #aaa;
    line-height: 1.6;
    font-size: 0.95rem;
    animation: slideDown 0.3s ease-out;
}

.text-link { color: var(--c-orange); text-decoration: underline; }

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 600px) {
    .faq-item-hud summary { font-size: 1rem; }
    .search-terminal-container { font-size: 0.8rem; }
}
/* --- VENDOR PAGE STYLES --- */

/* Pricing Container */
.pricing-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto 5rem;
    padding: 0 1rem;
}

.price-card {
    flex: 1;
    min-width: 300px;
    background: linear-gradient(180deg, #1a1c24, #0f1014);
    border: 1px solid #333;
    position: relative;
    transition: transform 0.3s;
}

.price-card:hover {
    transform: translateY(-5px);
    border-color: #555;
}

.featured-card {
    border: 1px solid var(--c-orange);
    box-shadow: 0 0 20px rgba(255, 157, 0, 0.1);
    background: linear-gradient(180deg, #1f222b, #121419);
}

.ribbon {
    position: absolute;
    top: 0; right: 0;
    background: var(--c-orange);
    color: #000;
    font-size: 0.7rem;
    font-weight: bold;
    padding: 5px 15px;
    font-family: var(--font-head);
}

.card-header {
    padding: 30px;
    text-align: center;
    border-bottom: 1px solid #2a2a2a;
}

.price-card h3 {
    color: #888;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.price {
    font-size: 2.5rem;
    color: #fff;
    font-family: var(--font-head);
    font-weight: 700;
}

.sub-price { font-size: 0.9rem; color: #555; font-weight: normal; }

.card-body { padding: 30px; }

.benefit-list { list-style: none; margin-bottom: 30px; }
.benefit-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    border-bottom: 1px dashed #222;
    padding-bottom: 5px;
    color: #aaa;
    font-size: 0.9rem;
}

.benefit-list strong { color: #fff; }

.btn-action {
    display: block;
    width: 100%;
    padding: 12px;
    text-align: center;
    background: #222;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-family: var(--font-head);
    transition: 0.3s;
    border: 1px solid #333;
}

.btn-highlight {
    background: var(--c-orange);
    color: #000;
    border-color: var(--c-orange);
}

.btn-action:hover { opacity: 0.8; }

.card-note {
    text-align: center;
    font-size: 0.75rem;
    color: #555;
    margin-top: 15px;
}

/* Policy Table */
.policy-section {
    max-width: 1000px;
    margin: 0 auto 5rem;
    padding: 0 1rem;
}

.policy-section h2 {
    color: #fff;
    margin-bottom: 1.5rem;
    border-left: 3px solid var(--c-orange);
    padding-left: 15px;
}

.policy-intro { color: #999; margin-bottom: 2rem; max-width: 700px; }

.table-responsive { overflow-x: auto; }

.hud-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Roboto Mono', monospace;
    font-size: 0.85rem;
    background: #0a0a0a;
}

.hud-table th {
    text-align: left;
    padding: 15px;
    background: #1a1a1a;
    color: #888;
    border-bottom: 2px solid #333;
}

.hud-table td {
    padding: 15px;
    border-bottom: 1px solid #222;
    color: #ccc;
}

.cat-col { font-weight: bold; color: #fff; }

.status-banned { color: #ff3333; font-weight: bold; }
.status-allowed { color: #33ff33; font-weight: bold; }

/* FE Info Box */
.fe-info-box {
    max-width: 1000px;
    margin: 0 auto 5rem;
    padding: 0 1rem;
}

.info-content {
    background: rgba(255, 157, 0, 0.05);
    border: 1px solid rgba(255, 157, 0, 0.2);
    padding: 2rem;
}

.info-content h3 { color: var(--c-orange); margin-bottom: 1rem; }
.fe-req-list { margin-top: 1.5rem; margin-left: 20px; color: #bbb; }
.fe-req-list li { margin-bottom: 10px; }

/* Responsive */
@media (max-width: 768px) {
    .pricing-container { flex-direction: column; }
    .hud-table th, .hud-table td { padding: 10px; font-size: 0.75rem; }
}
