body#ocs-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: white;
    overflow-y: auto;
    position: relative;
}

/* Dark overlay */
body#ocs-page::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(5, 0, 15, 0.82);
    z-index: 0;
}

/* Animated star layer */
.overlay-stars {
    position: fixed;
    inset: 0;
    background-image:
        radial-gradient(#ff69b4 1px, transparent 1px),
        radial-gradient(#b084ff 1px, transparent 1px);
    background-size: 40px 40px, 70px 70px;
    animation: moveStars 60s linear infinite;
    opacity: 0.3;
    z-index: 1;
}

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

/* SIDE BORDERS */
body#ocs-page::after {
    content: "";
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    width: 70px;
    background: linear-gradient(to bottom, #ff69b4, #b084ff, #ff69b4);
    box-shadow: 0 0 20px #ff69b4;
    z-index: 2;
}

.oc-container::before {
    content: "";
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    width: 70px;
    background: linear-gradient(to bottom, #b084ff, #ff69b4, #b084ff);
    box-shadow: 0 0 20px #b084ff;
    z-index: 2;
}

/* Main container */
.oc-container {
    position: relative;
    z-index: 3;
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 40px;
    text-align: center;
    background: rgba(25, 0, 45, 0.6);
    border: 3px solid #ff69b4;
    border-radius: 18px;
    box-shadow: 0 0 40px #b084ff, 0 0 80px #ff69b4;
}

/* Corner decorations */
.oc-container::after {
    content: "✦ ☾ ✧ ☠ ✧ ☾ ✦";
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 18px;
    color: #ff69b4;
    letter-spacing: 10px;
}

/* Title */
.page-title {
    font-size: 60px;
    margin-bottom: 60px;
    color: #fff38c;
    text-shadow: 0 0 20px #ff69b4, 0 0 30px #b084ff;
}

/* Gallery grid */
.oc-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

/* Each OC */
.oc-entry {
    position: relative;
    width: 120px;
    padding: 10px;
    background: rgba(40, 0, 70, 0.6);
    border: 2px solid #b084ff;
    border-radius: 8px;
    box-shadow: 0 0 10px #b084ff;
    transition: 0.3s;
}

.oc-entry:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 20px #ff69b4, 0 0 40px #b084ff;
}

.oc-pfp {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border: 2px solid #ff69b4;
    border-radius: 6px;
}

/* Hidden button */
.oc-info {
    position: absolute;
    bottom: 45px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    padding: 6px 10px;
    font-size: 9px;
    background: linear-gradient(45deg, #ff69b4, #b084ff);
    border: 2px solid #fff38c;
    border-radius: 4px;
    color: black;
    text-decoration: none;
}

.oc-entry:hover .oc-info {
    display: inline-block;
}

.oc-entry p {
    margin-top: 10px;
    font-size: 9px;
    color: #ffe066;
}

/* Back button */
.button.back-button {
    display: inline-block;
    margin-top: 60px;
    padding: 12px 30px;
    font-size: 11px;
    background: linear-gradient(45deg, #444, #888);
    border: 2px solid #fff38c;
    border-radius: 6px;
    color: white;
    text-decoration: none;
}

.button.back-button:hover {
    box-shadow: 0 0 15px #ff69b4, 0 0 25px #b084ff;
}

/* Responsive */
@media (max-width: 1024px) {

    body#ocs-page::after,
    .oc-container::before {
        width: 40px;
    }

    .page-title {
        font-size: 40px;
    }

    .oc-entry {
        width: 95px;
    }

    .oc-pfp {
        height: 95px;
    }
}