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

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #181a20;
    color: #e0e0e0;
    line-height: 1.65;
    font-size: 16px;
    overflow-x: hidden;
}

.void-bg {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at 50% 25%, rgba(39, 119, 255, 0.065) 0%, transparent 70%);
    z-index: -2;
    pointer-events: none;
}

.archive-container {
    position: relative;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
    z-index: 2;
}

.header {
    padding: 28px 0;
    border-bottom: 1px solid rgba(39, 119, 255, 0.12);
    position: sticky;
    top: 0;
    background: rgba(24, 26, 32, 0.97);
    backdrop-filter: blur(12px);
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    font-size: 1.85rem;
    font-weight: 700;
    letter-spacing: -1.2px;
    color: #2777ff;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-symbol {
    font-size: 2.1rem;
    line-height: 1;
}

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

.mirrors-label {
    color: #777;
    font-size: 0.9rem;
    letter-spacing: 1.8px;
    white-space: nowrap;
}

.mirror-link {
    color: #2777ff;
    text-decoration: none;
    font-family: ui-monospace, monospace;
    font-size: 0.94rem;
    transition: color 0.25s ease;
}

.mirror-link:hover {
    color: #6eb3ff;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 110px 0 90px;
}

.hero-overlay {
    text-align: center;
    width: 100%;
}

.hero-title {
    font-size: clamp(3.6rem, 8.5vw, 7.2rem);
    font-weight: 900;
    letter-spacing: -4.5px;
    line-height: 1.05;
    color: #2777ff;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.hero-subtitle {
    font-size: 1.42rem;
    color: #a0a0a0;
    margin-bottom: 55px;
    letter-spacing: 1.2px;
}

.hero-image-container {
    max-width: 780px;
    margin: 0 auto 55px;
    border: 1px solid rgba(39, 119, 255, 0.22);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(39, 119, 255, 0.16);
    transition: transform 0.4s ease;
}

.hero-image-container:hover {
    transform: scale(1.015);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
}

.enter-void-btn {
    display: inline-block;
    padding: 19px 56px;
    background: transparent;
    color: #2777ff;
    border: 2px solid #2777ff;
    font-size: 1.18rem;
    font-weight: 600;
    letter-spacing: 2.8px;
    text-decoration: none;
    transition: all 0.35s ease;
    border-radius: 4px;
}

.enter-void-btn:hover {
    background: #2777ff;
    color: #181a20;
    box-shadow: 0 0 45px rgba(39, 119, 255, 0.65);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 75px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.35rem;
    font-weight: 700;
    color: #2777ff;
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.95rem;
    color: #888;
    letter-spacing: 1.5px;
    margin-top: 6px;
}

.layer-title {
    text-align: center;
    font-size: 1.18rem;
    letter-spacing: 4.5px;
    color: #2777ff;
    margin: 120px 0 50px;
    text-transform: uppercase;
    opacity: 0.9;
}

.content-block {
    max-width: 860px;
    margin: 0 auto 90px;
    font-size: 1.07rem;
    color: #d0d0d0;
}

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

.content-block ul {
    margin: 28px 0 28px 24px;
}

.content-block li {
    margin-bottom: 14px;
    position: relative;
}

.content-block li:before {
    content: "◉";
    color: #2777ff;
    position: absolute;
    left: -24px;
}

.listings-section,
.order-section,
.about-section,
.vendor-section,
.academy-section,
.rules-section,
.features-section {
    margin-bottom: 110px;
}

