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

:root {
    --bg: #0a0f1c;
    --accent: #274372;
    --text: #ffffff;
    --text-secondary: #a0b0d0;
    --border: rgba(39, 67, 114, 0.4);
}

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

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

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 15, 28, 0.97);
    backdrop-filter: blur(12px);
    z-index: 100;
    border-bottom: 1px solid var(--border);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 29px;
    font-weight: 600;
    letter-spacing: -2.5px;
    color: var(--text);
}

.tagline {
    font-size: 13.5px;
    color: var(--accent);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 500;
}

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(to bottom, rgba(10,15,28,0.92), var(--bg));
    text-align: center;
    padding: 110px 20px 90px;
}

.hero-content h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(3.2rem, 8.5vw, 6.2rem);
    font-weight: 600;
    letter-spacing: -4px;
    line-height: 1.05;
    margin-bottom: 18px;
}

.subtitle {
    font-size: 1.28rem;
    max-width: 720px;
    margin: 0 auto 42px;
    color: var(--text-secondary);
}

.login-teaser {
    max-width: 460px;
    margin: 0 auto 46px;
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 0 80px rgba(39, 67, 114, 0.45);
}

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

.enter-btn {
    display: inline-block;
    padding: 17px 58px;
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--text);
    font-size: 1.12rem;
    font-weight: 500;
    letter-spacing: 1.8px;
    cursor: pointer;
    transition: all 0.35s ease;
    border-radius: 6px;
}

.enter-btn:hover {
    background: var(--accent);
    box-shadow: 0 0 45px rgba(39, 67, 114, 0.75);
    transform: translateY(-2px);
}

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

.stat {
    background: rgba(39, 67, 114, 0.18);
    padding: 11px 26px;
    border-radius: 40px;
    font-size: 1.02rem;
    border: 1px solid var(--border);
    color: #c0d0f0;
}

/* ARCHIVE SECTION */
.archive {
    padding: 130px 20px 110px;
}

.archive-header {
    text-align: center;
    max-width: 860px;
    margin: 0 auto 72px;
}

.archive-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.95rem;
    line-height: 1.1;
    margin-bottom: 16px;
}

.archive-desc {
    font-size: 1.18rem;
    color: var(--text-secondary);
    max-width: 720px;
    margin: 0 auto;
}

.archive-scroll {
    display: flex;
    gap: 26px;
    overflow-x: auto;
    padding: 12px 0 30px;
    scrollbar-width: none;
}

.archive-scroll::-webkit-scrollbar {
    display: none;
}

.archive-card {
    min-width: 390px;
    background: rgba(15, 22, 42, 0.92);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.archive-card:hover {
    transform: translateY(-14px);
    box-shadow: 0 30px 60px rgba(39, 67, 114, 0.28);
}

.card-image,
.wallet-img {
    width: 100%;
    height: 255px;
    object-fit: cover;
    display: block;
}

.wallets {
    display: flex;
    gap: 3px;
}

.wallets .wallet-img {
    flex: 1;
    height: 255px;
}

.card-overlay {
    padding: 26px 28px 32px;
}

.card-overlay h3 {
    font-size: 1.58rem;
    margin-bottom: 13px;
    font-weight: 600;
}

.card-overlay p {
    color: #c0d0e8;
    margin-bottom: 13px;
}

.highlight {
    color: #7ac4ff;
    font-weight: 500;
}

.ad-card {
    min-width: 430px;
}

.ad-gif {
    width: 100%;
    height: 128px;
    object-fit: cover;
    display: block;
}

/* ABOUT PRIME */
.about-prime {
    padding: 110px 20px;
    background: #05080f;
}

.about-prime h2 {
    text-align: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.85rem;
    margin-bottom: 68px;
}

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

.feature {
    background: rgba(15, 22, 42, 0.6);
    padding: 32px 28px;
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: border-color 0.3s ease;
}

.feature:hover {
    border-color: #274372;
}

.feature h3 {
    color: #8ac8ff;
    margin-bottom: 14px;
    font-size: 1.38rem;
}

/* MIRRORS */
.mirrors {
    padding: 110px 20px;
    background: var(--bg);
    border-top: 1px solid var(--border);
}

.mirrors h2 {
    text-align: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.7rem;
    margin-bottom: 22px;
}

.mirrors-intro {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 52px;
    color: var(--text-secondary);
    font-size: 1.13rem;
}

.mirrors-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    max-width: 940px;
    margin: 0 auto 42px;
}

