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

body {
background: #e6ecf5;
font-family: 'Courier New', Courier, 'VT323', 'IBM Plex Mono', monospace;
line-height: 1.5;
color: #0b1b33;
padding: 16px;
min-height: 100vh;
display: flex;
justify-content: center;
image-rendering: crisp-edges;
}

.page-grid {
max-width: 1280px;
width: 100%;
background: #ffffff;
box-shadow: 12px 12px 0 #1f3460, -3px -3px 0 #bacff5;
padding: 24px 20px;
border: 2px solid #1f3460;
}

.old-header {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: center;
border-bottom: 3px double #1f3460;
padding-bottom: 12px;
margin-bottom: 20px;
background: #ffffff;
}

.header-symbols {
font-size: 2rem;
letter-spacing: 6px;
color: #1f3460;
line-height: 1;
}

.blink { animation: blink 1.3s step-end infinite; }
.blink-delay { animation: blink 1.9s step-end infinite; }
.blink-long { animation: blink 2.5s step-end infinite; }

@keyframes blink {
0%, 100% { opacity: 1; }
50% { opacity: 0.2; }
}

.site-title {
font-size: 2.2rem;
font-weight: 800;
letter-spacing: -1px;
color: #1f3460;
text-transform: uppercase;
text-shadow: 2px 2px 0 #ffffff, 4px 4px 0 #c1d2f0;
}

