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

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

.void-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.void-header {
    padding: 18px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #303948;
    background: rgba(26, 31, 43, 0.98);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(8px);
}

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

.mirror-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.mirror-link {
    color: #3cbef2;
    text-decoration: none;
    font-size: 0.95rem;
    word-break: break-all;
    transition: color 0.25s ease;
}

.mirror-link:hover {
    color: #ffffff;
}

.layers-wrapper {
    flex: 1;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.layers-wrapper::-webkit-scrollbar {
    display: none;
}

.layer {
    min-width: 100vw;
    padding: 60px 6%;
    display: flex;
    align-items: center;
    justify-content: center;
    scroll-snap-align: start;
    border-right: 1px solid #303948;
}

.layer:last-child {
    border-right: none;
}

.layer-content {
    max-width: 980px;
    width: 100%;
}

.layer-title {
    font-size: clamp(2.1rem, 5vw, 3.1rem);
    font-weight: 300;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 40px;
    text-align: center;
    color: #ffffff;
}

.layer-image {
    max-width: 100%;
    height: auto;
    border: 1px solid #303948;
    border-radius: 8px;
    margin: 40px 0;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
    transition: transform 0.4s ease;
}

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

.layer-desc {
    font-size: 1.15rem;
    color: #b0b8d0;
    text-align: center;
    max-width: 740px;
    margin: 0 auto 28px;
}

.seo-text {
    text-align: center;
    font-size: 0.96rem;
    color: #3cbef2;
    margin-top: 35px;
    letter-spacing: 0.5px;
}

.accent-line {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #3cbef2, transparent);
    margin: 45px auto;
}

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

.wallet-card {
    background: #252b3a;
    padding: 32px 28px;
    border: 1px solid #303948;
    border-radius: 10px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.wallet-card:hover {
    border-color: #3cbef2;
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(60, 190, 242, 0.12);
}

.wallet-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 22px;
}

.wallet-card h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
    color: #ffffff;
}

.wallet-type {
    color: #3cbef2;
    font-size: 1.02rem;
    margin-bottom: 14px;
}

.review-layer .review-text {
    background: #252b3a;
    padding: 42px;
    border: 1px solid #303948;
    border-radius: 10px;
    margin: 35px 0;
    text-align: left;
    font-size: 1.05rem;
}

.review-text h2 {
    color: #3cbef2;
    margin: 32px 0 14px;
    font-size: 1.45rem;
    font-weight: 400;
}

.status-bar {
    text-align: center;
    margin: 35px 0;
}

.status.online {
    color: #3cbef2;
    font-size: 1.08rem;
    letter-spacing: 1px;
}

.void-footer {
    padding: 32px 6%;
    border-top: 1px solid #303948;
    background: rgba(26, 31, 43, 0.98);
    text-align: center;
    color: #8a94b0;
    font-size: 0.93rem;
    backdrop-filter: blur(8px);
}

.footer-text .accent {
    color: #3cbef2;
}

.scroll-hint {
    margin-top: 16px;
    font-size: 0.9rem;
    letter-spacing: 2px;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .void-header {
        flex-direction: column;
        gap: 18px;
        padding: 16px 5%;
    }
    
    .mirror-links {
        gap: 15px;
        justify-content: center;
    }
    
    .layer {
        padding: 45px 5%;
    }
    
    .review-text {
        padding: 28px;
    }
    
    .wallet-card {
        padding: 26px 22px;
    }
}

.layer-title {
    font-size: clamp(2.2rem, 5.5vw, 3.3rem);
    font-weight: 300;
    letter-spacing: 7px;
    text-transform: uppercase;
    margin-bottom: 42px;
    text-align: center;
    color: #ffffff;
    line-height: 1.1;
}

.layer-desc {
    font-size: 1.16rem;
    color: #b0b8d0;
    text-align: center;
    max-width: 760px;
    margin: 0 auto 32px;
    font-weight: 400;
}

.seo-text {
    text-align: center;
    font-size: 0.97rem;
    color: #3cbef2;
    margin-top: 38px;
    letter-spacing: 0.8px;
    font-weight: 500;
}

.accent-line {
    width: 110px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #3cbef2, transparent);
    margin: 48px auto;
}

.review-text {
    background: #252b3a;
    padding: 45px;
    border: 1px solid #303948;
    border-radius: 10px;
    margin: 40px 0;
    text-align: left;
    font-size: 1.07rem;
    line-height: 1.7;
}

.review-text h2 {
    color: #3cbef2;
    margin: 34px 0 16px;
    font-size: 1.48rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.status-bar {
    text-align: center;
    margin: 38px 0 20px;
}

.status.online {
    color: #3cbef2;
    font-size: 1.1rem;
    letter-spacing: 1.2px;
    padding: 8px 20px;
    border: 1px solid #3cbef2;
    border-radius: 30px;
    display: inline-block;
    background: rgba(60, 190, 242, 0.08);
}

.wallet-card h3 {
    font-size: 1.65rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.wallet-type {
    color: #3cbef2;
    font-size: 1.05rem;
    margin-bottom: 16px;
    font-weight: 500;
}

.footer-text {
    margin-bottom: 12px;
}

.footer-text .accent {
    color: #3cbef2;
    font-weight: 500;
}

@media (max-width: 768px) {
    .layer {
        padding: 48px 5%;
    }
    
    .layer-title {
        letter-spacing: 4px;
    }
    
    .review-text {
        padding: 32px 24px;
    }
    
    .review-text h2 {
        font-size: 1.35rem;
    }
    
    .wallet-card {
        padding: 28px 24px;
    }
}