body#oc-info-page {
    margin: 0;
    min-height: 100vh;
    font-family: 'Press Start 2P', monospace;
    background-image: url("art1.gif");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #f02c00;
    overflow-y: auto;
    position: relative;
}

body#oc-info-page::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    z-index: 0;
}

.overlay-stars {
    position: fixed;
    inset: 0;
    background-image: radial-gradient(#f02c00 1px, transparent 1px),
                      radial-gradient(#f07a50 1px, transparent 1px);
    background-size: 40px 40px, 70px 70px;
    animation: moveStars 60s linear infinite;
    opacity: 0.25;
    z-index: 1;
}

@keyframes moveStars {
    from { background-position: 0 0, 0 0; }
    to { background-position: 400px 800px, -500px 900px; }
}

.corner-sigils {
    position: fixed;
    font-size: 24px;
    color: #f02c00;
    text-shadow: 0 0 5px #ff7a50;
    z-index: 2;
}

.corner-sigils.top-left { top: 10px; left: 10px; }
.corner-sigils.top-right { top: 10px; right: 10px; }
.corner-sigils.bottom-left { bottom: 10px; left: 10px; }
.corner-sigils.bottom-right { bottom: 10px; right: 10px; }

body#oc-info-page::after {
    content: "";
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    width: 60px;
    background: linear-gradient(to bottom, #f02c00, #f07a50, #f02c00);
    box-shadow: 0 0 15px #f02c00;
    z-index: 2;
}

.oc-info-container::before {
    content: "";
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    width: 60px;
    background: linear-gradient(to bottom, #f07a50, #f02c00, #f07a50);
    box-shadow: 0 0 15px #f07a50;
    z-index: 2;
}

.oc-info-container {
    position: relative;
    z-index: 3;
    max-width: 900px;
    margin: 50px auto;
    padding: 40px 30px;
    background: rgba(0,0,0,0.85);
    border: 2px solid #f02c00;
    border-radius: 16px;
    box-shadow: 0 0 40px #f07a50, 0 0 80px #f02c00;
    text-align: center;
}

.oc-name {
    font-family: 'Creepster', cursive;
    font-size: 48px;
    margin-bottom: 25px;
    color: #f02c00;
    text-shadow: 0 0 3px black, 0 0 20px #f02c00, 0 0 30px #f07a50;
}

.oc-image-container {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    cursor: pointer;
}

.oc-main-image {
    width: 320px;
    max-width: 90%;
    height: auto;
    border: 3px solid #f02c00;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
    filter: brightness(1);
}

.oc-main-image:hover {
    transform: scale(1.02);
    box-shadow: 0 0 20px #f02c00, 0 0 40px #f07a50;
}

.oc-main-image.zoomed {
    transform: translate(-50%, -50%) scale(2);
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 100;
    filter: brightness(1.3);
    box-shadow: 0 0 80px #f02c00, 0 0 150px #f07a50, 0 0 15px black inset;
    cursor: zoom-out;
}

.oc-bio {
    text-align: center;
    color: #f02c00;
    font-size: 13px;
    line-height: 1.9;
    text-shadow: 0 0 2px black, 0 0 4px #f07a50;
}

body.zoomed-bg .oc-bio {
    filter: brightness(1.3);
    color: #ff3f1a;
    text-shadow: 0 0 3px black, 0 0 6px #f07a50;
}

.oc-bio h3 {
    margin-top: 20px;
    margin-bottom: 10px;
    color: #f07a50;
    text-shadow: 0 0 2px black, 0 0 6px #f02c00;
}

.oc-bio ul {
    list-style: disc;
    margin-left: 20px;
    text-align: left;
}

.button.back-button {
    display: inline-block;
    margin-top: 40px;
    padding: 12px 35px;
    font-size: 12px;
    background: linear-gradient(45deg, #330000, #660000);
    border: 2px solid #f02c00;
    border-radius: 6px;
    color: #f02c00;
    text-decoration: none;
}

.button.back-button:hover {
    box-shadow: 0 0 20px #f02c00, 0 0 40px #f07a50;
}

@media (max-width: 1024px) {
    .oc-name { font-size: 40px; }
    .oc-main-image { width: 250px; }
}