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

body {
background-color: #f2f6fc;
color: #121f33;
font-family: 'Courier New', 'VT323', 'IBM Plex Mono', 'Source Code Pro', monospace;
font-size: 1rem;
line-height: 1.5;
padding: 0 12px;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}

.page-grid {
max-width: 1320px;
margin: 24px auto 40px;
background: #FFFFFF;
border: 2px solid #274372;
box-shadow: 12px 12px 0 rgba(39, 67, 114, 0.2);
padding: 0 28px 32px;
}

.old-header {
border-bottom: 4px double #274372;
padding: 24px 0 16px;
margin-bottom: 24px;
background: linear-gradient(to bottom, #ffffff, #f9fcff);
}

.header-container {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: baseline;
}

.logo-area h1 {
font-size: 3rem;
font-weight: 500;
letter-spacing: -2px;
color: #274372;
text-transform: uppercase;
margin: 0;
line-height: 1;
text-shadow: 2px 2px 0 #cddbf5;
}

.site-logo .light {
color: #3d5d8c;
font-weight: 300;
}

.counter {
font-size: 0.8rem;
border: 1px solid #274372;
display: inline-block;
padding: 4px 12px;
margin-top: 6px;
background: #e4ecfb;
font-style: italic;
letter-spacing: 0.5px;
}

.main-nav {
display: flex;
gap: 32px;
font-size: 1.25rem;
text-transform: uppercase;
font-weight: 600;
flex-wrap: wrap;
}

.main-nav a {
color: #274372;
text-decoration: none;
border-bottom: 2px solid transparent;
padding-bottom: 4px;
transition: border 0.1s ease, background 0.1s;
}

.main-nav a:hover {
border-bottom: 2px solid #274372;
background: #e3edfe;
padding: 4px 8px 2px 8px;
margin: -4px -8px -2px -8px;
}

.ad-billboard {
margin: 28px 0 32px;
border: 2px solid #274372;
background: #e9f0fa;
text-align: center;
padding: 6px;
position: relative;
box-shadow: inset 0 0 0 1px #ffffff, 0 4px 0 #1f3452;
}

.prime-gif {
max-width: 100%;
height: auto;
display: block;
image-rendering: crisp-edges;
border: 1px solid #274372;
width: 1060px;
background: #ffffff;
}

.ad-label {
font-size: 0.7rem;
text-transform: uppercase;
background: #274372;
color: white;
display: inline-block;
padding: 4px 16px;
position: absolute;
bottom: -14px;
left: 24px;
letter-spacing: 1.5px;
font-weight: 600;
border: 1px solid white;
}

.hero-block {
background: #f2f8ff;
border: 2px solid #274372;
padding: 28px 24px;
margin: 36px 0;
box-shadow: 6px 6px 0 rgba(39, 67, 114, 0.15);
}

.hero-title {
font-size: 3.4rem;
font-weight: 500;
color: #274372;
text-transform: uppercase;
word-break: break-word;
line-height: 1.1;
margin-bottom: 8px;
}

.hero-title .year {
background: #274372;
color: #FFFFFF;
padding: 0 18px;
margin-left: 16px;
font-size: 2.4rem;
display: inline-block;
border: 2px solid #ffffff;
outline: 1px solid #274372;
}

.hero-sub {
font-size: 1.25rem;
color: #1e3b62;
letter-spacing: -0.5px;
}

.marquee-wrapper {
margin-top: 24px;
background: #FFFFFF;
border: 2px solid #274372;
overflow: hidden;
border-radius: 0;
}

.old-marquee {
white-space: nowrap;
overflow: hidden;
padding: 10px 0;
background: #FFFFFF;
color: #274372;
font-weight: 600;
border-top: 1px solid #274372;
border-bottom: 1px solid #274372;
}

.old-marquee span {
display: inline-block;
animation: scrollMarquee 32s linear infinite;
font-size: 1.15rem;
padding-right: 10px;
}

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

.stats-bar {
display: flex;
flex-wrap: wrap;
gap: 16px 40px;
background: #274372;
color: #FFFFFF;
padding: 18px 28px;
margin: 32px 0;
border: 3px double #FFFFFF;
justify-content: center;
font-size: 1.15rem;
box-shadow: inset 0 0 0 2px #1a2d4a;
}

.stat-item {
text-transform: uppercase;
display: flex;
align-items: baseline;
gap: 6px;
}

.stat-label {
font-weight: 700;
color: #b6d0f0;
font-size: 0.9rem;
}

.section-header {
display: flex;
align-items: center;
gap: 12px;
margin: 60px 0 24px;
border-bottom: 3px solid #274372;
padding-bottom: 10px;
}

.section-sign {
font-size: 2.2rem;
color: #274372;
line-height: 1;
font-weight: 400;
}

.section-header h3 {
font-size: 2rem;
font-weight: 400;
color: #274372;
text-transform: uppercase;
letter-spacing: -0.5px;
}

.verify-card {
background: #f4faff;
border: 2px solid #274372;
padding: 32px;
box-shadow: 8px 8px 0 rgba(39, 67, 114, 0.1);
}

.verify-note {
margin-bottom: 20px;
font-size: 1.05rem;
padding: 8px 12px;
background: #ffffff;
border-left: 6px solid #274372;
}

.input-group {
display: flex;
flex-wrap: wrap;
gap: 16px;
align-items: center;
}

#linkInput {
flex: 3 1 300px;
padding: 14px 18px;
border: 2px solid #274372;
background: #FFFFFF;
font-size: 1.1rem;
outline: none;
font-family: inherit;
box-shadow: inset 2px 2px 0 #b0c7e7;
transition: box-shadow 0.1s;
}

