:root {
    --bg: #0a0c12;
    --surface: #11141f;
    --dark: #303948;
    --text: #e0e4ed;
    --text-muted: #8a94b0;
    --accent: #3cbef2;
    --light: #ffffff;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.65;
    font-size: 16px;
    overflow-x: hidden;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 12, 18, 0.96);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid #1f2533;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    max-width: 1480px;
    margin: 0 auto;
    padding: 18px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

nav {
    display: flex;
    gap: 32px;
}

nav a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.3px;
    transition: color 0.25s ease;
}

nav a:hover {
    color: var(--accent);
}

.archive-container {
    max-width: 1480px;
    margin: 0 auto;
    padding: 110px 40px 140px;
    display: flex;
    flex-direction: column;
    gap: 110px;
}

.archive-page {
    background: var(--surface);
    border: 1px solid #1f2533;
    padding: 72px 88px;
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.archive-page:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.archive-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.page-header {
    margin-bottom: 52px;
}

.file-id {
    display: inline-block;
    background: var(--dark);
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    letter-spacing: 1.5px;
    border-radius: 3px;
    margin-bottom: 16px;
}

.page-header h1 {
    font-family: 'Space Grotesk', system-ui, sans-serif;
    font-size: 2.85rem;
    font-weight: 600;
    line-height: 1.1;
    color: var(--light);
    margin-bottom: 10px;
}

.subtitle {
    color: var(--text-muted);
    font-size: 1.15rem;
    font-weight: 400;
}

.lead {
    font-size: 1.28rem;
    max-width: 780px;
    color: #c5cbd9;
    margin-bottom: 36px;
}

.warning {
    background: rgba(60, 190, 242, 0.07);
    border-left: 4px solid var(--accent);
    padding: 22px 28px;
    font-size: 0.97rem;
    color: #b0b9d0;
}

.image-container {
    margin: 48px 0;
    border: 1px solid #242b3d;
    overflow: hidden;
    background: #0a0c12;
    transition: border-color 0.3s ease;
}

.image-container:hover {
    border-color: var(--accent);
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-container:hover img {
    transform: scale(1.035);
}

.text-block {
    margin-top: 42px;
    color: var(--text);
}

.text-block p {
    margin-bottom: 22px;
    font-size: 1.02rem;
}

.text-block h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.65rem;
    color: var(--accent);
    margin: 42px 0 18px;
    font-weight: 600;
}

.text-block ul {
    list-style: none;
    margin: 24px 0;
}

.text-block ul li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: #c5cbd9;
}

.text-block ul li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 1.4rem;
    line-height: 1;
}

.highlight {
    background: rgba(60, 190, 242, 0.08);
    padding: 20px 26px;
    border-left: 4px solid var(--accent);
    margin: 32px 0;
    font-style: italic;
}

.wallet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 36px;
    margin: 48px 0;
}

.wallet-card {
    background: #0f1321;
    border: 1px solid #242b3d;
    padding: 36px;
    transition: all 0.35s ease;
}

.wallet-card:hover {
    border-color: var(--accent);
    transform: translateY(-6px);
}

.wallet-card img {
    width: 100%;
    height: auto;
    border: 1px solid #1f2533;
    margin-bottom: 28px;
    transition: transform 0.4s ease;
}

.wallet-card:hover img {
    transform: scale(1.02);
}

.wallet-card h3 {
    color: var(--accent);
    font-size: 1.45rem;
    margin-bottom: 14px;
    font-weight: 600;
}

.mirrors-list {
    margin: 52px 0 40px;
}

.mirror-item {
    background: #0f1321;
    padding: 20px 26px;
    border: 1px solid #242b3d;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 18px;
    font-family: 'Space Grotesk', monospace;
    font-size: 1.08rem;
    transition: all 0.3s ease;
}

.mirror-item:hover {
    border-color: var(--accent);
    background: #141925;
}

.onion-icon {
    background: var(--dark);
    color: var(--accent);
    padding: 6px 12px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 3px;
    flex-shrink: 0;
}

footer {
    text-align: center;
    padding: 80px 20px 50px;
    color: #555d75;
    font-size: 0.9rem;
    border-top: 1px solid #1f2533;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .archive-page {
        padding: 60px 60px;
    }
}

@media (max-width: 992px) {
    .header-content {
        padding: 16px 24px;
    }
    
    nav {
        gap: 20px;
    }
    
    .archive-container {
        padding: 90px 24px 100px;
        gap: 90px;
    }
    
    .page-header h1 {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
    
    .archive-page {
        padding: 50px 32px;
    }
    
    .wallet-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    
    .mirror-item {
        font-size: 1rem;
        padding: 18px 22px;
    }
}

@media (max-width: 480px) {
    .header-content {
        flex-direction: column;
        gap: 14px;
        text-align: center;
    }
    
    .archive-container {
        padding: 80px 16px 80px;
    }
    
    .archive-page {
        padding: 42px 24px;
    }
    
    .page-header h1 {
        font-size: 2.1rem;
    }
}
body {
    font-feature-settings: "kern" 1;
}

h1, h2, h3 {
    font-feature-settings: "kern" 1, "liga" 1;
}

.lead {
    font-size: 1.32rem;
    line-height: 1.68;
    color: #d1d7e4;
    margin-bottom: 42px;
}

.text-block p {
    font-size: 1.03rem;
    line-height: 1.78;
    margin-bottom: 26px;
}

.text-block ul li {
    padding-left: 32px;
    position: relative;
    margin-bottom: 10px;
}

.text-block ul li:before {
    content: "•";
    position: absolute;
    left: 8px;
    color: #3cbef2;
    font-size: 1.5rem;
    line-height: 1;
    top: 2px;
}

.highlight {
    background: rgba(60, 190, 242, 0.09);
    border-left: 5px solid #3cbef2;
    padding: 24px 30px;
    margin: 38px 0;
    font-size: 1.02rem;
    line-height: 1.7;
    color: #c8d0e3;
}

.warning {
    background: rgba(60, 190, 242, 0.075);
    border-left: 5px solid #3cbef2;
    padding: 26px 32px;
    margin: 32px 0;
    font-size: 1rem;
    line-height: 1.75;
}

.mirror-item a {
    color: #e0e4ed;
    text-decoration: none;
    transition: color 0.25s ease;
}

.mirror-item a:hover {
    color: #3cbef2;
}

.mirror-item {
    transition: background 0.3s ease, border-color 0.3s ease;
}

.archive-page {
    transition: box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.archive-page:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
}

.wallet-card {
    transition: transform 0.35s ease, border-color 0.35s ease;
}

.wallet-card:hover {
    transform: translateY(-8px);
}

.image-container {
    position: relative;
}

.image-container::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(10,12,18,0.4));
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.image-container:hover::after {
    opacity: 1;
}

.page-header h1 {
    letter-spacing: -0.02em;
}

nav a {
    position: relative;
}

nav a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 1.5px;
    bottom: -3px;
    left: 0;
    background-color: #3cbef2;
    transition: width 0.3s ease;
}

nav a:hover:after {
    width: 100%;
}

footer p {
    font-size: 0.88rem;
    letter-spacing: 0.4px;
}

/* Schema & SEO friendly micro adjustments */
strong {
    color: #3cbef2;
    font-weight: 600;
}

/* Performance optimized hover states */
@media (prefers-reduced-motion: reduce) {
    .archive-page:hover,
    .wallet-card:hover,
    .image-container:hover img,
    .mirror-item {
        transition: none;
        transform: none;
    }
}