* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Courier New', Courier, 'Lucida Sans Typewriter', monospace;
}

body {
    background: #FFFFFF;
    color: #274372;
    line-height: 1.5;
    padding: 20px 20px 30px;
    max-width: 1400px;
    margin: 0 auto;
    border: 2px solid #274372;
    box-shadow: 8px 8px 0 rgba(39, 67, 114, 0.15);
    min-height: 100vh;
    position: relative;
}

.corner-stamp {
    position: absolute;
    top: 12px;
    right: 20px;
    background: #274372;
    color: white;
    padding: 4px 12px;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transform: rotate(2deg);
    border: 2px solid #274372;
    outline: 2px solid white;
    outline-offset: -4px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.old-school-header pre {
    font-size: 0.55rem;
    line-height: 1.2;
    text-align: center;
    color: #274372;
    border-bottom: 2px solid #274372;
    padding-bottom: 10px;
    margin-bottom: 15px;
    overflow-x: auto;
    white-space: pre-wrap;
    word-break: break-all;
}

.main-nav {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    margin: 15px 0 10px;
    border-left: 4px solid #274372;
    padding-left: 15px;
}

.nav-item {
    background: white;
    color: #274372;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.3rem;
    padding: 4px 12px;
    border: 2px solid #274372;
    transition: 0.1s linear;
    display: inline-block;
}

.nav-item.active {
    background: #274372;
    color: white;
}

.nav-item:hover {
    background: #274372;
    color: white;
}

.banner-zone {
    margin: 20px 0 20px;
    border: 3px double #274372;
    padding: 8px;
    background: #f5f7fc;
}

.responsive-banner {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border: 1px solid #274372;
}

.announcement-bar {
    background: #274372;
    color: white;
    padding: 10px;
    text-align: center;
    font-weight: bold;
    border: 2px solid white;
    outline: 2px solid #274372;
    margin: 20px 0;
    font-size: 1rem;
}

.vault-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 30px;
    margin: 20px 0;
}

@media (max-width: 750px) {
    .vault-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .corner-stamp {
        position: static;
        display: inline-block;
        margin-bottom: 10px;
        transform: none;
    }
    .old-school-header pre {
        font-size: 0.45rem;
    }
    .nav-item {
        font-size: 1rem;
    }
}

.section-block {
    border: 2px solid #274372;
    padding: 20px 16px;
    background: white;
    margin-bottom: 25px;
    box-shadow: 5px 5px 0 #274372;
}

.section-title {
    font-size: 1.7rem;
    font-weight: normal;
    margin-top: -35px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.angled-bg {
    background: #274372;
    color: white;
    padding: 4px 20px 4px 12px;
    display: inline-block;
    border: 2px solid white;
    outline: 2px solid #274372;
    font-size: 1.3rem;
}

.mirror-feed {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.link-card {
    border: 2px solid #274372;
    background: white;
    transition: transform 0.15s;
}

.link-url {
    padding: 14px 14px 6px;
    font-size: 1.1rem;
    word-break: break-all;
    border-bottom: 1px dashed #274372;
    cursor: pointer;
    color: #274372;
    font-weight: bold;
}

.link-url:hover {
    background: #eef2fa;
}

.link-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 14px;
    background: #f0f3f9;
    font-size: 0.95rem;
    border-top: 1px solid #274372;
    flex-wrap: wrap;
    gap: 8px;
}

.copy-btn {
    background: white;
    border: 2px solid #274372;
    color: #274372;
    font-weight: bold;
    padding: 4px 12px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: 0.05s;
    text-transform: lowercase;
}

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

.link-latency {
    font-family: inherit;
    background: #274372;
    color: white;
    padding: 3px 8px;
    letter-spacing: 0.5px;
}

.verify-badge {
    background: white;
    color: #274372;
    border: 2px solid #274372;
    padding: 2px 8px;
    font-weight: bold;
    font-size: 0.8rem;
}

.ssl-badge {
    background: #274372;
    color: white;
    padding: 2px 8px;
    font-size: 0.8rem;
}

.link-footer {
    display: flex;
    justify-content: space-between;
    padding: 6px 14px 10px;
    font-size: 0.8rem;
    background: white;
    border-top: 1px dotted #274372;
}

.verify-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 10px 0;
}

