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

body {
background: #0a0a0a;
color: #d0d0d0;
font-family: 'Courier New', Courier, 'Liberation Mono', monospace;
line-height: 1.6;
min-height: 100vh;
position: relative;
overflow-x: hidden;
font-size: 16px;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}

.crt-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.1) 0px, rgba(0, 0, 0, 0.1) 1px, transparent 1px, transparent 2px);
pointer-events: none;
z-index: 999;
animation: flicker 0.2s infinite;
}

.scanline {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 12px;
background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.05), transparent);
opacity: 0.4;
animation: scan 10s linear infinite;
pointer-events: none;
z-index: 999;
}

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

@keyframes scan {
0% { top: -12px; }
100% { top: 100%; }
}

.archive-container {
max-width: 1440px;
margin: 0 auto;
padding: 24px;
position: relative;
z-index: 1;
}

.archive-header {
text-align: center;
margin-bottom: 32px;
border-bottom: 2px solid #274372;
padding-bottom: 24px;
}

.glitch-text {
font-size: clamp(2rem, 8vw, 4rem);
font-weight: 700;
color: #FFFFFF;
text-transform: uppercase;
position: relative;
text-shadow: 0.05em 0 0 rgba(255, 255, 255, 0.2), -0.05em -0.025em 0 rgba(39, 67, 114, 0.4);
animation: glitch 800ms infinite;
letter-spacing: 4px;
line-height: 1.2;
}

@keyframes glitch {
0%, 100% { transform: translate(0); }
94% { transform: translate(0.05em, 0.02em); }
95% { transform: translate(-0.04em, -0.02em); }
96% { transform: translate(0.02em, -0.01em); }
97% { transform: translate(-0.02em, 0.01em); }
}

.header-sub {
color: #274372;
font-size: 1rem;
letter-spacing: 3px;
margin: 16px 0 8px;
text-transform: uppercase;
font-weight: 400;
}

.header-desc {
font-size: 0.95rem;
opacity: 0.75;
max-width: 700px;
margin: 0 auto;
}

.ad-banner {
width: 100%;
max-width: 1060px;
margin: 24px auto;
border: 2px solid #274372;
padding: 6px;
background: #0d0d0d;
position: relative;
text-align: center;
box-shadow: 0 0 15px rgba(39, 67, 114, 0.2);
}

.prime-gif {
width: 100%;
height: auto;
display: block;
max-height: 128px;
object-fit: cover;
image-rendering: crisp-edges;
background: #000;
}

.ad-label {
position: absolute;
bottom: 8px;
right: 12px;
background: rgba(10, 10, 10, 0.85);
color: #274372;
font-size: 0.7rem;
padding: 4px 8px;
border: 1px solid #274372;
letter-spacing: 0.5px;
backdrop-filter: blur(2px);
}

.market-stats-bar {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
background: #111;
border: 1px solid #274372;
padding: 20px;
margin: 32px 0;
gap: 20px;
box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}

.stat-item {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
min-width: 100px;
}

.stat-label {
font-size: 0.7rem;
color: #888;
text-transform: uppercase;
letter-spacing: 1.5px;
margin-bottom: 5px;
}

.stat-value {
font-size: 1.2rem;
color: #FFFFFF;
font-weight: 600;
}

.prime-link-highlight {
background: #111;
border: 2px solid #274372;
padding: 18px 24px;
margin: 24px 0 32px;
text-align: center;
box-shadow: 0 0 20px rgba(39, 67, 114, 0.3);
}

.prime-link-highlight p {
font-size: 1.1rem;
margin-bottom: 8px;
}

.prime-link-highlight strong {
color: #274372;
letter-spacing: 1px;
}

.highlight-link {
color: #FFFFFF;
font-weight: 700;
word-break: break-all;
background: #1a1a1a;
padding: 6px 12px;
border: 1px dashed #274372;
font-size: 1.1rem;
}

.copy-small {
background: transparent;
border: 1px solid #274372;
color: #274372;
padding: 4px 12px;
margin-left: 12px;
cursor: pointer;
font-family: 'Courier New', monospace;
font-size: 0.8rem;
transition: all 0.2s;
text-transform: uppercase;
letter-spacing: 1px;
}

.copy-small:hover {
background: #274372;
color: #FFFFFF;
border-color: #FFFFFF;
}