#linkInput:focus {
box-shadow: inset 3px 3px 0 #8aa3cc, 0 0 0 2px #c1d4f0;
}

.old-button {
background: #274372;
border: 2px solid #10243f;
color: #FFFFFF;
padding: 14px 32px;
font-size: 1.1rem;
text-transform: uppercase;
cursor: pointer;
font-weight: 600;
letter-spacing: 1px;
transition: 0.08s linear;
font-family: inherit;
box-shadow: 4px 4px 0 #0f1d32;
}

.old-button:hover {
background: #FFFFFF;
color: #274372;
border-color: #274372;
box-shadow: 2px 2px 0 #274372;
transform: translate(2px, 2px);
}

.old-button.small {
padding: 8px 16px;
font-size: 0.9rem;
box-shadow: 3px 3px 0 #0f1d32;
}

.validation-result {
margin-top: 24px;
padding: 16px 20px;
border: 2px solid transparent;
display: none;
font-weight: 600;
word-break: break-word;
background: #ffffff;
}

.validation-result.success {
display: block;
background: #e4f3e2;
border-color: #1f6742;
color: #15522e;
box-shadow: 4px 4px 0 #274372;
}

.validation-result.error {
display: block;
background: #ffe9ee;
border-color: #bc2f4b;
color: #a0223a;
box-shadow: 4px 4px 0 #5a1e2e;
}

.links-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 28px;
margin: 24px 0 16px;
}

.link-card {
background: #FFFFFF;
border: 2px solid #274372;
padding: 20px 18px;
transition: all 0.12s;
display: flex;
flex-direction: column;
box-shadow: 5px 5px 0 #b3c7e3;
}

.link-card:hover {
background: #edf4ff;
border-width: 2px;
box-shadow: 7px 7px 0 #274372;
transform: translate(-2px, -2px);
}

.link-header {
display: flex;
justify-content: space-between;
margin-bottom: 16px;
font-size: 0.9rem;
text-transform: uppercase;
}

.link-badge {
background: #274372;
color: #FFFFFF;
padding: 5px 10px;
font-weight: 600;
border: 1px solid white;
outline: 1px solid #274372;
}

.link-latency {
color: #274372;
border: 1px solid #274372;
padding: 5px 10px;
background: #f0f6ff;
}

.link-url {
font-size: 1.15rem;
background: #fbfdff;
padding: 16px 10px;
border: 2px dashed #274372;
margin: 12px 0 18px;
cursor: pointer;
word-break: break-all;
font-weight: 600;
transition: background 0.1s;
}

.link-url:hover {
background: #dbe6fa;
text-decoration: underline wavy #274372;
}

.copy-btn {
align-self: flex-start;
}

.mirror-footnote {
margin-top: 24px;
font-style: italic;
font-size: 0.9rem;
border-top: 1px dotted #274372;
padding-top: 14px;
color: #274372;
}

.info-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 28px;
margin: 56px 0 40px;
}

.wide-card {
grid-column: span 3;
}

@media (max-width: 800px) {
.info-grid {
grid-template-columns: 1fr;
}
.wide-card {
grid-column: span 1;
}
}

.info-card {
border: 2px solid #274372;
padding: 28px 22px;
background: #fbfeff;
box-shadow: 5px 5px 0 #c3d2e8;
}

.info-title {
font-size: 1.7rem;
color: #274372;
text-transform: uppercase;
margin-bottom: 18px;
border-bottom: 2px solid #274372;
padding-bottom: 8px;
font-weight: 500;
}

