/* --- INDUSTRIAL / BRUTALIST THEME --- */

:root {
    --bg-dark: #0a0a0a;
    --bg-panel: #111111;
    --border-color: #333;
    --text-main: #e0e0e0;
    --text-muted: #888;
    --accent-orange: #ff4d00; /* Safety Orange */
    --accent-green: #00ff41;
    --font-head: 'Archivo', sans-serif;
    --font-mono: 'Fira Code', monospace;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-mono);
    line-height: 1.5;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: 0.2s; }

/* GRID LAYOUT */
.main-grid {
    display: grid;
    grid-template-columns: 280px 1fr; /* Fixed sidebar, fluid content */
    min-height: 100vh;
}

/* SIDEBAR STYLES */
.sidebar {
    background: var(--bg-dark);
    border-right: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 30px;
    z-index: 100;
}

.brand-box { margin-bottom: 3rem; }

.glitch-header {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 2rem;
    line-height: 1;
    letter-spacing: -1px;
    color: #fff;
    margin-bottom: 10px;
}
.glitch-header span { color: var(--accent-orange); }

.server-status {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: flex; align-items: center; gap: 8px;
    border: 1px solid #222; padding: 5px;
    width: fit-content;
}

.dot { width: 8px; height: 8px; border-radius: 50%; display: block; }
.live { background-color: var(--accent-green); box-shadow: 0 0 5px var(--accent-green); }

/* Navigation */
.nav-menu { display: flex; flex-direction: column; gap: 2px; flex-grow: 1; }

.nav-item {
    display: block;
    padding: 12px 15px;
    border: 1px solid transparent;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
}

.nav-item:hover, .nav-item.active {
    background: var(--bg-panel);
    border: 1px solid var(--border-color);
    color: #fff;
    border-left: 4px solid var(--accent-orange);
}

.nav-num { color: var(--accent-orange); margin-right: 10px; font-family: var(--font-mono); }

.sidebar-footer {
    font-size: 0.7rem; color: #444; border-top: 1px solid #222; padding-top: 20px;
}

/* MAIN CONTENT AREA */
.content-area {
    padding: 0;
    position: relative;
}

/* Alert Ticker */
.ticker-wrap {
    background: var(--accent-orange);
    color: #000;
    font-weight: bold;
    font-size: 0.85rem;
    padding: 10px 20px;
    overflow: hidden;
    white-space: nowrap;
}

/* Header */
.content-header {
    padding: 60px 40px;
    border-bottom: 1px solid var(--border-color);
    background: 
        linear-gradient(rgba(10,10,10,0.8), rgba(10,10,10,0.9)),
        url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0IiBoZWlnaHQ9IjQiPgo8cmVjdCB3aWR0aD0iNCIgaGVpZ2h0PSI0IiBmaWxsPSIjMTExIi8+CjxyZWN0IHdpZHRoPSIxIiBoZWlnaHQ9IjEiIGZpbGw9IiMzMzMiLz4KPC9zdmc+');
}

.content-header h2 {
    font-family: var(--font-head);
    font-size: 3.5rem;
    text-transform: uppercase;
    line-height: 0.9;
    margin-bottom: 30px;
    max-width: 800px;
}

.action-buttons { display: flex; gap: 20px; }

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
    border: 1px solid var(--accent-orange);
    cursor: pointer;
}