.mirror-link {
    display: block;
    padding: 17px 30px;
    background: rgba(39, 67, 114, 0.1);
    border: 1px solid var(--accent);
    color: #b0c8f0;
    text-decoration: none;
    font-family: monospace;
    font-size: 1.09rem;
    transition: all 0.35s ease;
    border-radius: 6px;
    max-width: 360px;
}

.mirror-link:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-3px);
}

.mirrors-note {
    text-align: center;
    color: #64708a;
    font-size: 0.96rem;
}

/* FOOTER */
footer {
    padding: 70px 20px 50px;
    text-align: center;
    border-top: 1px solid var(--border);
    color: #64708a;
}

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

.keywords-footer {
    font-size: 0.84rem;
    color: #4a5a7a;
    margin-top: 32px;
    letter-spacing: 0.5px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .archive-card,
    .ad-card {
        min-width: 310px;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 14px;
    }
    
    .feature {
        padding: 28px 24px;
    }
}

@media (max-width: 480px) {
    .archive-scroll {
        gap: 18px;
    }
    
    .mirror-link {
        max-width: 100%;
    }
}

.about-prime, .benefits, .how-to-access, .faq {
    padding: 110px 20px;
    background: #05080f;
}

.about-prime h2, .benefits h2, .how-to-access h2, .faq h2 {
    text-align: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.85rem;
    margin-bottom: 68px;
    color: #ffffff;
}

.features-grid, .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 34px;
    max-width: 1140px;
    margin: 0 auto;
}

.feature, .benefit-item {
    background: rgba(15, 22, 42, 0.65);
    padding: 32px 28px;
    border: 1px solid rgba(39, 67, 114, 0.4);
    border-radius: 12px;
    transition: border-color 0.3s ease;
}

.feature:hover, .benefit-item:hover {
    border-color: #274372;
}

.feature h3, .benefit-item h3 {
    color: #8ac8ff;
    margin-bottom: 14px;
    font-size: 1.38rem;
    font-weight: 600;
}

.steps {
    max-width: 820px;
    margin: 0 auto 40px;
}

.step {
    display: flex;
    gap: 24px;
    margin-bottom: 42px;
    align-items: flex-start;
}

.step-number {
    width: 48px;
    height: 48px;
    background: #274372;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 600;
    border-radius: 50%;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.35rem;
    margin-bottom: 10px;
    color: #c0d0f0;
}

.warning {
    text-align: center;
    max-width: 760px;
    margin: 40px auto 0;
    color: #e07a5f;
    font-size: 1.05rem;
    font-weight: 500;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(15, 22, 42, 0.65);
    padding: 32px 28px;
    border: 1px solid rgba(39, 67, 114, 0.4);
    border-radius: 12px;
}

.faq-item h3 {
    color: #8ac8ff;
    margin-bottom: 14px;
    font-size: 1.32rem;
}

.mirrors-intro, .mirrors-note {
    color: #a0b0d0;
    line-height: 1.65;
}

.mirrors-intro {
    font-size: 1.13rem;
}

.mirrors-note {
    font-size: 0.96rem;
    margin-top: 30px;
}

/* Schema & SEO friendly micro-adjustments */
h1, h2, h3 {
    font-weight: 600;
    line-height: 1.15;
}

p {
    margin-bottom: 16px;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .about-prime, .benefits, .how-to-access, .faq {
        padding: 90px 20px;
    }
    
    .about-prime h2, .benefits h2, .how-to-access h2, .faq h2 {
        font-size: 2.4rem;
        margin-bottom: 50px;
    }
    
    .step {
        gap: 18px;
    }
    
    .step-number {
        width: 42px;
        height: 42px;
        font-size: 1.25rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .feature, .benefit-item, .faq-item {
        padding: 26px 22px;
    }
}