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

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

header {
    border-bottom: 1px solid #ff5050;
    padding: 25px 40px;
    background: rgba(10, 10, 10, 0.98);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(8px);
}

.mirror-bar {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
    margin-bottom: 18px;
    font-size: 14.5px;
    letter-spacing: 1.1px;
}

.mirror-label {
    color: #ff5050;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 3px;
    white-space: nowrap;
}

.mirror-link {
    color: #e0e0e0;
    text-decoration: none;
    word-break: break-all;
    transition: color 0.25s ease;
}

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

.logo {
    text-align: center;
}

.logo-text {
    font-size: 54px;
    font-weight: 700;
    letter-spacing: 10px;
    color: #ffffff;
    text-shadow: 0 0 25px #ff5050,
                 0 0 40px rgba(255, 80, 80, 0.3);
}

.logo-sub {
    display: block;
    font-size: 14px;
    letter-spacing: 7px;
    color: #ff5050;
    margin-top: -8px;
    text-transform: uppercase;
}

.ad-banner {
    text-align: center;
    margin: 40px auto 45px;
    max-width: 1060px;
    padding: 12px;
    background: #0f0f0f;
    border: 1px solid #ff505025;
}

.ad-banner img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
    border: 1px solid #ff505040;
    transition: border-color 0.3s ease;
}

.ad-banner img:hover {
    border-color: #ff505080;
}

.void-container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 30px 20px 90px;
}

.layer {
    margin-bottom: 110px;
    position: relative;
}

.layer::before {
    content: '';
    position: absolute;
    left: 50%;
    top: -50px;
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, #ff5050, transparent);
    transform: translateX(-50%);
    opacity: 0.6;
}

.layer-title {
    font-size: 23px;
    text-transform: uppercase;
    letter-spacing: 5.5px;
    color: #ff5050;
    text-align: center;
    margin-bottom: 32px;
    position: relative;
    font-weight: 600;
}

.layer-title::after {
    content: '';
    position: absolute;
    bottom: -11px;
    left: 50%;
    width: 68px;
    height: 1px;
    background: #ff5050;
    transform: translateX(-50%);
    opacity: 0.85;
}

h1.layer-title {
    font-size: 29px;
    letter-spacing: 7px;
}

.content-box {
    background: #111111;
    border: 1px solid #ff505030;
    padding: 42px 38px;
    text-align: center;
    transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.content-box:hover {
    border-color: #ff505070;
    box-shadow: 0 0 40px rgba(255, 80, 80, 0.13);
    transform: translateY(-3px);
}

.layer-image {
    max-width: 100%;
    height: auto;
    border: 1px solid #2a2a2a;
    margin-bottom: 32px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.75);
    transition: transform 0.4s ease;
}

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

.description {
    font-size: 15.6px;
    color: #d0d0d0;
    max-width: 740px;
    margin: 0 auto;
}

.description ul,
.description ol {
    margin: 22px 0 22px 20px;
    text-align: left;
    color: #c8c8c8;
}

.description li {
    margin-bottom: 11px;
    padding-left: 4px;
}

footer {
    text-align: center;
    padding: 65px 20px 45px;
    border-top: 1px solid #1f1f1f;
    font-size: 13.8px;
    color: #606060;
}

.warning {
    margin-top: 16px;
    color: #ff505055;
    font-style: italic;
    font-size: 13px;
}

@media (max-width: 1100px) {
    .void-container {
        padding: 25px 15px 70px;
    }
    
    .mirror-bar {
        justify-content: center;
        gap: 22px;
    }
    
    .logo-text {
        font-size: 46px;
        letter-spacing: 8px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 20px 20px;
    }
    
    .layer {
        margin-bottom: 85px;
    }

    .content-box {
        padding: 32px 25px;
    }
}

.layer h1,
.layer h2 {
    font-weight: 600;
    line-height: 1.3;
}

.description p {
    margin-bottom: 18px;
}

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

.description ul,
.description ol {
    margin: 22px 0;
    padding-left: 22px;
    color: #c8c8c8;
}

.description li {
    margin-bottom: 12px;
    line-height: 1.65;
}

.description strong {
    color: #ff7070;
}

.content-box {
    position: relative;
    overflow: hidden;
}

.content-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, #ff505040, transparent);
}

.mirror-bar {
    padding: 8px 0;
}

.mirror-link {
    transition: all 0.2s ease;
}

.mirror-link:hover {
    color: #ff5050;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.layer-image {
    border-radius: 2px;
    transition: box-shadow 0.3s ease;
}

.content-box:hover .layer-image {
    box-shadow: 0 18px 50px rgba(255, 80, 80, 0.18);
}

footer p {
    margin-bottom: 8px;
}

.warning {
    font-size: 13.2px;
    opacity: 0.75;
}

/* Schema.org friendly microdata enhancements */
[ itemscope ] {
    display: block;
}

/* Ensure fast rendering */
body,
header,
main,
footer,
.layer,
.content-box {
    will-change: auto;
}

/* Print and accessibility optimizations */
@media print {
    .ad-banner,
    .mirror-bar {
        display: none;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .logo-text {
        font-size: 38px;
        letter-spacing: 6px;
    }
    
    .mirror-bar {
        gap: 16px;
        font-size: 13px;
    }
    
    .content-box {
        padding: 28px 20px;
    }
}