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

body {
    background: #0a0a0a;
    color: #e0e0e0;
    font-family: 'Courier New', Courier, monospace;
    line-height: 1.65;
    overflow-x: hidden;
}

.accent {
    color: #ff5050;
}

/* VOID HEADER */
.void-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(10, 10, 10, 0.96);
    border-bottom: 1px solid #ff5050;
    padding: 16px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    backdrop-filter: blur(8px);
}

.rift h1 {
    font-size: 44px;
    letter-spacing: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.subtitle {
    font-size: 13.5px;
    color: #ff5050;
    letter-spacing: 6px;
    margin-top: -8px;
    font-weight: 500;
}

/* Mirrors */
.mirrors {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 14px;
    flex-wrap: wrap;
}

.mirror-label {
    color: #777;
    font-size: 12.5px;
    letter-spacing: 2px;
    white-space: nowrap;
}

.mirror-link {
    color: #ff5050;
    text-decoration: none;
    transition: color 0.25s ease, text-shadow 0.25s ease;
}

.mirror-link:hover {
    color: #ffffff;
    text-shadow: 0 0 12px #ff5050;
}

/* MAIN VOID CONTAINER */
.void-container {
    max-width: 1120px;
    margin: 115px auto 100px;
    padding: 0 25px;
}

/* LAYERS */
.layer {
    margin-bottom: 135px;
    position: relative;
    border-left: 5px solid #ff5050;
    padding-left: 38px;
    transition: transform 0.4s ease;
}

.layer:hover {
    transform: translateX(8px);
}

.layer-content {
    background: #111111;
    padding: 42px 48px;
    border: 1px solid #252525;
    position: relative;
    box-shadow: 0 15px 45px rgba(255, 80, 80, 0.07);
    transition: box-shadow 0.4s ease;
}

.layer-content:hover {
    box-shadow: 0 20px 55px rgba(255, 80, 80, 0.12);
}

.layer-title {
    position: absolute;
    top: -19px;
    left: 46px;
    background: #0a0a0a;
    padding: 0 26px;
    font-size: 19.5px;
    color: #ff5050;
    letter-spacing: 4.5px;
    font-weight: 700;
    white-space: nowrap;
}

/* Images */
.layer-image {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid #2a2a2a;
    box-shadow: 0 0 30px rgba(255, 80, 80, 0.15);
    margin-bottom: 32px;
    transition: transform 0.5s ease;
}

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

/* Text blocks */
.text-block {
    margin-top: 28px;
    color: #d0d0d0;
}

.text-block h3 {
    color: #ff7070;
    margin: 24px 0 14px;
    font-size: 21px;
}

.text-block h4 {
    color: #ff9090;
    margin: 20px 0 10px;
    font-size: 17.5px;
}

.text-block ul {
    margin: 16px 0 24px 22px;
    list-style: none;
}

.text-block li {
    margin-bottom: 9px;
    position: relative;
    padding-left: 18px;
}

.text-block li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #ff5050;
}

/* Advertisement Rift */
.ad-rift {
    width: 1060px;
    height: 128px;
    margin: 95px auto;
    border: 2px dashed #ff5050;
    background: #0a0a0a;
    overflow: hidden;
    position: relative;
}

.ad-rift::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 80, 80, 0.2);
    pointer-events: none;
}

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

/* Market overlay */
.market-overlay {
    position: absolute;
    bottom: 32px;
    right: 32px;
    background: rgba(10, 10, 10, 0.92);
    padding: 9px 19px;
    border: 1px solid #ff5050;
    font-size: 14.5px;
    display: flex;
    align-items: center;
    gap: 11px;
    box-shadow: 0 0 20px rgba(255, 80, 80, 0.25);
}

.live-dot {
    display: inline-block;
    width: 11px;
    height: 11px;
    background: #ff5050;
    border-radius: 50%;
    animation: pulse 1.6s infinite ease-in-out;
}

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

/* FOOTER */
.void-footer {
    text-align: center;
    padding: 55px 20px 45px;
    border-top: 1px solid #1f1f1f;
    color: #555;
    font-size: 13.8px;
}

.void-footer .warning {
    color: #ff5050;
    margin-top: 14px;
    font-style: italic;
    letter-spacing: 1.2px;
}

/* Responsive */
@media (max-width: 1150px) {
    .ad-rift {
        width: 100%;
        max-width: 1060px;
        height: auto;
    }
    .ad-gif {
        height: auto;
    }
}

@media (max-width: 768px) {
    .void-header {
        padding: 14px 20px;
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .rift h1 {
        font-size: 36px;
        letter-spacing: 8px;
    }
    
    .layer {
        padding-left: 24px;
        margin-bottom: 100px;
    }
    
    .layer-title {
        left: 30px;
        font-size: 17px;
    }
    
    .layer-content {
        padding: 32px 28px;
    }
}

.layer.seo-layer,
.layer.faq-layer,
.layer.rules-layer,
.layer.categories-layer,
.layer.features-layer,
.layer.guide-layer {
    margin-bottom: 135px;
}

.layer-content {
    transition: box-shadow 0.3s ease;
}

.layer-content:hover {
    box-shadow: 0 20px 60px rgba(255, 80, 80, 0.13);
}

.text-block p {
    margin-bottom: 18px;
}

.text-block p:last-child {
    margin-bottom: 0;
}

.text-block ul {
    margin: 18px 0 26px 22px;
}

.text-block li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.text-block li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #ff5050;
    font-weight: bold;
}

.status {
    color: #ff7070;
    font-size: 14.5px;
    margin: 12px 0 22px;
    display: block;
    letter-spacing: 1px;
}

h3 {
    color: #ff7070;
    font-size: 21px;
    margin: 26px 0 14px;
    letter-spacing: 0.5px;
}

.text-block h3 {
    color: #ff7070;
}

.text-block h3 strong {
    color: #ff5050;
}

.faq-layer .text-block p {
    margin-bottom: 22px;
}

.faq-layer .text-block p strong {
    color: #ff9090;
    display: block;
    margin-bottom: 6px;
}

.seo-layer .text-block p:last-child {
    color: #ff5050;
    font-weight: 500;
    margin-top: 20px;
    text-align: center;
    padding: 14px;
    border: 1px dashed #ff5050;
    background: rgba(255, 80, 80, 0.05);
}

.mirrors {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.mirror-link {
    color: #ff5050;
    text-decoration: none;
    transition: all 0.25s ease;
    font-size: 14px;
}

.mirror-link:hover {
    color: #ffffff;
    text-shadow: 0 0 14px #ff5050;
}

.void-header {
    backdrop-filter: blur(6px);
}

.ad-rift {
    box-shadow: 0 8px 25px rgba(255, 80, 80, 0.1);
}

.market-overlay {
    font-weight: 500;
}

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

@media (max-width: 768px) {
    .layer {
        margin-bottom: 100px;
        padding-left: 22px;
    }
    
    .layer-title {
        font-size: 17.5px;
        left: 28px;
    }
    
    .layer-content {
        padding: 30px 24px;
    }
    
    .text-block h3 {
        font-size: 19px;
    }
    
    .mirrors {
        gap: 14px;
        justify-content: center;
    }
}