.listing-preview,
.order-preview {
    background: #23252e;
    border: 1px solid rgba(39, 119, 255, 0.2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.4s ease;
}

.listing-preview:hover,
.order-preview:hover {
    border-color: rgba(39, 119, 255, 0.35);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

@media (min-width: 820px) {
    .listing-preview,
    .order-preview {
        flex-direction: row;
    }
}

.listing-image,
.order-image {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    flex-shrink: 0;
}

.listing-info {
    padding: 48px 50px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.listing-info h3 {
    font-size: 1.82rem;
    margin-bottom: 18px;
    color: #fff;
}

.listing-info p {
    margin-bottom: 28px;
    color: #bbb;
}

.price {
    color: #2777ff;
    font-size: 1.95rem;
    font-weight: 700;
    margin-bottom: 32px;
}

.view-btn {
    align-self: flex-start;
    padding: 15px 40px;
    background: #2777ff;
    color: #181a20;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.02rem;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.view-btn:hover {
    background: #5fa8ff;
    transform: translateY(-2px);
}

.order-status {
    padding: 50px;
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 1.15rem;
    color: #ccc;
}

.status-dot {
    width: 15px;
    height: 15px;
    background: #2777ff;
    border-radius: 50%;
    box-shadow: 0 0 20px #2777ff;
    animation: pulse 2.8s infinite ease-in-out;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 20px;
    max-width: 940px;
    margin: 0 auto;
}

.feature-item {
    background: #23252e;
    padding: 26px 32px;
    border: 1px solid rgba(39, 119, 255, 0.18);
    color: #ddd;
    text-align: center;
    font-size: 1.06rem;
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: #2777ff;
    color: #fff;
}

.auth-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 40px;
    margin-bottom: 100px;
}

.auth-card {
    background: #23252e;
    border: 1px solid rgba(39, 119, 255, 0.2);
    padding: 38px 32px;
    text-align: center;
    transition: all 0.4s ease;
}

.auth-card:hover {
    transform: translateY(-10px);
    border-color: rgba(39, 119, 255, 0.4);
}

.auth-card h2 {
    color: #2777ff;
    margin-bottom: 24px;
    font-size: 1.45rem;
}

.auth-image {
    width: 100%;
    max-height: 290px;
    object-fit: contain;
    border: 1px solid rgba(255,255,255,0.07);
    margin-bottom: 26px;
    border-radius: 4px;
}

.auth-desc {
    color: #aaa;
    font-size: 1.02rem;
}

.footer {
    text-align: center;
    padding: 90px 20px 60px;
    color: #666;
    border-top: 1px solid rgba(39, 119, 255, 0.1);
}

.footer p {
    margin-bottom: 12px;
    font-size: 0.98rem;
}

.disclaimer {
    font-size: 0.84rem;
    max-width: 720px;
    margin: 35px auto 0;
    line-height: 1.7;
    opacity: 0.75;
}

@media (max-width: 720px) {
    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 18px;
    }
    
    .hero {
        padding-top: 80px;
    }
    
    .hero-stats {
        gap: 40px;
    }
    
    .auth-grid {
        grid-template-columns: 1fr;
    }
    
    .listing-info {
        padding: 40px 30px;
    }
}

.hero-title {
    font-size: clamp(3.8rem, 9vw, 7.8rem);
    font-weight: 900;
    letter-spacing: -5px;
    line-height: 1.02;
    color: #2777ff;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.hero-subtitle {
    font-size: 1.38rem;
    color: #a8a8a8;
    margin-bottom: 58px;
    letter-spacing: 1.1px;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.hero-image-container {
    max-width: 800px;
    margin: 0 auto 60px;
    border: 1px solid rgba(39, 119, 255, 0.25);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 25px 65px rgba(39, 119, 255, 0.17);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-image-container:hover {
    transform: scale(1.008);
    box-shadow: 0 30px 80px rgba(39, 119, 255, 0.22);
}

.enter-void-btn {
    display: inline-block;
    padding: 20px 58px;
    background: transparent;
    color: #2777ff;
    border: 2px solid #2777ff;
    font-size: 1.16rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-decoration: none;
    transition: all 0.35s ease;
    border-radius: 4px;
}

.enter-void-btn:hover {
    background: #2777ff;
    color: #181a20;
    box-shadow: 0 0 50px rgba(39, 119, 255, 0.7);
    transform: translateY(-2px);
}

.layer-title {
    text-align: center;
    font-size: 1.22rem;
    letter-spacing: 5px;
    color: #2777ff;
    margin: 125px 0 52px;
    text-transform: uppercase;
    opacity: 0.92;
    font-weight: 500;
}

.content-block {
    max-width: 880px;
    margin: 0 auto 95px;
    font-size: 1.08rem;
    color: #d0d0d0;
    line-height: 1.68;
}

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

.content-block p:last-child {
    margin-bottom: 0;
}

.auth-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(370px, 1fr));
    gap: 42px;
    margin-bottom: 110px;
}

.auth-card {
    background: #23252e;
    border: 1px solid rgba(39, 119, 255, 0.22);
    padding: 40px 34px;
    text-align: center;
    transition: all 0.4s ease;
}

.auth-card:hover {
    transform: translateY(-8px);
    border-color: rgba(39, 119, 255, 0.45);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.auth-card h2 {
    color: #2777ff;
    margin-bottom: 26px;
    font-size: 1.48rem;
    font-weight: 600;
}

.auth-image {
    width: 100%;
    max-height: 295px;
    object-fit: contain;
    border: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 28px;
    border-radius: 4px;
}

.auth-desc {
    color: #b0b0b0;
    font-size: 1.03rem;
    line-height: 1.6;
}

.listing-info h3 {
    font-size: 1.85rem;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 600;
}

.listing-info p {
    margin-bottom: 30px;
    color: #c0c0c0;
}

.price {
    color: #2777ff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 34px;
}

.view-btn {
    align-self: flex-start;
    padding: 16px 42px;
    background: #2777ff;
    color: #181a20;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.04rem;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.view-btn:hover {
    background: #5fa8ff;
    transform: translateY(-3px);
}

.order-status {
    padding: 52px;
    display: flex;
    align-items: center;
    gap: 22px;
    font-size: 1.17rem;
    color: #e0e0e0;
}

.status-dot {
    width: 16px;
    height: 16px;
    background: #2777ff;
    border-radius: 50%;
    box-shadow: 0 0 22px #2777ff;
    animation: pulse 3s infinite ease-in-out;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.55; }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
    max-width: 960px;
    margin: 0 auto;
}

.feature-item {
    background: #23252e;
    padding: 28px 34px;
    border: 1px solid rgba(39, 119, 255, 0.2);
    color: #e0e0e0;
    text-align: center;
    font-size: 1.07rem;
    transition: all 0.35s ease;
}

.feature-item:hover {
    border-color: #2777ff;
    background: #272a34;
    color: #ffffff;
}

.footer {
    text-align: center;
    padding: 95px 20px 65px;
    color: #666;
    border-top: 1px solid rgba(39, 119, 255, 0.1);
}

.footer p {
    margin-bottom: 14px;
    font-size: 0.99rem;
}

.small {
    font-size: 0.93rem;
    opacity: 0.8;
}

.disclaimer {
    font-size: 0.85rem;
    max-width: 740px;
    margin: 38px auto 0;
    line-height: 1.75;
    opacity: 0.72;
}

@media (max-width: 740px) {
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .layer-title {
        font-size: 1.1rem;
        letter-spacing: 3.5px;
        margin: 90px 0 40px;
    }
    
    .content-block {
        font-size: 1.05rem;
    }
    
    .auth-grid {
        gap: 32px;
    }
    
    .listing-info {
        padding: 42px 32px;
    }
    
    .hero-stats {
        gap: 45px;
    }
}