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

:root {
    --bg: #0a0a0a;
    --accent: #ff5050;
    --text: #ffffff;
    --text-muted: #aaaaaa;
    --border: rgba(255, 80, 80, 0.18);
    --card: #111111;
}

* {
    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.7;
    font-size: 16px;
    overflow-x: hidden;
}

.void-container {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 24px;
    position: relative;
}

.void-container::before,
.void-container::after {
    content: '';
    position: absolute;
    left: 40px;
    right: 40px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--accent), transparent);
    opacity: 0.6;
}

.void-container::before { top: 185px; }
.void-container::after { bottom: 165px; }

.void-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 55px;
    border-bottom: 1px solid var(--border);
}

.void-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4.1rem;
    font-weight: 600;
    letter-spacing: -3.5px;
    text-transform: uppercase;
    line-height: 1;
}

.void-title .red {
    color: var(--accent);
}

.status {
    font-size: 0.98rem;
    color: #888888;
    letter-spacing: 1.5px;
    white-space: nowrap;
}

.online {
    color: #22ff88;
    animation: pulse 2s infinite ease-in-out;
}

.main-heading {
    font-size: 2.85rem;
    font-weight: 600;
    text-align: center;
    margin: 45px 0 12px;
    letter-spacing: -1.2px;
    line-height: 1.1;
}

.mirrors-layer {
    padding: 35px 0 75px;
    text-align: center;
}

.layer-title {
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 4.5px;
    color: #666666;
    margin-bottom: 32px;
    font-weight: 500;
}

.mirrors {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 860px;
    margin: 0 auto;
}

.mirror-link {
    color: var(--text);
    text-decoration: none;
    font-family: ui-monospace, monospace;
    font-size: 1.16rem;
    padding: 16px 22px;
    border: 1px solid var(--border);
    background: var(--card);
    transition: all 0.25s ease;
    display: block;
    word-break: break-all;
}

.mirror-link:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(255, 80, 80, 0.04);
    transform: translateX(6px);
}

.mirror-notice {
    margin-top: 28px;
    font-size: 0.94rem;
    color: #777777;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.ad-layer {
    padding: 48px 0 52px;
    text-align: center;
}

.ad-container {
    display: inline-block;
    border: 1px solid var(--border);
    padding: 8px;
    background: #0f0f0f;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.ad-gif {
    width: 1060px;
    height: 128px;
    display: block;
    image-rendering: crisp-edges;
}

.info-layer,
.products-layer,
.howto-layer {
    padding: 72px 0;
}

.section-title {
    font-size: 2.15rem;
    text-align: center;
    margin-bottom: 28px;
    letter-spacing: -0.6px;
    font-weight: 600;
}

.section-desc {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 52px;
    color: var(--text-muted);
    font-size: 1.06rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 26px;
}

.feature {
    background: var(--card);
    padding: 32px 26px;
    border: 1px solid var(--border);
    transition: border-color 0.3s ease;
}

.feature:hover {
    border-color: var(--accent);
}

.feature h3 {
    color: var(--accent);
    margin-bottom: 14px;
    font-size: 1.38rem;
    font-weight: 600;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 26px;
}

.preview-item {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.preview-item:hover {
    transform: translateY(-12px);
    border-color: var(--accent);
    box-shadow: 0 15px 35px rgba(255, 80, 80, 0.12);
}

.preview-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.preview-item:hover img {
    transform: scale(1.04);
}

.preview-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10,10,10,0.98), rgba(10,10,10,0.7));
    color: var(--accent);
    text-align: center;
    padding: 14px 0;
    font-size: 0.96rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
}

.product-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 14px;
}

.category {
    background: var(--card);
    padding: 19px 24px;
    border-left: 4px solid var(--accent);
    font-size: 1.06rem;
    transition: all 0.25s ease;
}

.category:hover {
    background: #1a1a1a;
    padding-left: 28px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 38px;
    margin-top: 35px;
}

.step {
    position: relative;
    padding-left: 58px;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    background: var(--accent);
    color: #000;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.45rem;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(255, 80, 80, 0.3);
}

.step h3 {
    margin-bottom: 13px;
    color: #e0e0e0;
    font-size: 1.32rem;
}

.void-footer {
    padding-top: 82px;
    border-top: 1px solid var(--border);
    text-align: center;
    color: #666666;
    font-size: 0.96rem;
}

.red-line {
    width: 96px;
    height: 1px;
    background: var(--accent);
    margin: 36px auto;
}

.rules {
    margin: 22px auto;
    max-width: 740px;
    font-size: 0.98rem;
    line-height: 1.65;
}

.warning {
    font-size: 0.84rem;
    color: #555555;
    font-style: italic;
    margin-top: 32px;
}

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

@media (max-width: 1100px) {
    .ad-gif {
        width: 100%;
        height: auto;
        max-height: 128px;
        object-fit: cover;
    }
    
    .void-title {
        font-size: 3.35rem;
    }
    
    .main-heading {
        font-size: 2.4rem;
    }
    
    .void-container::before,
    .void-container::after {
        left: 20px;
        right: 20px;
    }
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 26px;
    margin-top: 40px;
}

.advantage {
    background: #111111;
    padding: 32px 26px;
    border: 1px solid rgba(255, 80, 80, 0.18);
    transition: border-color 0.3s ease;
}

.advantage:hover {
    border-color: #ff5050;
}

.advantage h3 {
    color: #ff5050;
    margin-bottom: 14px;
    font-size: 1.38rem;
    font-weight: 600;
}

.faq-layer {
    padding: 72px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 26px;
    margin-top: 35px;
}

.faq-item {
    background: #111111;
    padding: 28px 26px;
    border: 1px solid rgba(255, 80, 80, 0.18);
}

.faq-item h3 {
    color: #ff5050;
    margin-bottom: 16px;
    font-size: 1.25rem;
    line-height: 1.4;
}

.rules-content {
    background: #111111;
    padding: 32px 28px;
    border: 1px solid rgba(255, 80, 80, 0.18);
    margin-top: 30px;
    font-size: 1.02rem;
    line-height: 1.75;
}

.rules-content ul {
    margin-top: 20px;
    padding-left: 22px;
}

.rules-content li {
    margin-bottom: 12px;
}

.info-layer .intro-text {
    font-size: 1.07rem;
    color: #cccccc;
    max-width: 820px;
    margin: 0 auto 32px;
    text-align: center;
}

.main-heading {
    font-size: 2.85rem;
    font-weight: 600;
    text-align: center;
    margin: 45px 0 12px;
    letter-spacing: -1.2px;
    line-height: 1.1;
}

.mirror-notice {
    margin-top: 28px;
    font-size: 0.95rem;
    color: #777777;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.65;
}

.section-desc {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 52px;
    color: #aaaaaa;
    font-size: 1.07rem;
}

.footer-main {
    font-size: 1.05rem;
    color: #888888;
    line-height: 1.6;
}

@media (max-width: 1100px) {
    .advantages-grid,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .main-heading {
        font-size: 2.4rem;
    }
    
    .info-layer .intro-text {
        font-size: 1.02rem;
    }
}