.btn-primary { background: var(--accent-orange); color: #000; }
.btn-primary:hover { background: #fff; border-color: #fff; }

.btn-secondary { background: transparent; color: var(--accent-orange); }
.btn-secondary:hover { background: #111; }

/* Text Grid Layout */
.text-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 0; /* Brutalist approach - borders instead of gaps */
}

/* Article Styles */
.main-article {
    padding: 40px;
    border-right: 1px solid var(--border-color);
}

.main-article h3 {
    color: var(--accent-orange);
    margin: 30px 0 15px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid #333;
    padding-bottom: 5px;
    display: inline-block;
}
.main-article h3:first-child { margin-top: 0; }

.main-article p {
    margin-bottom: 20px;
    color: #ccc;
    font-size: 1rem;
    text-align: justify;
}

.main-article a { border-bottom: 1px solid var(--accent-orange); }

.feature-list { list-style: square; margin-left: 20px; margin-bottom: 20px; color: #ccc; }
.feature-list li { margin-bottom: 10px; padding-left: 10px; }
.feature-list strong { color: #fff; }

/* Info Panel (Right) */
.info-panel {
    background: #0e0e0e;
}

.panel-box {
    padding: 30px;
    border-bottom: 1px solid var(--border-color);
}

.panel-box h4 {
    color: #fff;
    font-family: var(--font-head);
    font-size: 1rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.data-table { width: 100%; font-size: 0.9rem; border-collapse: collapse; }
.data-table td { padding: 8px 0; border-bottom: 1px dashed #333; color: #888; }
.data-table td:last-child { text-align: right; color: #fff; font-weight: bold; }
.text-green { color: var(--accent-green) !important; }
.text-orange { color: var(--accent-orange) !important; }

.news-feed { list-style: none; }
.news-feed li { margin-bottom: 20px; }
.news-feed .date { display: block; font-size: 0.75rem; color: var(--accent-orange); margin-bottom: 4px; }
.news-feed .news-text { font-size: 0.9rem; color: #ccc; }

.link-arrow {
    display: inline-block; margin-top: 10px; color: var(--accent-orange); font-weight: bold;
}

/* Footer */
.content-footer {
    padding: 40px;
    border-top: 1px solid var(--border-color);
    background: #080808;
}

.kw-cloud {
    font-size: 0.8rem; color: #444; margin-bottom: 20px; text-transform: uppercase;
}
.copyright { font-size: 0.9rem; color: #fff; font-weight: bold; }

/* Responsive */
@media (max-width: 900px) {
    .main-grid { grid-template-columns: 1fr; }
    .sidebar { height: auto; position: relative; border-bottom: 1px solid #333; }
    .text-grid { grid-template-columns: 1fr; }
    .main-article { border-right: none; border-bottom: 1px solid #333; }
    .content-header h2 { font-size: 2.5rem; }
}
/* --- ACCESS NODES PAGE --- */

.small-header {
    padding: 40px;
    background: var(--bg-dark);
}
.header-sub {
    font-size: 0.9rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    margin-top: 10px;
}

.access-container {
    padding: 0 40px 60px;
    max-width: 1200px;
}

/* Alert Box */
.alert-box {
    display: flex;
    background: #1a0505;
    border: 1px solid #ff3333;
    margin-bottom: 40px;
}
.alert-icon {
    background: #ff3333;
    color: #000;
    font-weight: 900;
    font-size: 2rem;
    width: 60px;
    display: flex; align-items: center; justify-content: center;
}
.alert-content { padding: 20px; }
.alert-content h4 { color: #ff3333; margin-bottom: 5px; font-family: var(--font-head); }
.alert-content p { color: #ccaaaa; font-size: 0.9rem; margin: 0; }

/* Section Blocks */
.section-block { margin-bottom: 60px; }
.section-title {
    font-family: var(--font-mono);
    color: var(--text-main);
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

/* Mirrors Grid */
.mirror-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.mirror-card {
    background: var(--bg-panel);
    border: 1px solid var(--border-color);
    padding: 20px;
    transition: 0.2s;
}

.mirror-card:hover {
    border-color: var(--accent-orange);
    transform: translateY(-2px);
}

.primary-node { border: 1px solid var(--accent-green); }

.node-header {
    display: flex; justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.75rem;
    color: var(--text-muted);
}
.node-badge { background: #222; padding: 2px 6px; font-weight: bold; }
.ping { font-family: var(--font-mono); }

.onion-address {
    font-family: var(--font-mono);
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 20px;
    word-break: break-all;
    background: #000;
    padding: 10px;
    border: 1px dashed #333;
}

.node-actions {
    display: flex; justify-content: space-between; align-items: center;
}

.btn-copy {
    background: #333;
    border: none;
    color: #fff;
    padding: 8px 12px;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    cursor: pointer;
    text-transform: uppercase;
}
.btn-copy:hover { background: var(--accent-orange); color: #000; }
.btn-copy.disabled { opacity: 0.5; cursor: not-allowed; }

.status-text { font-size: 0.8rem; font-weight: bold; }

/* Locked Node Style */
.locked-node { opacity: 0.6; }
.locked-node .onion-address { color: var(--accent-orange); letter-spacing: 3px; }

/* Terminal PGP */
.section-desc { color: var(--text-muted); margin-bottom: 20px; font-size: 0.9rem; }

.terminal-window {
    background: #080808;
    border: 1px solid #444;
    font-family: var(--font-mono);
}

.terminal-bar {
    background: #222;
    padding: 8px 15px;
    display: flex; align-items: center; gap: 8px;
    border-bottom: 1px solid #444;
}
.dot-btn { width: 10px; height: 10px; border-radius: 50%; }
.red { background: #ff5f56; }
.yellow { background: #ffbd2e; }
.green { background: #27c93f; }
.terminal-title { margin-left: 10px; font-size: 0.8rem; color: #aaa; }

.pgp-block {
    padding: 20px;
    color: var(--accent-green);
    font-size: 0.8rem;
    overflow-x: auto;
    white-space: pre-wrap;
    max-height: 200px;
    overflow-y: scroll;
}

.terminal-footer {
    padding: 10px;
    border-top: 1px solid #333;
    display: flex; gap: 10px;
}

.btn-terminal {
    background: transparent;
    border: 1px solid var(--accent-green);
    color: var(--accent-green);
    padding: 5px 15px;
    font-family: var(--font-mono);
    cursor: pointer;
    font-size: 0.8rem;
}
.btn-terminal:hover { background: var(--accent-green); color: #000; }

/* FAQ Mini */
.faq-mini {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}
.faq-mini h4 { color: #fff; margin-bottom: 10px; font-family: var(--font-head); }
.faq-mini p { color: #999; font-size: 0.95rem; }

/* Responsive */
@media (max-width: 768px) {
    .access-container { padding: 0 20px 40px; }
    .mirror-grid { grid-template-columns: 1fr; }
}
/* --- SYSTEM LOGS / SEO SECTION --- */

.system-logs-container {
    margin-top: 80px;
    border: 1px solid #333;
    background: #0d0d0d;
}

.log-header {
    background: #222;
    padding: 10px 20px;
    font-size: 0.8rem;
    font-weight: bold;
    color: #888;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #333;
    font-family: var(--font-mono);
}

.log-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 0;
}

.log-entry {
    padding: 30px;
    border-right: 1px solid #222;
    border-bottom: 1px solid #222;
}

.log-entry h5 {
    color: var(--accent-orange);
    font-family: var(--font-mono);
    margin-bottom: 15px;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.log-entry p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

/* Выделение ключевых слов жирным, но серым, чтобы не резало глаз */
.log-entry strong {
    color: #999;
    font-weight: 700;
}

.log-list {
    list-style: none;
    padding: 0;
}
.log-list li {
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 8px;
    padding-left: 15px;
    border-left: 2px solid #333;
}

/* Data Stream Block - visual hacker style */
.data-stream {
    padding: 30px;
    background: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-family: var(--font-mono);
}

.stream-line {
    display: block;
    color: #333;
    font-size: 0.8rem;
    margin-bottom: 5px;
}
.stream-line strong { color: #444; }

/* Responsive adjustments */
@media (max-width: 768px) {
    .log-grid { grid-template-columns: 1fr; }
    .log-entry { border-right: none; }
}
/* --- MANUAL / GUIDE PAGE --- */

.manual-container {
    padding: 0 40px 60px;
    max-width: 1000px;
}

.manual-intro {
    background: #151515;
    border-left: 4px solid var(--accent-orange);
    padding: 20px;
    margin-bottom: 50px;
    color: #ccc;
    font-size: 0.95rem;
}
.manual-intro strong { color: var(--accent-orange); }

/* Step Blocks */
.step-block {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    border-bottom: 1px solid #222;
    padding-bottom: 40px;
}
.step-block:last-child { border-bottom: none; }

.step-number {
    font-family: var(--font-head);
    font-size: 4rem;
    font-weight: 900;
    color: #222; /* Dark, subtle number */
    line-height: 0.8;
    min-width: 80px;
}

.step-content { flex-grow: 1; }

.step-content h3 {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 5px;
}

.step-desc {
    color: var(--accent-orange);
    font-size: 0.85rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Accordion (Details/Summary) */
.manual-accordion {
    border: 1px solid var(--border-color);
    background: var(--bg-panel);
    margin-bottom: 15px;
}

.manual-accordion summary {
    padding: 15px 20px;
    cursor: pointer;
    font-weight: bold;
    color: #e0e0e0;
    list-style: none; /* Hide default triangle */
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.2s;
    font-size: 0.9rem;
}

/* Custom indicator for open/close */
.manual-accordion summary::after {
    content: '[+]';
    color: var(--text-muted);
    font-family: var(--font-mono);
}
.manual-accordion[open] summary::after {
    content: '[-]';
    color: var(--accent-orange);
}

.manual-accordion summary:hover {
    background: #1a1a1a;
    color: #fff;
}

.manual-accordion[open] summary {
    border-bottom: 1px solid #333;
    background: #1a1a1a;
}

.accordion-body {
    padding: 20px;
    font-size: 0.9rem;
    color: #aaa;
    line-height: 1.6;
    background: #0a0a0a;
}

/* Internal Lists & Code */
.check-list, .num-list {
    margin-left: 20px;
    margin-top: 10px;
}
.check-list li { margin-bottom: 5px; }

.code-snippet {
    background: #000;
    border: 1px dashed #444;
    padding: 15px;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--accent-green);
    margin: 15px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .step-block { flex-direction: column; gap: 10px; }
    .step-number { font-size: 3rem; color: var(--accent-orange); opacity: 0.5; }
    .manual-container { padding: 0 20px 40px; }
}
/* --- MERCHANTS PAGE --- */

.merchants-container {
    padding: 0 40px 60px;
    max-width: 1200px;
}

/* Stats Row */
.merchant-stats {
    display: flex;
    justify-content: space-between;
    background: #111;
    border: 1px solid #333;
    padding: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.stat-box {
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-size: 0.75rem;
    color: #888;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.stat-val {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    color: #fff;
    font-weight: 600;
}

/* Section Headers */
.vendor-section { margin-bottom: 60px; }

.section-title {
    font-family: var(--font-mono);
    color: var(--accent-green);
    margin-bottom: 20px;
    font-size: 1.2rem;
    border-bottom: 2px solid #222;
    padding-bottom: 10px;
    display: inline-block;
}

.section-desc {
    color: #999;
    margin-bottom: 30px;
    max-width: 800px;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.pricing-card {
    background: #0f0f0f;
    border: 1px solid #333;
    padding: 30px;
    display: flex;
    flex-direction: column;
    transition: 0.3s;
    position: relative;
}

.pricing-card:hover {
    border-color: var(--accent-green);
    transform: translateY(-5px);
}

.pricing-card.featured {
    border: 1px solid var(--accent-orange);
    background: #15100a;
}
.pricing-card.featured::before {
    content: 'RECOMMENDED';
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--accent-orange);
    color: #000;
    font-size: 0.7rem;
    font-weight: bold;
    padding: 2px 8px;
}

.card-header {
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.pricing-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #fff;
}

.pricing-card .price {
    font-size: 2.5rem;
    font-family: var(--font-head);
    color: #fff;
}

.pricing-card .crypto {
    font-size: 1rem;
    color: #666;
}

.features-list {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.features-list li {
    padding: 10px 0;
    border-bottom: 1px dashed #222;
    color: #ccc;
    font-size: 0.9rem;
}
.features-list li:last-child { border-bottom: none; }

.cross {
    text-decoration: line-through;
    color: #555;
}

.btn-action {
    width: 100%;
    padding: 15px;
    background: transparent;
    border: 1px solid #555;
    color: #fff;
    cursor: pointer;
    font-family: var(--font-mono);
    text-transform: uppercase;
    transition: 0.2s;
}

.btn-action:hover {
    background: #fff;
    color: #000;
}

.btn-highlight {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    color: #000;
    font-weight: bold;
}
.btn-highlight:hover {
    background: #ffae00;
}

/* Table Styles */
.table-wrapper {
    overflow-x: auto;
    border: 1px solid #333;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    min-width: 600px;
}

.data-table th, .data-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #222;
}

.data-table th {
    background: #111;
    color: #888;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    text-transform: uppercase;
}

.data-table tr:hover td {
    background: #0a0a0a;
}

.mono-font {
    font-family: var(--font-mono);
    color: #666;
    font-size: 0.85rem;
}

/* Status Badges */
.status-badge {
    padding: 4px 8px;
    font-size: 0.7rem;
    font-weight: bold;
    border-radius: 2px;
}

.status-badge.online {
    background: rgba(0, 255, 65, 0.1);
    color: var(--accent-green);
    border: 1px solid var(--accent-green);
}

.status-badge.busy {
    background: rgba(255, 140, 0, 0.1);
    color: var(--accent-orange);
    border: 1px solid var(--accent-orange);
}

.status-badge.offline {
    background: #222;
    color: #666;
    border: 1px solid #444;
}

/* Warning Box */
.warning-box {
    border: 1px solid #d00;
    background: rgba(221, 0, 0, 0.05);
    padding: 20px;
    color: #ddd;
}
.banned-list {
    margin-top: 15px;
    list-style: none;
}
.banned-list li {
    color: #f55;
    margin-bottom: 5px;
    font-family: var(--font-mono);
}
/* --- OPSEC PAGE --- */

.opsec-container {
    padding: 0 40px 60px;
    max-width: 1200px;
}

/* Alert Banner */
.alert-banner {
    display: flex;
    align-items: center;
    background: #221a00;
    border-left: 4px solid var(--accent-orange);
    padding: 20px;
    margin-bottom: 40px;
    color: #ffdcb0;
}

.alert-icon {
    font-size: 2rem;
    font-weight: 900;
    margin-right: 20px;
    color: var(--accent-orange);
}

/* Dual Grid Layout */
.dual-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

@media (max-width: 900px) {
    .dual-grid { grid-template-columns: 1fr; }
}

/* Security Blocks */
.security-block {
    background: #0e0e0e;
    border: 1px solid #222;
    padding: 25px;
    margin-bottom: 30px;
}

.block-title {
    color: #fff;
    font-family: var(--font-mono);
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.block-desc {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 20px;
}

/* PGP Box */
.pgp-box {
    background: #000;
    border: 1px solid #333;
    padding: 15px;
    position: relative;
}

.pgp-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #222;
    padding-bottom: 10px;
    margin-bottom: 10px;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: #666;
}

.copy-btn {
    background: #222;
    border: none;
    color: #fff;
    padding: 4px 8px;
    font-size: 0.7rem;
    cursor: pointer;
}
.copy-btn:hover { background: var(--accent-green); color: #000; }

.pgp-body {
    color: var(--accent-green);
    font-family: 'Fira Code', monospace;
    font-size: 0.8rem;
    overflow-x: auto;
    white-space: pre-wrap;
    opacity: 0.8;
}

.verify-status {
    margin-top: 15px;
    font-size: 0.85rem;
    color: #aaa;
}
.check-icon { color: var(--accent-green); font-weight: bold; }
.mono-hash {
    display: block;
    font-family: var(--font-mono);
    margin-top: 5px;
    color: #fff;
    letter-spacing: 1px;
}

/* Checklist */
.toggle-list {
    list-style: none;
}

.toggle-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #222;
}

.toggle-label { color: #ccc; font-size: 0.9rem; }

.toggle-state {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 2px;
}

.toggle-state.on {
    background: #1a331a;
    color: var(--accent-green);
    border: 1px solid var(--accent-green);
}

/* Canary */
.canary-block {
    border-color: #444;
}
.canary-text {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #bbb;
    margin-bottom: 15px;
}
.canary-sig {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--accent-orange);
    background: rgba(0,0,0,0.3);
    padding: 10px;
}

/* Guides Grid */
.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.guide-card {
    background: #111;
    padding: 25px;
    border-top: 2px solid var(--accent-green);
}

.guide-card h4 {
    color: #fff;
    margin-bottom: 15px;
}

.guide-card ol {
    margin-left: 20px;
    color: #999;
    font-size: 0.9rem;
    line-height: 1.6;
}
.guide-card li { margin-bottom: 8px; }
/* --- HELPDESK PAGE --- */

.helpdesk-container {
    padding: 0 40px 60px;
    max-width: 1200px;
}

/* Contact Bar */
.contact-bar {
    background: #151515;
    border: 1px solid #333;
    padding: 20px;
    margin-bottom: 40px;
    text-align: center;
}

.contact-label {
    font-size: 0.8rem;
    color: #888;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.contact-val {
    font-family: var(--font-mono);
    font-size: 1.2rem;
    color: #fff;
    font-weight: bold;
}

.status-tag {
    background: #333;
    font-size: 0.7rem;
    padding: 2px 6px;
    margin-left: 10px;
    vertical-align: middle;
    color: var(--accent-orange);
}

.contact-note {
    font-size: 0.8rem;
    color: #555;
    margin-top: 5px;
}

/* Terminal Form */
.terminal-form {
    background: #000;
    border: 1px solid #333;
    padding: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--accent-green);
    margin-bottom: 10px;
}

.terminal-input {
    width: 100%;
    background: #111;
    border: 1px solid #333;
    color: #fff;
    padding: 12px;
    font-family: 'Fira Code', monospace;
    font-size: 0.9rem;
    outline: none;
    transition: 0.2s;
}

.terminal-input:focus {
    border-color: var(--accent-orange);
    background: #161616;
}

select.terminal-input {
    appearance: none;
    cursor: pointer;
}

textarea.terminal-input {
    resize: vertical;
}

/* Form Footer */
.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #222;
}

.encryption-status {
    font-size: 0.8rem;
    color: #666;
}

.btn-submit {
    background: var(--accent-green);
    border: none;
    color: #000;
    font-family: var(--font-mono);
    font-weight: bold;
    padding: 12px 25px;
    cursor: pointer;
    text-transform: uppercase;
    transition: 0.2s;
}

.btn-submit:hover {
    background: #fff;
    box-shadow: 0 0 10px rgba(255,255,255,0.3);
}

/* FAQ Styles */
.faq-box {
    margin-bottom: 30px;
}

.faq-item {
    border-bottom: 1px solid #222;
    margin-bottom: 15px;
}

.faq-item summary {
    cursor: pointer;
    color: #ddd;
    font-weight: bold;
    padding: 10px 0;
    list-style: none; /* Hide default arrow */
    position: relative;
}

.faq-item summary::marker { display: none; }
.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 0;
    color: var(--accent-green);
}

.faq-item[open] summary::after {
    content: '-';
    color: var(--accent-orange);
}

.faq-content {
    padding: 10px 0 20px 0;
    color: #999;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Info Panel */
.info-panel {
    background: #1a1a1a;
    padding: 20px;
    border-left: 3px solid #555;
    color: #ccc;
}
.info-panel h4 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 0.9rem;
}
