/* ─── Custom Properties & Fonts ───────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@300;400;500;600;700&display=swap');

@font-face {
    font-family: 'Dreamer TM';
    src: url('fonts/DreamerTM.otf') format('opentype'),
         url('fonts/DreamerTM.ttf') format('truetype'),
         url('fonts/Dreamer%20TM.otf') format('opentype'),
         url('fonts/Dreamer%20TM.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --bg-color:       #000000;
    --text-color:     #7d7d7d;
    --muted:          #555555;
    --border:         rgba(137,137,137,0.15);
    --highlight:      #FFEA00;
    --accent-green:   #22FF66;
    --font-heading:   'Dreamer TM', 'Syne', sans-serif;
    --font-subheading:'JetBrains Mono', monospace;
    --font-body:      'JetBrains Mono', monospace;
    --nav-h:          80px;
    --cursor-size:    14px;
    --pad:            4vw;
}

.accent-green {
    color: var(--accent-green) !important;
    font-weight: 500;
}

h1, h2, h3, h4, h5, h6,
.subpage-title,
.nav-links a,
.nav-brand,
.title,
.heading,
.grid-title {
    font-family: var(--font-heading) !important;
    text-transform: lowercase !important;
    color: #7d7d7d;
}

.project-name,
.project-detail,
.subpage-header p,
.subheading,
.loader-text {
    font-family: var(--font-subheading) !important;
    font-weight: 400;
    letter-spacing: 0.03em;
    text-transform: lowercase !important;
    color: #888888;
}

.subpage-header {
    padding: 1.5rem var(--pad) 1rem 4vw;
    margin-top: 0;
    margin-bottom: 1rem;
}

.subpage-title {
    font-size: 2.5rem;
    line-height: 1.2;
    color: #888888;
    letter-spacing: 0.04em;
}

/* ─── MINIMAL HIGH-VISIBILITY BACK BUTTON ────────────────── */
.back-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #888888 !important;
    text-decoration: none;
    padding: 0;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    border-radius: 0;
    box-shadow: none !important;
    margin-bottom: 1.5rem;
    margin-left: 0;
    transition: color 0.15s ease, transform 0.15s ease;
    user-select: none;
}

.back-btn svg {
    width: 22px;
    height: 13px;
    fill: currentColor;
    display: block;
}

.back-btn:hover {
    color: #ffffff !important;
    transform: translateX(-4px);
}

.back-btn:active,
.back-btn.flash-green {
    color: #22FF66 !important;
    text-shadow: none !important;
    box-shadow: none !important;
    filter: none !important;
    transform: translateX(-6px);
}

/* ─── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
::-webkit-scrollbar { display: none; }
body { -ms-overflow-style: none; scrollbar-width: none; }
::selection { background: var(--highlight); color: #000; }
a, button, img, video { cursor: none; }

/* ─── Base ───────────────────────────────────────────────── */
body {
    background: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    letter-spacing: 0.02em;
    cursor: none;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
/* ─── Ultra Precision Square Custom Cursor ───────────────── */
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 14px;
    height: 14px;
    background-color: #ffffff;
    border-radius: 0px;
    pointer-events: none;
    z-index: 999999;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
    transition: width 0.2s cubic-bezier(0.25, 1, 0.5, 1), height 0.2s cubic-bezier(0.25, 1, 0.5, 1), border 0.2s ease, background-color 0.2s ease;
    opacity: 1;
}

.custom-cursor.hover {
    width: 52px;
    height: 52px;
    background-color: transparent;
    border: 1.5px solid #22FF66;
    border-radius: 0px;
    box-shadow: none !important;
    filter: none !important;
}

.custom-cursor.click-green {
    background-color: #22FF66 !important;
    border-color: #22FF66 !important;
    box-shadow: none !important;
    filter: none !important;
    text-shadow: none !important;
    mix-blend-mode: normal !important;
}

.project-entry:hover .project-media,
.media-container:hover .project-media {
    transform: scale(1.08) !important;
    box-shadow: 0 14px 45px rgba(0,0,0,0.85);
}

/* ─── 3D POINT CLOUD LOADER ────────────────────────────── */
.loader-overlay {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background-color: #000000;
    z-index: 100000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 2.0s cubic-bezier(0.16, 1, 0.3, 1), visibility 2.0s cubic-bezier(0.16, 1, 0.3, 1);
}

.loader-overlay.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.project-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    width: 100%;
}

.project-name {
    font-family: var(--font-heading) !important;
    font-size: 1.15rem;
    text-transform: lowercase !important;
    letter-spacing: 0.04em;
    color: #888888;
}

.project-detail {
    font-family: var(--font-heading) !important;
    font-size: 0.9rem;
    text-transform: lowercase !important;
    letter-spacing: 0.04em;
    color: #777777;
    white-space: nowrap;
}