.old-list {
list-style: none;
padding-left: 4px;
color: #0f2642;
}

.old-list li {
margin-bottom: 10px;
padding-left: 20px;
position: relative;
}

.old-list li::before {
content: "►";
color: #274372;
font-size: 0.8rem;
position: absolute;
left: 0;
top: 0;
}

.extended-content {
margin: 60px 0 30px;
}

.content-columns {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 36px;
margin-bottom: 44px;
}

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

.col-title {
font-size: 1.6rem;
color: #274372;
border-left: 16px solid #274372;
padding-left: 16px;
margin-bottom: 20px;
text-transform: uppercase;
font-weight: 500;
}

.col p {
margin-bottom: 16px;
text-align: justify;
}

.faq-block {
border-top: 4px double #274372;
padding-top: 32px;
}

.faq-item {
margin-bottom: 26px;
}

.faq-q {
font-weight: 700;
font-size: 1.25rem;
color: #274372;
background: #deebfc;
padding: 8px 16px;
display: inline-block;
border-left: 8px solid #274372;
box-shadow: 3px 3px 0 #a7bad6;
}

.faq-a {
padding: 16px 22px;
background: #FFFFFF;
border: 1px solid #274372;
border-left: 6px solid #274372;
margin-top: 8px;
box-shadow: 4px 4px 0 #d2def0;
}

.reviews-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 24px;
margin: 30px 0;
}

@media (max-width: 900px) {
.reviews-grid {
grid-template-columns: repeat(2, 1fr);
}
}

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

.review-card {
border: 2px solid #274372;
padding: 20px;
background: #f8fbff;
box-shadow: 4px 4px 0 #274372;
}

.review-author {
font-weight: 700;
color: #274372;
margin-bottom: 10px;
text-transform: uppercase;
font-size: 1.1rem;
}

.review-text {
font-style: italic;
margin-bottom: 12px;
}

.review-rating {
color: #274372;
font-weight: 600;
letter-spacing: 2px;
}

.webring {
background: #274372;
color: #FFFFFF;
padding: 18px;
text-align: center;
font-size: 1.2rem;
margin: 48px 0 24px;
word-break: break-word;
border: 3px double #FFFFFF;
outline: 2px solid #274372;
font-weight: 500;
}

.webring span {
font-weight: 700;
margin: 0 10px;
color: #f9f3c6;
}

.seo-content-block {
margin: 40px 0 20px;
padding: 24px;
border: 2px solid #274372;
background: #f5faff;
box-shadow: 6px 6px 0 #c0d0ea;
}

.seo-content-block h3 {
font-size: 1.8rem;
color: #274372;
margin-bottom: 16px;
font-weight: 500;
}

.seo-content-block p {
margin-bottom: 16px;
}

.old-footer {
border-top: 4px double #274372;
margin-top: 40px;
padding: 32px 0 20px;
text-align: center;
font-size: 0.95rem;
background: #f5f9ff;
}

.footer-links {
margin-bottom: 18px;
word-break: break-word;
}

.footer-links a {
color: #274372;
text-decoration: underline wavy;
margin: 0 8px;
font-weight: 600;
transition: background 0.1s;
display: inline-block;
padding: 2px 4px;
}

.footer-links a:hover {
background: #274372;
color: #ffffff;
text-decoration: none;
}

.tiny {
font-size: 0.7rem;
color: #3b5780;
letter-spacing: 0.3px;
}

.notification {
position: fixed;
top: 28px;
right: 28px;
background: #274372;
color: #FFFFFF;
padding: 16px 28px;
border: 3px solid #FFFFFF;
z-index: 10000;
transform: translateX(150%);
transition: transform 0.25s cubic-bezier(0.2, 0.9, 0.3, 1);
font-size: 1rem;
font-weight: 600;
box-shadow: 10px 10px 0 rgba(0,0,0,0.2);
outline: 1px solid #274372;
}
.notification.show {
transform: translateX(0);
}

@media (max-width: 640px) {
.page-grid {
padding: 0 14px 24px;
box-shadow: 8px 8px 0 rgba(39,67,114,0.2);
}
.header-container {
flex-direction: column;
gap: 16px;
}
.main-nav {
gap: 20px;
}
.hero-title {
font-size: 2.3rem;
}
.hero-title .year {
font-size: 1.5rem;
margin-left: 6px;
padding: 0 10px;
}
.section-header h3 {
font-size: 1.5rem;
}
.section-sign {
font-size: 1.7rem;
}
.stats-bar {
flex-direction: column;
align-items: flex-start;
gap: 8px;
}
.stat-item {
width: 100%;
}
}