.verify-input {
    flex: 1 1 260px;
    padding: 14px 12px;
    border: 2px solid #274372;
    background: white;
    font-size: 1rem;
    color: #274372;
    outline: none;
}

.verify-input:focus {
    background: #eef2fa;
}

.verify-btn {
    background: white;
    border: 2px solid #274372;
    color: #274372;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 10px 24px;
    cursor: pointer;
}

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

.verify-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 15px 0 5px;
    padding: 10px;
    background: #f0f3f9;
    border: 1px solid #274372;
    font-size: 0.9rem;
}

.validation-result {
    margin-top: 15px;
    padding: 12px;
    border: 2px solid;
    font-weight: bold;
    display: none;
    word-break: break-all;
}

.validation-result.success {
    display: block;
    background: white;
    border-color: #274372;
    color: #274372;
}

.validation-result.error {
    display: block;
    background: white;
    border-color: #274372;
    color: #274372;
    text-decoration: line-through wavy #274372 2px;
}

.auction-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 15px;
    padding: 8px;
    background: #274372;
    color: white;
    font-weight: bold;
}

.auctions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 10px 0;
}

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

.auction-item {
    border: 2px solid #274372;
    padding: 12px;
    background: white;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.auction-cat {
    font-size: 0.8rem;
    color: #274372;
    opacity: 0.8;
    text-transform: uppercase;
}

.auction-title {
    font-weight: bold;
    font-size: 1rem;
    word-break: break-word;
}

.auction-price {
    background: #274372;
    color: white;
    padding: 4px 8px;
    display: inline-block;
    align-self: flex-start;
    font-size: 0.9rem;
}

.auction-bids {
    font-size: 0.8rem;
    color: #274372;
    font-weight: bold;
}

.auction-ends {
    font-size: 0.8rem;
    border-top: 1px dashed #274372;
    padding-top: 4px;
}

.auction-seller {
    font-size: 0.75rem;
    color: #274372;
    opacity: 0.8;
}

.guides-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.guide-item {
    border: 2px solid #274372;
    padding: 15px;
    background: white;
}

.guide-item h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #274372;
}

.guide-item p {
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.guide-meta {
    font-size: 0.8rem;
    color: #274372;
    opacity: 0.7;
    display: block;
    border-top: 1px dotted #274372;
    padding-top: 6px;
}

.info-content {
    font-size: 1rem;
}

.hl-prime {
    background: #274372;
    color: white;
    padding: 2px 8px;
    font-weight: bold;
}

.stat-bars {
    margin: 20px 0;
}

.stat-row {
    margin-bottom: 15px;
}

.stat-label {
    display: inline-block;
    width: 160px;
    font-weight: bold;
}

.stat-value {
    float: right;
    font-weight: bold;
}

.stat-bar {
    background: #e0e5f0;
    height: 12px;
    margin-top: 4px;
    border: 1px solid #274372;
}

.stat-bar div {
    background: #274372;
    height: 100%;
}

.monthly-stats {
    margin: 15px 0;
}

.month-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.month-row span:first-child {
    width: 70px;
}

.month-row span:nth-child(2) {
    width: 60px;
    font-weight: bold;
}

.mini-bar {
    flex: 1;
    background: #e0e5f0;
    height: 10px;
    border: 1px solid #274372;
}

.mini-bar div {
    background: #274372;
    height: 100%;
}

.feature-list {
    list-style: none;
    margin: 15px 0;
}

.feature-list li {
    padding: 6px 0;
    border-bottom: 1px dotted #274372;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-icon {
    color: #274372;
    font-size: 1.2rem;
}

.commission-table {
    width: 100%;
    margin: 15px 0;
    border-collapse: collapse;
}

.commission-table td {
    padding: 8px;
    border: 1px solid #274372;
}

.commission-table tr td:first-child {
    font-weight: bold;
}

.shipping-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin: 15px 0;
}

.shipping-stats div {
    padding: 6px;
    background: #f0f3f9;
    border: 1px solid #274372;
    text-align: center;
    font-size: 0.9rem;
}

.old-quote {
    font-style: italic;
    margin: 16px 0;
    padding-left: 20px;
    border-left: 6px solid #274372;
}