.site-title .thin { font-weight: 300; color: #162742; }
.site-title .dot { color: #1f3460; font-size: 2.8rem; }

.header-counter {
background: #1f3460;
color: #ffffff;
padding: 6px 16px;
font-size: 1.1rem;
border: 2px solid #0a1c38;
font-weight: 600;
}

.marquee-wrap {
background: #1f3460;
color: #ffffff;
padding: 8px 0;
margin-bottom: 24px;
border: 2px inset #7897d1;
overflow: hidden;
white-space: nowrap;
}

.marquee {
display: inline-block;
animation: scrollMarquee 30s linear infinite;
font-size: 1.2rem;
font-weight: 600;
letter-spacing: 1px;
}

.marquee span { padding-right: 50px; }

@keyframes scrollMarquee {
0% { transform: translateX(0); }
100% { transform: translateX(-50%); }
}

.gif-banner {
width: 100%;
max-width: 1060px;
margin: 0 auto 28px auto;
border: 5px solid #1f3460;
background: #dae3f5;
text-align: center;
}

.gif-banner img {
width: 100%;
height: auto;
max-height: 128px;
object-fit: cover;
image-rendering: pixelated;
display: block;
}

.main-row {
display: grid;
grid-template-columns: 1fr 340px;
gap: 28px;
margin-bottom: 32px;
}

.mirrors-panel {
background: #ffffff;
border: 2px solid #1f3460;
padding: 18px 16px;
}

.panel-title {
font-size: 1.2rem;
background: #1f3460;
color: #ffffff;
padding: 8px 14px;
margin-bottom: 20px;
text-transform: uppercase;
letter-spacing: 1.5px;
border: 2px outset #3f69af;
font-weight: 700;
}

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

.link-card {
background: #f5faff;
border: 2px solid #1f3460;
padding: 14px 12px;
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 12px;
font-size: 1.1rem;
word-break: break-all;
}

.link-card.primary-mirror {
background: #e2efff;
border-left-width: 8px;
border-left-color: #1f3460;
}

.link-url {
flex: 2 1 260px;
font-weight: 700;
color: #16325c;
text-decoration: underline dotted #1f3460;
cursor: pointer;
word-break: break-all;
font-family: 'Courier New', monospace;
font-size: 1rem;
}

.copy-btn {
background: #1f3460;
color: white;
border: none;
padding: 6px 16px;
font-family: 'Courier New', monospace;
font-weight: 700;
font-size: 0.95rem;
cursor: pointer;
border: 2px outset #3f69af;
}

.copy-btn:active {
border: 2px inset #1b2e55;
background: #142c55;
}

.link-latency {
font-size: 0.85rem;
background: #dee9fc;
padding: 4px 12px;
color: #0b1c3a;
border: 1px solid #1f3460;
margin-left: auto;
white-space: nowrap;
font-weight: 600;
}

.seo-micro {
margin-top: 24px;
font-size: 0.7rem;
text-transform: uppercase;
color: #3a5282;
border-top: 1px dashed #1f3460;
padding-top: 12px;
display: flex;
flex-wrap: wrap;
gap: 0 20px;
}

.verify-panel {
background: #ffffff;
border: 2px solid #1f3460;
padding: 18px 14px;
align-self: start;
}

.verify-container {
display: flex;
flex-direction: column;
gap: 14px;
margin-bottom: 22px;
}

.verify-input {
padding: 14px 12px;
background: #fcfcfc;
border: 2px solid #1f3460;
font-family: 'Courier New', monospace;
font-size: 0.95rem;
width: 100%;
word-break: break-all;
}

.verify-input:focus {
outline: 2px solid #5f8ad4;
background: #ffffff;
}

.verify-btn {
background: #1f3460;
color: #ffffff;
border: none;
padding: 14px 0;
font-family: 'Courier New', monospace;
font-size: 1.3rem;
font-weight: 800;
border: 3px outset #3f69af;
cursor: pointer;
}

.verify-btn:active {
border: 3px inset #1d3562;
background: #142c55;
}

.validation-result {
margin-top: 10px;
padding: 12px;
display: none;
font-weight: 700;
word-break: break-word;
border: 2px solid;
font-size: 0.95rem;
}

.validation-result.success {
display: block;
background: #ecf9ec;
border-color: #1f3460;
color: #1f4a2b;
border-left: 8px solid #1f3460;
}

.validation-result.error {
display: block;
background: #fff2f2;
border-color: #b11f2f;
color: #9e1b28;
border-left: 8px solid #b11f2f;
}

.verify-badge {
margin-top: 22px;
text-align: center;
}

.badge-prime {
background: #1f3460;
color: #ffffff;
padding: 8px 24px;
font-size: 1.3rem;
border: 4px ridge #99b9f0;
display: inline-block;
font-weight: 800;
letter-spacing: 2px;
}

.verify-footnote {
margin-top: 18px;
color: #3b5490;
font-style: italic;
font-size: 0.85rem;
border-left: 4px solid #1f3460;
padding-left: 14px;
background: #f0f5ff;
padding: 8px 14px;
}

.info-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 20px;
margin: 30px 0 20px;
}

.info-card {
background: #f8fcff;
border: 2px solid #1f3460;
padding: 18px 16px;
}

.info-card h3 {
color: #1f3460;
font-size: 1.3rem;
border-bottom: 2px dotted #1f3460;
margin-bottom: 14px;
padding-bottom: 6px;
font-weight: 800;
}

.info-card p {
margin-bottom: 14px;
font-size: 0.95rem;
color: #10233f;
}

.stats {
background: #e5efff;
padding: 10px;
border: 1px solid #1f3460;
font-weight: 600;
border-left: 4px solid #1f3460;
font-size: 0.9rem;
}

.specs-bar {
display: flex;
flex-wrap: wrap;
background: #1f3460;
color: #ffffff;
border: 4px ridge #5b7ec2;
padding: 14px 18px;
margin: 20px 0 20px;
justify-content: space-around;
font-size: 1rem;
font-weight: 700;
}

.spec-item {
border-right: 2px solid #9cb4e0;
padding-right: 22px;
padding-left: 4px;
}

.spec-item:last-child { border-right: none; }

.seo-text-block {
margin: 24px 0 20px;
padding: 16px 18px;
background: #f3f9ff;
border: 2px solid #1f3460;
}

.block-head {
font-size: 1.3rem;
color: #1f3460;
margin-bottom: 14px;
font-weight: 800;
}

.content-columns {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 24px;
margin: 20px 0 28px;
}

.column-head {
background: #1f3460;
color: #ffffff;
padding: 8px 16px;
margin-bottom: 16px;
font-size: 1.2rem;
display: inline-block;
font-weight: 800;
letter-spacing: 1px;
border: 2px outset #5375b3;
}

.left-text, .right-text {
background: #f8fdff;
border: 2px solid #1f3460;
padding: 18px 16px;
}

.left-text p, .right-text p {
margin-bottom: 16px;
font-size: 0.95rem;
color: #10213b;
}

.stats-block {
display: flex;
flex-wrap: wrap;
background: #ffffff;
border: 3px solid #1f3460;
padding: 16px 8px;
margin: 24px 0;
justify-content: space-evenly;
}

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

.stat-number {
font-size: 2.2rem;
font-weight: 900;
color: #1f3460;
line-height: 1;
letter-spacing: -1px;
}

.stat-label {
font-size: 0.85rem;
text-transform: uppercase;
color: #1b2f52;
font-weight: 700;
margin-top: 4px;
}

.faq-snippet {
margin: 28px 0 24px;
padding: 0 4px;
}

.faq-head {
font-size: 1.3rem;
color: #1f3460;
margin-bottom: 18px;
font-weight: 800;
border-left: 8px solid #1f3460;
padding-left: 16px;
}

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

.faq-item {
background: #f5faff;
border: 2px solid #1f3460;
padding: 14px 16px;
}

.faq-q {
font-weight: 800;
color: #1f3460;
margin-bottom: 8px;
font-size: 1rem;
}

.faq-a {
font-size: 0.9rem;
color: #1f2d4a;
}

.extended-content {
margin: 24px 0 20px;
padding: 18px 20px;
background: #f2f7ff;
border: 2px solid #1f3460;
}

.extended-head {
font-size: 1.2rem;
color: #1f3460;
margin-bottom: 16px;
font-weight: 800;
border-bottom: 2px dashed #1f3460;
padding-bottom: 6px;
}

.vendor-showcase {
margin: 28px 0 20px;
}

.showcase-head {
font-size: 1.3rem;
color: #1f3460;
margin-bottom: 16px;
font-weight: 800;
}

.vendor-list {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 14px;
}

.vendor-item {
background: #f5faff;
border: 2px solid #1f3460;
padding: 12px 14px;
display: flex;
flex-direction: column;
font-size: 0.9rem;
}

.vendor-badge {
background: #1f3460;
color: white;
padding: 3px 10px;
font-size: 0.75rem;
display: inline-block;
width: fit-content;
margin: 6px 0 4px;
font-weight: 700;
border: 1px solid #ffffff;
}

.status-bar {
display: flex;
flex-wrap: wrap;
background: #1f3460;
color: #ffffff;
border: 4px ridge #5f84c5;
padding: 10px 18px;
margin: 28px 0 24px;
justify-content: space-between;
font-size: 0.95rem;
font-weight: 600;
}

.status-item {
display: flex;
align-items: center;
gap: 5px;
border-right: 2px solid #99b9f0;
padding-right: 18px;
}

.status-item:last-child { border-right: none; }

.old-footer {
border-top: 3px double #1f3460;
padding-top: 22px;
display: flex;
flex-direction: column;
align-items: center;
gap: 16px;
font-size: 0.9rem;
}

.footer-keywords {
display: flex;
flex-wrap: wrap;
gap: 14px 32px;
justify-content: center;
color: #1f3460;
font-weight: 700;
font-size: 0.9rem;
letter-spacing: 0.5px;
}

.footer-copy {
display: flex;
gap: 10px;
color: #2f4880;
font-weight: 600;
background: #ecf2fe;
padding: 8px 20px;
border: 2px solid #1f3460;
font-size: 0.85rem;
}

.footer-pgp {
margin-top: 6px;
}

.cursor-blink { animation: blink 1.2s infinite; }

@media (max-width: 720px) {
body { padding: 8px; }
.page-grid { padding: 16px 12px; }
.main-row { grid-template-columns: 1fr; }
.info-grid { grid-template-columns: 1fr; }
.content-columns { grid-template-columns: 1fr; }
.faq-grid { grid-template-columns: 1fr; }
.vendor-list { grid-template-columns: 1fr; }
.specs-bar { flex-direction: column; gap: 10px; }
.spec-item { border-right: none; padding-right: 0; }
.status-bar { flex-direction: column; gap: 12px; }
.status-item { border-right: none; padding-right: 0; }
.site-title { font-size: 1.8rem; }
.gif-banner img { max-height: 96px; }
.link-card { flex-direction: column; align-items: flex-start; }
.link-latency { margin-left: 0; }
.stat-number { font-size: 1.8rem; }
}

::selection { background: #1f3460; color: #ffffff; }

.notification {
position: fixed;
top: 20px;
right: 20px;
background: #1f3460;
color: white;
padding: 12px 24px;
border: 4px double #ffffff;
z-index: 10000;
transform: translateX(150%);
transition: transform 0.3s ease;
font-weight: bold;
font-family: 'Courier New', monospace;
}
.notification.show { transform: translateX(0); }