@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Space+Grotesk:wght@500;600&display=swap');

:root {
    --prime-blue: #274372;
    --light: #FFFFFF;
    --border: #e5e5e5;
    --text: #111111;
    --text-light: #555555;
    --accent: #274372;
}

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

body {
    background: var(--light);
    color: var(--text);
    font-family: 'Inter', system_ui, sans-serif;
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

header {
    background: var(--light);
    border-bottom: 1px solid var(--border);
    padding: 1.25rem 5%;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

.prime-text {
    color: var(--prime-blue);
}

.void-text {
    color: #999999;
    font-weight: 500;
}

.status {
    font-size: 0.875rem;
    color: #666666;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.dot {
    display: inline-block;
    width: 9px;
    height: 9px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
    animation: pulse 2s infinite ease-in-out;
}

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

.main-container {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    min-height: calc(100vh - 78px);
}

.sidebar {
    width: 280px;
    background: #fafafa;
    border-right: 1px solid var(--border);
    padding: 3.5rem 2.5rem 2rem;
    flex-shrink: 0;
}

.sidebar ul {
    list-style: none;
    margin-bottom: 4.5rem;
}

.sidebar li {
    margin-bottom: 1.35rem;
}

.sidebar a {
    text-decoration: none;
    color: #222222;
    font-weight: 500;
    font-size: 1.08rem;
    transition: all 0.25s ease;
    display: block;
    padding: 0.35rem 0;
}

.sidebar a:hover,
.sidebar a.active {
    color: var(--accent);
    padding-left: 12px;
    border-left: 3px solid var(--accent);
}

.mirrors h3 {
    font-size: 0.82rem;
    color: #777777;
    margin-bottom: 1.1rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.mirror-link {
    display: block;
    color: var(--accent);
    font-size: 0.92rem;
    margin-bottom: 1rem;
    text-decoration: none;
    line-height: 1.35;
    transition: color 0.2s ease;
}

.mirror-link:hover {
    color: #1a2e4f;
}

.mirror-note {
    font-size: 0.8rem;
    color: #888888;
    margin-top: 1.8rem;
    line-height: 1.4;
}

.content {
    flex: 1;
    padding: 3.5rem 6% 5rem;
    max-width: 1020px;
}

.ad-banner {
    margin-bottom: 4.2rem;
    border: 1px solid var(--border);
    overflow: hidden;
    background: #f9f9f9;
    border-radius: 4px;
}

.ad-gif {
    width: 100%;
    max-width: 1060px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.preview-section {
    margin-bottom: 6rem;
}

.preview-section h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.4rem;
    font-weight: 600;
    color: var(--prime-blue);
    line-height: 1.05;
    margin-bottom: 0.6rem;
    letter-spacing: -1.5px;
}

.preview-section h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.55rem;
    font-weight: 600;
    color: #1f1f1f;
    margin-bottom: 1.6rem;
    letter-spacing: -0.8px;
}

.image-container {
    border: 1px solid #e8e8e8;
    background: #fff;
    padding: 14px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.035);
    margin-bottom: 1.9rem;
    border-radius: 6px;
}

.preview-img {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid #f0f0f0;
    border-radius: 3px;
}

.caption {
    font-size: 0.97rem;
    color: var(--text-light);
    max-width: 800px;
}

.text-block {
    max-width: 800px;
    font-size: 1.06rem;
    color: #222222;
}

.text-block p {
    margin-bottom: 1.45rem;
}

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

.text-block li {
    margin-bottom: 0.75rem;
    position: relative;
}

.text-block li:before {
    content: "•";
    color: var(--accent);
    position: absolute;
    left: -1.1rem;
}

.wallets .wallet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 2.2rem;
    margin-bottom: 2.2rem;
}

.wallet-card {
    border: 1px solid #e0e0e0;
    padding: 1.2rem;
    background: white;
    transition: all 0.3s ease;
    border-radius: 6px;
}

.wallet-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    border-color: #d0d0d0;
}

.wallet-img {
    width: 100%;
    height: auto;
    border: 1px solid #f0f0f0;
    border-radius: 4px;
}

.wallet-label {
    text-align: center;
    margin-top: 1rem;
    font-weight: 600;
    color: var(--prime-blue);
    font-size: 1.12rem;
}

.site-footer {
    margin-top: 7rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border);
    text-align: center;
    color: #666666;
    font-size: 0.93rem;
}

.site-footer .disclaimer {
    margin-top: 0.9rem;
    font-size: 0.86rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1080px) {
    .main-container {
        flex-direction: column;
    }
    .sidebar {
        width: 100%;
        padding: 2.2rem 6%;
        border-right: none;
        border-bottom: 1px solid var(--border);
        flex-wrap: wrap;
        gap: 2.5rem;
    }
    .sidebar ul {
        display: flex;
        gap: 2.2rem;
        margin-bottom: 0;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .content {
        padding: 2.4rem 6%;
    }
    .preview-section h1 {
        font-size: 2.7rem;
    }
    .preview-section h2 {
        font-size: 2.15rem;
    }
    .sidebar ul {
        gap: 1.4rem;
    }
    .logo {
        font-size: 1.95rem;
    }
}

.preview-section h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.35rem;
    font-weight: 600;
    color: #274372;
    line-height: 1.05;
    margin-bottom: 0.5rem;
    letter-spacing: -1.4px;
}

.preview-section h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.45rem;
    font-weight: 600;
    color: #1f1f1f;
    margin-bottom: 1.55rem;
    letter-spacing: -0.7px;
}

.text-block p {
    margin-bottom: 1.4rem;
}

.text-block ul {
    padding-left: 1.5rem;
    margin: 1.35rem 0 1.6rem;
}

.text-block li {
    margin-bottom: 0.8rem;
    position: relative;
}

.text-block li:before {
    content: "•";
    color: #274372;
    font-weight: bold;
    position: absolute;
    left: -1.2rem;
}

.text-block strong {
    color: #274372;
    font-weight: 600;
}

.mirrors h3 {
    font-size: 0.88rem;
    color: #666;
    margin-bottom: 1.2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.mirror-note {
    font-size: 0.82rem;
    color: #777;
    line-height: 1.45;
    margin-top: 1.6rem;
}

.site-footer p {
    margin-bottom: 0.4rem;
}

.site-footer strong {
    color: #274372;
}

@media (max-width: 768px) {
    .preview-section h1 {
        font-size: 2.65rem;
    }
    .preview-section h2 {
        font-size: 2.05rem;
    }
}