body.copyright-page {
    background: #f5f5f5;
    min-height: 100vh;
    display: block;
    overflow-x: hidden;
    overflow-y: auto;
    margin: 0;
    padding: 0;
}

.crt-header-bar {
    background: #0a0f0a;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 100;
}

.header-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.header-logo {
    width: 240px;
    height: auto;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.header-nav {
    display: flex;
    gap: 32px;
    font-family: 'VT323', monospace;
    font-size: 24px;
    letter-spacing: 2px;
}

.header-nav .nav-link {
    color: #00ff66;
    text-decoration: none;
    text-shadow: 0 0 5px #00ff66;
    transition: all 0.3s;
    position: relative;
}

.header-nav .nav-link:hover {
    text-shadow: 0 0 15px #00ff66;
}

.header-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: #00ff66;
    box-shadow: 0 0 10px #00ff66;
}

.header-scanlines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 255, 100, 0.03) 2px,
        rgba(0, 255, 100, 0.03) 4px
    );
    pointer-events: none;
    animation: scanlines 8s linear infinite;
}

.header-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        ellipse at center,
        rgba(0, 255, 100, 0.03) 0%,
        rgba(0, 0, 0, 0.2) 100%
    );
    pointer-events: none;
}

.copyright-container {
    max-width: 980px;
    margin: 0 auto;
    padding: 160px 24px 60px;
}

.copyright-intro {
    background: #0a0f0a;
    border: 2px solid #00ff66;
    border-radius: 10px;
    padding: 28px;
    margin-bottom: 24px;
    box-shadow: 0 0 20px rgba(0, 255, 102, 0.18);
}

.copyright-intro h1 {
    color: #00ff66;
    font-family: 'VT323', monospace;
    font-size: 48px;
    letter-spacing: 3px;
    margin-bottom: 10px;
    text-shadow: 0 0 8px #00ff66;
}

.canonical-url,
.effective-date {
    color: #d8ffe8;
    font-family: 'VT323', monospace;
    font-size: 28px;
    letter-spacing: 1px;
}

.canonical-url a {
    color: #7dffe8;
}

.copyright-section {
    background: #ffffff;
    border: 1px solid #d4d4d4;
    border-left: 5px solid #00ff66;
    border-radius: 8px;
    padding: 20px 24px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.copyright-section h2 {
    color: #0a0f0a;
    font-family: 'VT323', monospace;
    font-size: 36px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.copyright-section p,
.copyright-section li {
    color: #1b1b1b;
    font-family: 'VT323', monospace;
    font-size: 30px;
    letter-spacing: 0.5px;
    line-height: 1.35;
}

.copyright-section ul {
    margin-left: 28px;
}

.copyright-section li {
    margin-bottom: 8px;
}

.copyright-section a {
    color: #006e4d;
    text-decoration: underline;
}

.contact-line {
    margin-top: 8px;
}

.copyright-footer {
    text-align: center;
    padding: 14px;
    font-family: 'VT323', monospace;
    font-size: 26px;
    color: #3a3a3a;
}

@media (max-width: 900px) {
    .header-content {
        flex-direction: column;
        gap: 16px;
        padding: 18px 20px;
    }

    .header-nav {
        gap: 18px;
        font-size: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .copyright-container {
        padding-top: 190px;
    }

    .copyright-intro h1 {
        font-size: 36px;
    }

    .canonical-url,
    .effective-date {
        font-size: 24px;
    }

    .copyright-section h2 {
        font-size: 30px;
    }

    .copyright-section p,
    .copyright-section li {
        font-size: 26px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .header-scanlines {
        animation: none;
    }
}

@media print {
    body.copyright-page {
        background: #fff;
    }

    .crt-header-bar {
        position: static;
        box-shadow: none;
    }

    .header-scanlines {
        display: none;
    }

    .header-nav {
        display: none;
    }

    .copyright-container {
        max-width: 100%;
        padding: 20px 0;
    }

    .copyright-intro {
        background: #fff;
        color: #000;
        border: 1px solid #000;
        box-shadow: none;
    }

    .copyright-intro h1,
    .canonical-url,
    .effective-date,
    .copyright-section h2,
    .copyright-section p,
    .copyright-section li,
    .copyright-footer {
        color: #000;
        text-shadow: none;
    }

    .copyright-section {
        box-shadow: none;
        break-inside: avoid;
    }

    .copyright-section a {
        color: #000;
    }
}