#loading-cloud-container {
    width: 100vw;
    height: 100vh;
    max-width: 100vw;
    max-height: 100vh;
    overflow: visible;
}

.loader-text {
    margin-top: 1.5rem;
    font-family: var(--font-heading) !important;
    font-size: 1.1rem;
    text-transform: lowercase !important;
    letter-spacing: 0.15em;
    color: #888888;
    animation: pulse 1.5s infinite alternate;
}

@keyframes pulse {
    0% { opacity: 0.4; }
    100% { opacity: 1; }
}

/* ─── TOP NAV & LOGO ────────────────────────────────────── */
.top-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 95px;
    z-index: 1000;
    background: var(--bg-color);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5vw;
}

.nav-brand-logo {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 5px 0;
}

.brand-logo-img {
    height: 56px;
    width: auto;
    object-fit: contain;
    filter: invert(1);
    opacity: 0.95;
    transition: opacity .2s, transform .2s ease;
}
.brand-logo-img:hover { opacity: 1; transform: scale(1.03); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 3.5rem;
}

.nav-links a {
    font-family: var(--font-heading) !important;
    font-size: 1.15rem;
    text-decoration: none;
    color: #7d7d7d;
    text-transform: lowercase !important;
    letter-spacing: 0.08em;
    transition: opacity .2s, color .2s;
}
.nav-links a:hover { opacity: 1; color: #22FF66; text-shadow: none !important; }
.nav-links a.active {
    color: #22FF66 !important;
    opacity: 1;
    text-shadow: none !important;
    box-shadow: none !important;
    filter: none !important;
}

/* ─── IG DROPDOWN MENU ─────────────────────────────────────── */
.nav-ig-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.nav-ig-dropdown .ig-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: rgba(12, 12, 12, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    padding: 0.75rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    backdrop-filter: blur(12px);
    z-index: 10000;
    white-space: nowrap;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

.nav-ig-dropdown:hover .ig-dropdown-menu,
.nav-ig-dropdown.open .ig-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.ig-dropdown-menu a {
    font-size: 0.92rem !important;
    color: #a0a0a0 !important;
    transition: color 0.2s ease, opacity 0.2s ease !important;
    text-transform: lowercase !important;
    letter-spacing: 0.05em !important;
}

.ig-dropdown-menu a:hover {
    color: #22FF66 !important;
    opacity: 1 !important;
}

/* ─── Page wrapper ───────────────────────────────────────── */
.page-content {
    padding-top: calc(var(--nav-h) + 0.5rem);
    min-height: 100vh;
}

/* ─── SCATTERED GALLERY LAYOUT ────── */
.scattered-gallery {
    column-count: 5;
    column-gap: 0.9rem;
    padding: 1rem var(--pad) 5rem 6vw;
    max-width: 1280px;
    margin-left: auto;
    margin-right: 2vw;
    width: 100%;
    position: relative;
}

/* ─── HOME LAYOUT ────────────────────────────────────────── */
.home-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding: 2rem 5vw 4rem;
    gap: 4vw;
}

.home-left-bio {
    max-width: 260px;
    min-width: 200px;
    padding-top: 0.5rem;
    position: sticky;
    top: calc(var(--nav-h) + 2rem);
}

.home-bio-tag {
    display: block;
    font-family: var(--font-heading) !important;
    font-size: 0.92rem;
    text-transform: lowercase !important;
    letter-spacing: 0.08em;
    color: #22FF66;
    margin-bottom: 1rem;
}

.home-bio-text {
    font-family: var(--font-body);
    font-size: 0.92rem;
    line-height: 1.6;
    color: #888888;
}

.scattered-gallery .project-entry {
    width: 100%;
    display: inline-block;
    margin-bottom: 0.9rem;
    break-inside: avoid;
    transition: transform 0.4s ease, opacity 0.4s ease;
    text-decoration: none;
    color: inherit;
    position: relative;
}

/* ─── CATEGORY & PROJECT LISTS ────── */
.project-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 2.2rem 1.8vw;
    padding: 1rem var(--pad) 5rem;
    max-width: 82vw;
    margin-left: auto;
    position: relative;
}

.project-list .project-entry {
    width: 22%;
    max-width: 230px;
    min-width: 160px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: transform 0.45s ease, opacity 0.45s ease;
    text-decoration: none;
    color: inherit;
    position: relative;
}

/* Media containers */
.media-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.project-media {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 8px 30px rgba(0,0,0,0.45);
    transition: transform .5s cubic-bezier(0.2, 0.8, 0.2, 1), filter .5s ease;
    transform-origin: center center;
    border-radius: 2px;
}

.project-entry:hover .project-media {
    transform: scale(1.03);
    box-shadow: 0 12px 40px rgba(0,0,0,0.7);
}