.dot-sep {
    border: none;
    border-top: 2px dotted #274372;
    margin: 18px 0;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border: 2px solid #274372;
    padding: 12px;
}

.faq-q {
    font-weight: bold;
    margin-bottom: 8px;
    color: #274372;
}

.faq-a {
    padding-left: 15px;
    border-left: 3px solid #274372;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.review-item {
    border: 2px solid #274372;
    padding: 12px;
    background: white;
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    padding-bottom: 4px;
    border-bottom: 1px dotted #274372;
}

.reviewer {
    font-weight: bold;
}

.review-rating {
    background: #274372;
    color: white;
    padding: 2px 8px;
    font-size: 0.8rem;
}

.review-text {
    font-size: 0.95rem;
    margin-bottom: 8px;
    line-height: 1.4;
}

.review-date {
    font-size: 0.75rem;
    color: #274372;
    opacity: 0.7;
    text-align: right;
}

.blog-posts {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.blog-item {
    border: 2px solid #274372;
    padding: 15px;
    background: white;
}

.blog-item h3 {
    font-size: 1.2rem;
    margin-bottom: 6px;
    color: #274372;
}

.blog-item p {
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.blog-meta {
    font-size: 0.75rem;
    color: #274372;
    opacity: 0.7;
    display: block;
    border-top: 1px dotted #274372;
    padding-top: 6px;
}

.webring {
    border: 2px solid #274372;
    padding: 14px 12px;
    text-align: center;
    font-size: 1.1rem;
    background: white;
    color: #274372;
}

.webring-links {
    margin-top: 10px;
    font-size: 0.9rem;
}

.webring-links a {
    color: #274372;
    text-decoration: none;
    border-bottom: 1px dotted #274372;
}

.webring-links a:hover {
    background: #274372;
    color: white;
}

.seo-text-block {
    margin: 40px 0 20px;
    padding: 20px;
    border: 2px solid #274372;
    background: white;
    font-size: 0.95rem;
}

.seo-text-block h2 {
    font-size: 1.5rem;
    margin: 25px 0 15px;
    color: #274372;
    border-left: 6px solid #274372;
    padding-left: 15px;
}

.seo-text-block h2:first-child {
    margin-top: 5px;
}

.seo-text-block p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.seo-stats {
    list-style: none;
    margin: 20px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.seo-stats li {
    padding: 6px 10px;
    background: #f0f3f9;
    border: 1px solid #274372;
    font-size: 0.9rem;
}

.keyword-cloud {
    line-height: 2;
    word-spacing: 8px;
    font-size: 0.9rem;
    padding: 15px;
    background: #f0f3f9;
    border: 1px solid #274372;
}

.old-footer {
    margin-top: 40px;
    padding-top: 15px;
    border-top: 3px double #274372;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    font-size: 0.95rem;
    text-transform: uppercase;
    gap: 15px;
}

.footer-links {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed #274372;
    text-align: center;
    font-size: 0.85rem;
}

.footer-links a {
    color: #274372;
    text-decoration: none;
    border-bottom: 1px dotted #274372;
    margin: 0 5px;
}

.footer-links a:hover {
    background: #274372;
    color: white;
}

.footnote {
    margin-top: 12px;
    font-size: 0.85rem;
    text-align: right;
    border-top: 1px dashed #274372;
    padding-top: 8px;
    letter-spacing: 0.5px;
}

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #274372;
    color: white;
    padding: 12px 24px;
    border: 3px solid white;
    outline: 2px solid #274372;
    z-index: 10000;
    transform: translateX(150%);
    transition: transform 0.2s ease;
    font-weight: bold;
    max-width: 90%;
    word-break: break-all;
}

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

@media (max-width: 500px) {
    body {
        padding: 15px 10px;
    }
    .section-title {
        font-size: 1.3rem;
    }
    .angled-bg {
        font-size: 1rem;
    }
    .stat-label {
        width: 120px;
        font-size: 0.9rem;
    }
    .seo-stats {
        grid-template-columns: 1fr;
    }
    .shipping-stats {
        grid-template-columns: 1fr;
    }
    .verify-stats {
        flex-direction: column;
        gap: 5px;
    }
}