body {
    background-color: #0b0908;
    color: white;
}

.darkroom::before {
    content: "";
    position: fixed;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: rgba(180, 0, 0, 0.15);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

a::before,
a::after {
    content: "";
    position: absolute;
    bottom: -3px;
    width: 0;
    height: 1px;
    background: #e32929;
    transition: width 0.4s ease;
}

a::before {
    left: 50%;
}

a::after {
    right: 50%;
}

a:hover::before,
a:hover::after {
    width: 50%;
}

a:hover {
    color: #e32929;
}

.footer-version-color {
    color: #e32929;
}

.camera {
    position: relative;
    width: min(900px, 80vw);
    margin: 0 auto;
}

.camera-image {
    display: block;
    width: 100%;
    height: auto;
}

.camera-screen {
    position: absolute;
    left: 7.5%;
    top: 20.5%;
    width: 54.3%;
    height: 69%;
    border-radius: 5px;
    overflow: hidden;
    background: black;
    z-index: 2;
}

.photos {
    width: 100%;
    height: 100%;
    padding: 6px;
    box-sizing: border-box;
    overflow-y: auto;
    background: #080808;
}

.photos a {
    cursor: zoom-in;
}

.photos a {
    display: block;
    width: clamp(70px, 10vw, 120px);
    cursor: zoom-in;
}

.photos a img {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    cursor: zoom-in;
}

.photos a:hover::before,
.photos a:hover::after {
    display: none;
}

.photo-title {
    display: block;
    width: 100%;
    margin-top: 4px;
    text-align: center;
    font-size: 0.7rem;
}

.photo-year {
    margin-bottom: 24px;
    padding-bottom: 14px;
    width: 100%;
}

.photo-year h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 20px;
    font-family: "Courier Prime", monospace;
    font-size: 16px;
    font-weight: normal;
    color: #ddd;
}

.photo-year h2::before {
    content: "";
    width: 8px;
    height: 8px;
    background: #e32929;
    border-radius: 50%;
}

.photo-year h2::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #444;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    gap: 20px;
}

.glightbox-container .gslide-image img {
    max-width: 80vw;
    max-height: 80vh;
}

.gprev,
.gnext {
    display: none !important;
}

.photos::-webkit-scrollbar {
    width: 8px;
}

.photos::-webkit-scrollbar-track {
    background: #0b0b0b;
    border-left: 1px solid #292929;
}

.photos::-webkit-scrollbar-thumb {
    background: #252525;
    border: 1px solid #555;
}

.photos::-webkit-scrollbar-thumb:hover {
    background: #7a1515;
}