/* ─── HUD TECH CONNECTED PREVIEW POPUPS (FAINT LINES & SATELLITE SQUARES) ─── */
.hud-preview-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    z-index: 10000;
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s ease;
}

.project-entry:hover {
    z-index: 900 !important;
}

.project-entry:hover .hud-preview-container {
    opacity: 1;
    visibility: visible;
}

.hud-connecting-lines {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    overflow: visible;
    pointer-events: none;
}

/* Individual Floaty Satellite Photo Cards */
.hud-float-card {
    position: absolute;
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.75);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.95);
    overflow: hidden;
    pointer-events: auto;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.45s ease;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hud-float-card img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain !important;
    display: block;
    transition: transform 0.4s ease;
}

.hud-float-card:hover img {
    transform: scale(1.08);
}

/* Floating Satellite 1: Top Right Floating Card */
.hud-float-1 {
    top: -55px;
    right: -45px;
    max-width: 120px;
    max-height: 120px;
    transform: translate(10px, -10px) scale(0.9);
}

/* Floating Satellite 2: Side Main Floating Card */
.hud-float-2 {
    top: 45%;
    right: calc(100% + 22px);
    max-width: 160px;
    max-height: 130px;
    transform: translateY(-50%) translateX(-15px) scale(0.92);
}

/* Floating Satellite 3: Bottom Left Floating Card */
.hud-float-3 {
    bottom: -50px;
    left: -40px;
    max-width: 125px;
    max-height: 100px;
    transform: translate(-10px, 10px) scale(0.9);
}

/* Floating Satellite 4: Top-Left Micro Detail Card */
.hud-float-4 {
    top: -50px;
    left: -50px;
    max-width: 90px;
    max-height: 90px;
    transform: translate(-10px, -10px) scale(0.9);
}

/* Alternate orientation for left-aligned project items */
.project-entry:nth-child(5n+1) .hud-float-2,
.project-entry:nth-child(5n+4) .hud-float-2 {
    right: auto;
    left: calc(100% + 22px);
    transform: translateY(-50%) translateX(15px) scale(0.92);
}

.project-entry:hover .hud-float-1,
.project-entry:hover .hud-float-3,
.project-entry:hover .hud-float-4 {
    transform: translate(0, 0) scale(1);
}

.project-entry:hover .hud-float-2 {
    transform: translateY(-50%) translateX(0) scale(1) !important;
}

.project-entry:hover .hud-float-3 {
    transform: translate(0, 0) scale(1);
}
    height: 100%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

/* Placeholder — Solid Pure White Squares/Cubes (Empty / Blank Inside) */
.placeholder-media {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #ffffff;
    border: none;
    display: block;
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.08);
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
    border-radius: 2px;
}
.project-entry:hover .placeholder-media {
    transform: scale(1.03);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.2);
}
/* Brand Logo Tiles for Commissions (Netflix, Sake Nami, Casa Bon, Sakagura, Bud Light) */
.brand-logo-tile {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    padding: 2rem;
}

.brand-logo-tile .brand-logo-text {
    display: block !important;
    font-family: var(--font-heading) !important;
    font-size: 1.4rem;
    font-weight: 800;
    color: #000000;
    letter-spacing: 0.12em;
    text-transform: uppercase !important;
    text-align: center;
    user-select: none;
}

/* ─── BRAND LOGOS SECTION AT BOTTOM OF COMMISSIONS ───────── */
.brand-footer-section {
    clear: both;
    width: 100%;
    padding: 4rem var(--pad) 5rem 5vw;
    border-top: 1px solid var(--border);
    margin-top: 4rem;
    position: relative;
    z-index: 10;
}

.brand-footer-title {
    font-family: var(--font-subheading) !important;
    font-size: 0.95rem;
    font-weight: 400;
    color: #666666;
    letter-spacing: 0.05em;
    text-transform: lowercase !important;
    margin-bottom: 2rem;
    transition: color 0.25s ease;
}

.brand-footer-title:hover {
    color: #ffffff;
}

.brand-logos-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem 3.8rem;
    align-items: center;
    justify-content: flex-start;
    padding-top: 1.5rem;
}

.brand-logo-svg,
.brand-logo-img-item {
    height: 24px;
    width: auto;
    max-height: 28px;
    max-width: 110px;
    object-fit: contain;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    opacity: 0.75;
    transition: opacity 0.25s ease, transform 0.25s ease;
    cursor: pointer;
}

.brand-logo-svg:hover,
.brand-logo-img-item:hover {
    opacity: 1;
    transform: translateY(-1px);
}

.brand-logo-img-item.brand-logo-large {
    height: 36px !important;
    max-height: 42px !important;
    max-width: 130px !important;
}

.brand-logo-img-item.brand-logo-uber {
    height: 44px !important;
    max-height: 52px !important;
    max-width: 150px !important;
    opacity: 0.88;
}

