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

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #FFFFFF;
    color: #17191b;
    line-height: 1.68;
    font-size: 16px;
}

.archive-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 48px 24px 80px;
}

.archive-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 90px;
    padding-bottom: 32px;
    border-bottom: 1px solid #eaeaea;
}

.logo-container {
    height: 44px;
}

.logo {
    height: 44px;
    width: auto;
    display: block;
}

.status-bar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 14.5px;
    color: #4a4f57;
}

.status {
    background-color: #17191b;
    color: #FFFFFF;
    padding: 7px 18px;
    border-radius: 6px;
    font-weight: 600;
    letter-spacing: 0.6px;
    white-space: nowrap;
}

.mirrors {
    font-weight: 600;
    color: #313c48;
    white-space: nowrap;
}

.mirror-link {
    color: #313c48;
    text-decoration: none;
    transition: color 0.25s ease;
    word-break: break-all;
}

.mirror-link:hover {
    color: #17191b;
}

.archive-content {
    display: flex;
    flex-direction: column;
    gap: 140px;
}

.archive-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
}

.section-label {
    font-size: 13.2px;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: #313c48;
    margin-bottom: 14px;
    font-weight: 700;
}

.visual-card {
    background: #fafafa;
    border: 1px solid #e8e8e8;
    padding: 14px;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(23, 25, 27, 0.07);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.visual-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(23, 25, 27, 0.12);
}

.section-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.section-info h1 {
    font-size: 34px;
    line-height: 1.2;
    margin-bottom: 10px;
    font-weight: 700;
    color: #17191b;
}

.section-info h2 {
    font-size: 27px;
    line-height: 1.25;
    margin-bottom: 18px;
    font-weight: 600;
    color: #17191b;
}

.section-info h3 {
    font-size: 21px;
    margin: 26px 0 14px;
    color: #313c48;
    font-weight: 600;
}

.section-info p {
    font-size: 17.2px;
    color: #3f454e;
    margin-bottom: 19px;
}

.info-badge {
    display: inline-block;
    background: #17191b;
    color: #fff;
    padding: 9px 20px;
    font-size: 14.5px;
    border-radius: 6px;
    font-weight: 500;
    margin-top: 8px;
}

.stats-list {
    list-style: none;
    margin: 20px 0 24px;
}

.stats-list li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 16px;
    color: #3f454e;
}

.stats-list li:last-child {
    border-bottom: none;
}

.category-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.tag {
    background: #f4f4f4;
    color: #313c48;
    padding: 8px 18px;
    border-radius: 9999px;
    font-size: 14.8px;
    font-weight: 500;
    transition: all 0.25s ease;
}

.tag:hover {
    background: #313c48;
    color: #fff;
}

.section-info-full {
    grid-column: 1 / -1;
}

.wallet-status {
    margin-top: 28px;
    padding: 28px 32px;
    background: #fafafa;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
}

.balance-label {
    font-size: 14.5px;
    color: #6b7280;
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
}

.balance {
    font-size: 32px;
    font-weight: 700;
    color: #17191b;
    letter-spacing: -0.8px;
}

.warning-text {
    color: #9f1f1f;
    font-size: 15.5px;
    margin-top: 32px;
    padding: 20px 24px;
    background: #fff5f5;
    border-left: 5px solid #e03e3e;
    border-radius: 4px;
}

.archive-footer {
    margin-top: 160px;
    padding-top: 48px;
    border-top: 1px solid #eaeaea;
    text-align: center;
    color: #6b7280;
    font-size: 14.8px;
}

.archive-footer .warning {
    font-size: 13.5px;
    margin-top: 12px;
    color: #c53030;
}

@media (max-width: 920px) {
    .archive-section {
        grid-template-columns: 1fr;
        gap: 56px;
    }
    
    .archive-header {
        flex-direction: column;
        gap: 28px;
        align-items: flex-start;
    }
    
    .section-info h1 {
        font-size: 30px;
    }
    
    .section-info h2 {
        font-size: 24px;
    }
    
    .archive-container {
        padding: 36px 20px 60px;
    }
    
    .archive-content {
        gap: 100px;
    }
}

@media (max-width: 640px) {
    .status-bar {
        gap: 12px;
        font-size: 13.8px;
    }
    
    .visual-card {
        padding: 10px;
    }
}

.archive-section#primary-access .section-info h1,
.archive-section#primary-access .section-info h2 {
    color: #17191b;
}

.archive-section#primary-access .section-info strong {
    color: #17191b;
    font-weight: 700;
}

.status-bar .mirrors {
    font-weight: 700;
    color: #17191b;
}

.mirror-link {
    color: #313c48;
    transition: color 0.3s ease;
}

.mirror-link:hover {
    color: #17191b;
    text-decoration: underline;
}

.info-badge {
    background: linear-gradient(135deg, #17191b, #2a2f38);
    color: #fff;
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(23, 25, 27, 0.15);
}

.stats-list li {
    position: relative;
    padding-left: 28px;
}

.stats-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #313c48;
    font-size: 18px;
    line-height: 1;
}

.category-tags .tag {
    transition: all 0.25s ease;
    border: 1px solid transparent;
}

.category-tags .tag:hover {
    background: #17191b;
    color: #ffffff;
    transform: translateY(-2px);
}

.section-info-full h3 {
    color: #17191b;
    margin: 28px 0 14px;
    font-size: 21px;
}

.warning-text {
    background: #fff5f5;
    border-left: 5px solid #e03e3e;
    padding: 22px 26px;
    border-radius: 8px;
    margin: 32px 0;
    font-size: 15.8px;
    line-height: 1.65;
}

.archive-footer p {
    margin-bottom: 8px;
}

.archive-footer .warning {
    font-size: 13.8px;
    color: #c53030;
    font-weight: 500;
}

/* SEO-friendly link styling */
.mirror-link {
    word-break: break-all;
    hyphens: auto;
}

/* Improve readability for search engines */
.section-info p {
    text-align: justify;
    hyphens: auto;
}

/* Subtle focus for Bing indexing */
h1, h2, h3 {
    scroll-margin-top: 80px;
}

/* Performance optimized hover effects */
.visual-card,
.tag,
.mirror-link {
    will-change: transform, color, background;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                color 0.3s ease,
                background 0.3s ease;
}

/* Ensure fast loading on mobile */
@media (max-width: 768px) {
    .archive-section {
        gap: 48px;
    }
    
    .info-badge {
        padding: 9px 18px;
        font-size: 14px;
    }
    
    .stats-list li {
        padding-left: 22px;
    }
}