.highlight-note {
font-size: 0.85rem;
color: #888;
}

.archive-grid {
display: grid;
grid-template-columns: 1.6fr 1fr;
gap: 32px;
margin: 48px 0;
}

@media (max-width: 900px) {
.archive-grid {
grid-template-columns: 1fr;
gap: 48px;
}
}

.section-title {
font-size: 1.6rem;
color: #274372;
border-left: 4px solid #FFFFFF;
padding-left: 18px;
margin-bottom: 28px;
text-transform: uppercase;
letter-spacing: 4px;
font-weight: 600;
line-height: 1.3;
}

.links-container {
display: flex;
flex-direction: column;
gap: 24px;
}

.artifact-card {
background: #111;
border: 1px solid #2a2a2a;
border-left: 4px solid #274372;
padding: 18px 22px;
transition: all 0.2s ease-out;
word-break: break-all;
position: relative;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.artifact-card:hover {
border-color: #FFFFFF;
border-left-width: 6px;
background: #151515;
transform: translateY(-2px);
box-shadow: 0 8px 20px rgba(39, 67, 114, 0.3);
}

.card-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 14px;
font-size: 0.9rem;
}

.artifact-id {
color: #274372;
font-weight: 700;
letter-spacing: 1px;
}

.artifact-status.online {
color: #FFFFFF;
background: #274372;
padding: 4px 10px;
font-size: 0.7rem;
text-transform: uppercase;
letter-spacing: 1.5px;
font-weight: 600;
}

.link-url {
font-size: 1rem;
color: #FFFFFF;
word-break: break-all;
margin: 18px 0;
cursor: pointer;
padding: 12px;
background: #0d0d0d;
border: 1px dashed #274372;
transition: all 0.2s;
font-family: 'Courier New', monospace;
line-height: 1.4;
}

.link-url:hover {
background: #1a1a1a;
border-color: #FFFFFF;
}

.card-footer {
display: flex;
justify-content: space-between;
align-items: center;
margin-top: 12px;
font-size: 0.85rem;
}

.link-latency {
color: #888;
font-family: 'Courier New', monospace;
}

.copy-btn {
background: transparent;
border: 1px solid #274372;
color: #274372;
padding: 6px 18px;
cursor: pointer;
font-family: 'Courier New', monospace;
font-size: 0.8rem;
transition: all 0.2s;
text-transform: uppercase;
letter-spacing: 1.5px;
font-weight: 600;
}

.copy-btn:hover {
background: #274372;
color: #FFFFFF;
border-color: #FFFFFF;
}

.archive-note {
text-align: right;
font-size: 0.7rem;
color: #555;
margin-top: 18px;
letter-spacing: 0.5px;
}

.market-description {
margin-top: 48px;
padding: 24px;
background: #111;
border: 1px solid #2a2a2a;
box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}

.description-title {
color: #274372;
margin-bottom: 18px;
font-size: 1.3rem;
font-weight: 600;
letter-spacing: 1px;
}

.description-text {
margin-bottom: 18px;
font-size: 0.95rem;
line-height: 1.7;
opacity: 0.9;
}

.verification-console {
background: #111;
border: 2px solid #274372;
padding: 28px;
margin-bottom: 32px;
box-shadow: 0 0 20px rgba(39, 67, 114, 0.2);
}

.console-label {
display: block;
color: #274372;
margin-bottom: 12px;
font-size: 0.9rem;
letter-spacing: 2px;
text-transform: uppercase;
}

.console-input {
width: 100%;
background: #0a0a0a;
border: 1px solid #2a2a2a;
color: #FFFFFF;
padding: 14px 16px;
font-family: 'Courier New', monospace;
font-size: 1rem;
outline: none;
transition: all 0.2s;
}

.console-input:focus {
border-color: #274372;
box-shadow: 0 0 10px rgba(39, 67, 114, 0.3);
}

.verify-btn {
margin-top: 18px;
background: transparent;
border: 2px solid #274372;
color: #274372;
padding: 14px 20px;
width: 100%;
font-family: 'Courier New', monospace;
font-size: 1rem;
font-weight: 700;
cursor: pointer;
transition: all 0.2s;
text-transform: uppercase;
letter-spacing: 3px;
}

.verify-btn:hover {
background: #274372;
color: #FFFFFF;
}

.verify-note {
margin-top: 16px;
font-size: 0.8rem;
color: #888;
text-align: center;
}