/* ─── CONTACT MINIMALIST WHITE CARD OVERLAY ───────────────── */
.scattered-gallery img,
.scattered-gallery video,
.media-container img,
.media-container video,
.project-media {
    cursor: pointer;
    object-fit: cover;
    pointer-events: auto !important;
}

video::-webkit-media-controls,
video::-webkit-media-controls-enclosure,
video::-webkit-media-controls-panel,
video::-webkit-media-controls-play-button,
video::-webkit-media-controls-start-playback-button,
video::-webkit-media-controls-overlay-play-button,
video::-webkit-media-controls-timeline,
video::-webkit-media-controls-current-time-display,
video::-webkit-media-controls-time-remaining-display,
video::-webkit-media-controls-time-control-group,
video::-webkit-media-controls-volume-control-hover-background,
video::-webkit-media-controls-volume-slider-container,
video::-webkit-media-controls-volume-slider,
video::-webkit-media-controls-mute-button,
video::-webkit-media-controls-fullscreen-button,
video::-webkit-media-controls-toggle-closed-captions-button,
video::-webkit-media-controls-cast-button {
    display: none !important;
    -webkit-appearance: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

/* ─── MINIMALIST TOP-RIGHT PLAIN WHITE PLAY TRIANGLE ─── */
.video-play-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 16px;
    height: 16px;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    backdrop-filter: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    pointer-events: auto;
    cursor: pointer;
    opacity: 0.8;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.8));
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.video-play-badge svg {
    width: 14px;
    height: 14px;
    fill: #ffffff;
    margin-left: 0;
}

.video-play-badge:hover {
    opacity: 1;
    transform: scale(1.2);
}

.contact-modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(3px);
    z-index: 250000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.contact-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.contact-card {
    background: #ffffff;
    color: #000000;
    padding: 2.2rem 2.8rem;
    width: auto;
    min-width: 320px;
    position: absolute;
    top: calc(var(--nav-h) - 10px);
    right: max(4vw, 160px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.65);
    transform: translateY(-8px) scale(0.97);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 2px;
}

.contact-modal-overlay.active .contact-card {
    transform: translateY(0) scale(1);
}

.contact-close {
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    background: none;
    border: none;
    color: #000000;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.contact-close:hover { opacity: 1; }

.contact-card-title {
    font-family: var(--font-heading) !important;
    font-size: 1.2rem;
    font-weight: 700;
    color: #000000 !important;
    text-transform: lowercase !important;
    letter-spacing: 0.06em;
    margin-bottom: 1.2rem;
}

.contact-card-content {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.contact-link {
    font-family: var(--font-subheading) !important;
    font-size: 0.88rem;
    font-weight: 400;
    color: #111111;
    text-decoration: none;
    text-transform: lowercase !important;
    letter-spacing: 0.02em;
    pointer-events: auto !important;
    cursor: pointer !important;
    display: inline-block;
    transition: color 0.2s ease, transform 0.2s ease;
}

.contact-link:hover {
    color: #777777;
    transform: translateX(4px);
}

/* ─── Scroll reveal (Findings & Curiosities Fade-in) ─────── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.active { opacity: 1; transform: translateY(0); }

/* ─── Mobile ─────────────────────────────────────────────── */
@media (max-width: 768px) {
    .nav-links { gap: 1rem; }
    .nav-links a { font-size: 0.92rem; }
    .scattered-gallery { padding: 1.5rem 1.5rem 4rem; gap: 2.5rem; }
    .scattered-gallery .project-entry {
        width: 100%;
        max-width: 100%;
        align-self: center !important;
        margin: 0 !important;
    }
    .custom-cursor { display: none; }
    body { cursor: auto; }
    a, button, img, video { cursor: pointer; }
}

/* ─── LIGHTBOX MODAL ───────────────────────────────────────── */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.93);
    z-index: 200000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    backdrop-filter: blur(12px);
    cursor: pointer;
}

.lightbox-modal.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-img {
    max-width: 92vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 2px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.9);
    transform: scale(0.94);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: default;
}

.lightbox-modal.active .lightbox-img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 35px;
    color: #ffffff;
    font-size: 2.5rem;
    font-family: var(--font-heading);
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
    user-select: none;
    line-height: 1;
}

.lightbox-close:hover {
    opacity: 1;
}

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #ffffff;
    cursor: pointer;
    opacity: 0.45;
    transition: opacity 0.2s ease, transform 0.2s ease;
    user-select: none;
    z-index: 200005;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
}

.lightbox-arrow:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.15);
}

.lightbox-prev {
    left: 25px;
}

.lightbox-next {
    right: 25px;
}

@media (max-width: 768px) {
    .lightbox-prev {
        left: 8px;
    }
    .lightbox-next {
        right: 8px;
    }
    .lightbox-arrow {
        padding: 10px;
    }
}
