:root {
    --bg: #181a20;
    --card: #23252e;
    --accent: #2777ff;
    --text: #e0e0e0;
    --text-light: #b0b0b0;
    --border: rgba(39, 119, 255, 0.18);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', system-ui, sans-serif;
    line-height: 1.7;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(39, 119, 255, 0.035) 0%, transparent 55%),
        radial-gradient(circle at 75% 75%, rgba(39, 119, 255, 0.025) 0%, transparent 55%);
    background-attachment: fixed;
}

header {
    background: rgba(24, 26, 32, 0.97);
    backdrop-filter: blur(16px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1.35rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.2rem;
}

.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.95rem;
    font-weight: 600;
    letter-spacing: -0.05em;
    display: flex;
    align-items: center;
    gap: 4px;
}

.logo-void { color: #f0f0f0; }
.logo-lens { color: var(--accent); }

nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1.6rem;
}

nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.02rem;
    transition: color 0.25s ease;
}

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

.lens {
    max-width: 1280px;
    margin: 0 auto;
    padding: 5.5rem 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.hero {
    min-height: 92vh;
    display: flex;
    align-items: center;
    text-align: center;
    padding-top: 2rem;
}

.lens-content h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(3.4rem, 8vw, 6rem);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 1.1rem;
}

.subtitle {
    font-size: 1.45rem;
    color: #a8a8a8;
    max-width: 740px;
    margin: 0 auto 1.6rem;
}

.lead {
    font-size: 1.18rem;
    max-width: 680px;
    margin: 0 auto;
    color: #c8c8c8;
}

.mirrors-box {
    text-align: center;
    max-width: 620px;
    margin: 0 auto;
}

.mirrors-label {
    font-size: 0.95rem;
    letter-spacing: 3px;
    color: #777;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.mirror-list {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    align-items: center;
}

.mirror-link {
    display: block;
    color: var(--accent);
    background: rgba(39, 119, 255, 0.085);
    border: 1px solid var(--border);
    padding: 1.15rem 1.8rem;
    border-radius: 8px;
    font-family: ui-monospace, monospace;
    font-size: 1.12rem;
    transition: all 0.3s ease;
    text-decoration: none;
    width: 100%;
    max-width: 520px;
}

.mirror-link:hover {
    background: rgba(39, 119, 255, 0.16);
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(39, 119, 255, 0.15);
}

.mirror-note {
    color: #888;
    font-size: 0.96rem;
    margin-top: 2rem;
}

.market-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.main-img,
.sim-img {
    width: 100%;
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.75);
    transition: transform 0.4s ease;
}

.main-img:hover,
.sim-img:hover {
    transform: scale(1.015);
}

.market-info h2 {
    font-size: 2.25rem;
    line-height: 1.2;
    margin-bottom: 1.3rem;
}

.market-info h3 {
    color: var(--accent);
    font-size: 1.3rem;
    margin: 2.2rem 0 1rem;
}

.stats {
    list-style: none;
}

.stats li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    display: flex;
    gap: 1rem;
}

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

.stats strong {
    color: #ddd;
    min-width: 150px;
}

.content-block {
    max-width: 860px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.content-block p {
    margin-bottom: 1.6rem;
}

.content-block ul {
    margin: 1.4rem 0 2rem;
    padding-left: 1.6rem;
}

.content-block li {
    margin-bottom: 0.85rem;
}

.order-sim,
.login-sim,
.auth-sim {
    text-align: center;
    margin: 3rem 0;
}

.caption {
    margin-top: 1.4rem;
    color: #888;
    font-size: 1.02rem;
}

.listings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 2.8rem;
}

.listing-card {
    background: var(--card);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.listing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
}

.listing-card img {
    width: 100%;
    height: auto;
    display: block;
}

.listing-info {
    padding: 1.6rem;
}

.category {
    display: block;
    color: var(--accent);
    font-size: 0.88rem;
    letter-spacing: 1.8px;
    margin-bottom: 0.7rem;
    text-transform: uppercase;
}

footer {
    text-align: center;
    padding: 4.5rem 2rem 3.5rem;
    color: #666;
    font-size: 0.97rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

footer .small {
    margin: 1.2rem 0;
    font-size: 0.92rem;
}

.disclaimer {
    font-size: 0.85rem;
    max-width: 760px;
    margin: 2.2rem auto 0;
    color: #555;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .market-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    .lens {
        padding: 4.5rem 1.5rem;
    }
}

@media (max-width: 640px) {
    .nav-container {
        flex-direction: column;
        text-align: center;
        padding: 1.2rem 1.25rem;
    }
    nav {
        gap: 1rem;
        justify-content: center;
    }
    nav a {
        font-size: 1rem;
    }
    .hero {
        min-height: 80vh;
    }
}