.validation-result {
margin-top: 24px;
padding: 16px;
min-height: 60px;
border: 1px solid #2a2a2a;
font-size: 0.95rem;
word-break: break-word;
line-height: 1.5;
}

.validation-result.success {
border-color: #FFFFFF;
color: #FFFFFF;
background: rgba(39, 67, 114, 0.15);
}

.validation-result.error {
border-color: #ff4d4d;
color: #ff4d4d;
background: rgba(255, 77, 77, 0.1);
}

.info-block {
background: #111;
border: 1px solid #2a2a2a;
padding: 24px;
margin-bottom: 24px;
box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3);
}

.info-title {
color: #274372;
margin-bottom: 18px;
font-size: 1.2rem;
font-weight: 600;
letter-spacing: 1px;
}

.info-text {
margin-bottom: 16px;
font-size: 0.95rem;
line-height: 1.7;
opacity: 0.9;
}

.spec-grid {
display: flex;
flex-direction: column;
gap: 14px;
}

.spec-row {
display: flex;
justify-content: space-between;
padding-bottom: 10px;
border-bottom: 1px dotted #2a2a2a;
}

.spec-name {
color: #888;
font-size: 0.9rem;
}

.spec-value {
color: #FFFFFF;
font-size: 0.9rem;
text-align: right;
font-weight: 600;
word-break: break-word;
max-width: 60%;
}

.category-list {
list-style: none;
}

.category-list li {
display: flex;
justify-content: space-between;
padding: 10px 0;
border-bottom: 1px dotted #2a2a2a;
}

.cat-name {
color: #d0d0d0;
font-size: 0.95rem;
}

.cat-count {
color: #274372;
font-weight: 600;
font-size: 0.9rem;
white-space: nowrap;
}

.content-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 32px;
margin: 60px 0;
}

@media (max-width: 900px) {
.content-grid {
grid-template-columns: 1fr;
}
}

.content-block {
background: #111;
border: 1px solid #2a2a2a;
padding: 28px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
transition: transform 0.2s;
}

.content-block:hover {
transform: translateY(-2px);
border-color: #274372;
}

.block-title {
color: #274372;
font-size: 1.3rem;
margin-bottom: 22px;
padding-bottom: 12px;
border-bottom: 1px solid #274372;
font-weight: 600;
letter-spacing: 1px;
}

.content-block p {
margin-bottom: 18px;
font-size: 0.95rem;
line-height: 1.7;
opacity: 0.9;
}

.faq-section {
margin: 60px 0;
}

.faq-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 24px;
margin-top: 32px;
}

@media (max-width: 900px) {
.faq-grid {
grid-template-columns: 1fr;
}
}

.faq-item {
background: #111;
border: 1px solid #2a2a2a;
padding: 24px;
transition: all 0.2s;
box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.faq-item:hover {
border-color: #274372;
}

.faq-question {
color: #274372;
font-size: 1.1rem;
font-weight: 700;
margin-bottom: 12px;
text-transform: uppercase;
letter-spacing: 1.5px;
}

.faq-answer {
font-size: 0.95rem;
line-height: 1.7;
opacity: 0.9;
}

.archive-footer {
margin-top: 70px;
padding-top: 24px;
border-top: 2px solid #274372;
text-align: center;
font-size: 0.85rem;
color: #777;
}

.footer-small {
font-size: 0.65rem;
color: #444;
margin-top: 12px;
letter-spacing: 1px;
word-break: break-word;
}

.notification {
position: fixed;
bottom: 25px;
right: 25px;
background: #111;
border: 2px solid #FFFFFF;
color: #FFFFFF;
padding: 16px 28px;
z-index: 10000;
transform: translateX(150%);
transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
font-weight: 600;
box-shadow: 0 0 30px rgba(39, 67, 114, 0.5);
font-size: 0.95rem;
letter-spacing: 0.5px;
}

.notification.show {
transform: translateX(0);
}

::selection {
background: #274372;
color: #FFFFFF;
}

::-webkit-scrollbar {
width: 8px;
height: 8px;
}

::-webkit-scrollbar-track {
background: #111;
}

::-webkit-scrollbar-thumb {
background: #274372;
border: 1px solid #2a2a2a;
}

::-webkit-scrollbar-thumb:hover {
background: #2f4f8a;
}