:root {
    --primary-color: #004fc6;
    --primary-hover: #003385;
    --pink-color: hsl(335, 89%, 59%);
    --nav-height: 80px;
    --transition-slow: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    --transition-fast: 0.3s ease;
}

@media (prefers-color-scheme: light) {
    :root {
        --bg-dark: #ffffff;
        --bg-card: #f5f5f7;
        --bg-section-alt: #f1f1f3;
        --text-main: #1d1d1f;
        --text-secondary: #86868b;
        --card-border: rgba(0, 0, 0, 0.05);
        --nav-bg: rgba(255, 255, 255, 0.8);
    }
}

@media (prefers-color-scheme: dark) {
    :root {
        --bg-dark: #0a0a0b;
        --bg-card: #161618;
        --bg-section-alt: #111113;
        --text-main: #ffffff;
        --text-secondary: #a0a0a0;
        --card-border: rgba(255, 255, 255, 0.03);
        --nav-bg: rgba(10, 10, 11, 0.8);
    }
}

@font-face {
    font-family: 'Google Sans Code';
    src: url('../fonts/GoogleSansCode-Regular.woff2') format('woff2'),
        url('../fonts/GoogleSansCode-Regular.woff') format('woff'),
        url('../fonts/GoogleSansCode-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* {
    box-sizing: border-box;
    font-family: 'Google Sans Code', sans-serif;
}

html {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    font-family: 'Google Sans Code', sans-serif;
}

#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    z-index: 1000;
    transition: background-color 0.4s ease, backdrop-filter 0.4s ease;
    background-color: transparent;
}

#navbar.scrolled {
    background-color: var(--nav-bg) !important;
    backdrop-filter: blur(10px) !important;
}

.nav-container {
    width: 100%;
    max-width: 95%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
}

.nav-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--text-main);
    border-radius: 10px;
    transition: all 0.3s linear;
}

.nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -8px);
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo-img {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.logo-subtext {
    font-size: 12px;
    color: var(--pink-color);
    font-weight: 700;
    letter-spacing: 4px;
    margin-top: -2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-size: 14px;
    font-weight: 500;
    transition: color var(--transition-fast);
    opacity: 0.8;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--pink-color);
    opacity: 1;
}

.nav-links li {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: var(--bg-card);
    min-width: 220px;
    border-radius: 8px;
    padding: 20px 0;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--card-border);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    list-style: none;
    z-index: 1002;
    text-align: left;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-header {
    padding: 0 25px 12px;
    font-weight: 700;
    font-size: 16px;
    color: var(--text-main);
    letter-spacing: 1px;
}

.divider {
    height: 1px;
    background-color: var(--card-border);
    margin: 5px 25px 15px;
}

.dropdown-menu li a {
    padding: 8px 25px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: var(--text-main) !important;
    opacity: 0.9;
    display: block;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.dropdown-menu li a:hover {
    color: hsl(335, 89%, 59%) !important;
    padding-left: 30px !important;
    opacity: 1;
}

.dropdown-toggle i {
    font-size: 10px;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

#hero,
#joint-photo-hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

section.reveal-hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1), transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

section:not(#hero):not(#joint-photo-hero) {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1), transform 1s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
    visibility: hidden;
}

section.revealed {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    visibility: visible;
}

.feature-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

section.revealed .feature-card {
    opacity: 1;
    transform: translateY(0);
}

section.revealed .feature-card:nth-child(1) {
    transition-delay: 0.1s;
}

section.revealed .feature-card:nth-child(2) {
    transition-delay: 0.2s;
}

section.revealed .feature-card:nth-child(3) {
    transition-delay: 0.3s;
}

section.revealed .feature-card:nth-child(4) {
    transition-delay: 0.4s;
}

section.revealed .feature-card:nth-child(5) {
    transition-delay: 0.5s;
}

section.revealed .feature-card:nth-child(6) {
    transition-delay: 0.6s;
}

section.revealed .feature-card:nth-child(7) {
    transition-delay: 0.7s;
}

section.revealed .feature-card:nth-child(8) {
    transition-delay: 0.8s;
}

.hero-bg,
.joint-hero-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    z-index: -1;
    transition: opacity 0.5s ease;
}

.hero-bg {
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4)), url('../images/background.png');
    opacity: 1;
}

.joint-hero-bg {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url('../images/joint_photo.png');
    opacity: 0;
}

#hero .hero-bg {
    opacity: 1;
}

#joint-photo-hero {
    background-color: #000;
}

#joint-photo-hero .joint-hero-bg {
    position: absolute;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 1.5s cubic-bezier(0.22, 1, 0.36, 1), transform 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

#joint-photo-hero.revealed .joint-hero-bg {
    opacity: 1;
    transform: scale(1);
}

#joint-photo-hero .hero-content {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease 0.5s, transform 1s ease 0.5s;
}

#joint-photo-hero.revealed .hero-content {
    opacity: 1;
    transform: translateY(0);
}

.hero-content {
    text-align: center;
    z-index: 100;
    padding: 0 20px;
    position: relative;
    pointer-events: auto;
}

.hero-title {
    font-size: 80px;
    font-weight: 700;
    letter-spacing: -2px;
    margin-bottom: 10px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    color: white;
}

.hero-subtitle {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    opacity: 0.9;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    color: white;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.mobile-only {
    display: none !important;
}

@media (max-width: 768px) {
    .mobile-only {
        display: inline-block !important;
    }

    .desktop-only {
        display: none !important;
    }
}

.cta-button {
    display: inline-block;
    padding: 16px 48px;
    background-color: var(--pink-color);
    color: white;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    transition: background-color var(--transition-fast), transform var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background-color: hsl(335, 60%, 35%);
    transform: translateY(-5px);
}

.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.6;
}

.mouse {
    width: 30px;
    height: 30px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mouse::before {
    content: '';
    width: 20px;
    height: 20px;
    border-bottom: 3px solid var(--text-main);
    border-right: 3px solid var(--text-main);
    transform: rotate(45deg);
    animation: arrow-fade 2s infinite ease-in-out;
}

@keyframes arrow-fade {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-5px, -5px);
    }

    50% {
        opacity: 1;
        transform: rotate(45deg) translate(0, 0);
    }

    100% {
        opacity: 0;
        transform: rotate(45deg) translate(5px, 5px);
    }
}

@keyframes scroll-anim {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 15px);
        opacity: 0;
    }
}

#impress {
    background-color: var(--bg-dark);
    position: relative;
    z-index: 20;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0;
}

#impress .container {
    width: 100%;
}

.impress-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.impress-slider-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    background-color: #000;
}

.impress-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.impress-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.impress-slide.active {
    opacity: 1;
    z-index: 10;
}

.impress-slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-caption {
    position: relative;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    z-index: 12;
}

.slide-caption h4 {
    font-size: 20px;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.slider-controls {
    position: absolute;
    bottom: 10px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 20;
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: white;
    transform: scale(1.3);
}

.slider-arrows {
    display: flex;
    gap: 12px;
}

.slider-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(30, 30, 30, 0.6);
    backdrop-filter: blur(4px);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background-color: rgba(60, 60, 60, 0.8);
    transform: scale(1.1);
}

.impress-info {
    padding-left: 20px;
}

.info-content h3 {
    font-size: 28px;
    margin-bottom: 25px;
    color: var(--pink-color);
}

.info-content p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
}

@media (max-width: 992px) {
    .impress-grid {
        grid-template-columns: 1fr;
    }

    .impress-info {
        padding-left: 0;
        margin-top: 30px;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 18px;
    margin-bottom: 25px;
}

.section-line {
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 0 auto;
}

#features,
#worlds,
#works {
    background-color: var(--bg-section-alt);
    position: relative;
    z-index: 20;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0;
}

#features .container,
#worlds .container,
#works .container {
    padding: 0 20px;
    width: 100%;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    background-color: var(--bg-card);
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid var(--card-border);
    transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 53, 198, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.feature-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(3, 0, 170, 0.1);
    border-radius: 12px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
}

#worlds {
    background-color: var(--bg-dark);
    position: relative;
    z-index: 20;
}

.worlds-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.world-card {
    background-color: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform var(--transition-fast);
}

.world-card:hover {
    transform: scale(1.02);
}

.world-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.world-card:hover .world-img {
    transform: scale(1.1);
}

.world-info {
    padding: 25px;
    position: relative;
    z-index: 5;
    background-color: var(--bg-card);
}

.world-info h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-main);
}

.world-info p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    min-height: 60px;
}

.world-tags {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.world-tags li {
    font-size: 13px;
    color: var(--text-main);
    display: flex;
    align-items: center;
    opacity: 0.9;
}

.world-tags li::before {
    content: '•';
    color: var(--primary-color);
    margin-right: 10px;
    font-weight: bold;
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
    padding: 20px 0;
}

@media (max-width: 768px) {
    .works-grid.mobile-scroll {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 40px 0;
        overflow: hidden;
        width: 100vw;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
    }

    .works-row {
        display: flex;
        gap: 15px;
        width: max-content;
        padding-right: 15px;
        pointer-events: auto;
    }

    .works-row .work-item {
        width: 280px;
        flex-shrink: 0;
    }

    .row-left {
        animation: scroll-left 40s linear infinite;
    }

    .row-right {
        animation: scroll-right 40s linear infinite;
    }

    .works-row:hover {
        animation-play-state: paused;
    }
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes scroll-right {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

.work-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 16/9;
}

.work-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.work-item:hover img {
    transform: scale(1.08);
}

.work-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.work-item:hover .work-overlay {
    opacity: 1;
}

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 2000;
    display: flex;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

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

.lightbox-content {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
}

.lightbox-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: #000;
    position: relative;
    overflow: hidden;
}

.lightbox-main img {
    max-width: 95%;
    max-height: 95%;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.6s ease;
    user-select: none;
    position: absolute;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-main img.slide-out-left {
    transform: translateX(-100%);
    opacity: 0;
}

.lightbox-main img.slide-out-right {
    transform: translateX(100%);
    opacity: 0;
}

.lightbox-main img.slide-in-left {
    transform: translateX(-100%);
    opacity: 0;
}

.lightbox-main img.slide-in-right {
    transform: translateX(100%);
    opacity: 0;
}

.lightbox-sidebar {
    width: 350px;
    background-color: #111;
    padding: 60px 30px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    color: #eee;
    overflow-y: auto;
    z-index: 2100;
}

.sidebar-info h3 {
    font-size: 22px;
    margin-bottom: 30px;
    font-weight: 700;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 15px;
}

.info-item {
    margin-bottom: 25px;
}

.info-item .label {
    display: block;
    color: #888;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
}

.info-item p,
.info-item span {
    font-size: 15px;
    color: #ddd;
    line-height: 1.6;
}

.lightbox-prev,
.lightbox-next,
.lightbox-close {
    position: absolute;
    background: rgba(30, 30, 30, 0.5);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.lightbox-prev,
.lightbox-next {
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    font-size: 18px;
    z-index: 2200;
}

.lightbox-prev {
    left: 24px;
}

.lightbox-next {
    right: 436px;
}


.lightbox-close {
    top: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    font-size: 20px;
    z-index: 2300;
}

.lightbox-prev:hover,
.lightbox-next:hover,
.lightbox-close:hover {
    background: rgba(60, 60, 60, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-close:hover {
    transform: scale(1.1);
}

.lightbox-info-toggle {
    display: none;
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .worlds-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .lightbox-sidebar {
        display: none;
    }

    .lightbox-next {
        right: 20px;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    #nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 75%;
        height: 100vh;
        background-color: var(--bg-card);
        padding-top: 100px;
        transform: translateX(100%);
        visibility: hidden;
        transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1), visibility 0.4s ease;
        z-index: 1000;
        overflow-y: auto;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
    }

    #nav-menu.open {
        transform: translateX(0);
        visibility: visible;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding-bottom: 60px;
    }

    .nav-links a {
        font-size: 18px;
    }

    .dropdown {
        width: 100%;
        text-align: center;
    }

    .dropdown-menu {
        position: relative;
        transform: none;
        opacity: 0;
        visibility: hidden;
        background-color: rgba(198, 0, 50, 0.05);
        box-shadow: none;
        border: none;
        width: 100%;
        text-align: center;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.4s ease;
        display: block !important;
        margin: 0;
    }

    .dropdown.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 500px;
        margin: 10px 0;
        padding: 10px 0;
    }

    .dropdown-header,
    .divider {
        display: none;
    }

    .dropdown-menu li a {
        padding: 10px 0 !important;
        font-size: 16px !important;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .lightbox-content {
        flex-direction: column;
    }

    .lightbox-main {
        height: 55%;
        width: 100%;
        flex: none;
        padding: 0;
    }

    .lightbox-sidebar {
        position: relative;
        width: 100%;
        height: 45%;
        max-height: none;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        transform: none !important;
        background-color: #000;
        padding: 25px 20px;
        display: flex;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .lightbox-sidebar h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 48px;
        height: 48px;
        background: rgba(30, 30, 30, 0.6);
        top: 40%;
    }

    .lightbox-next {
        right: 15px;
    }

    .lightbox-prev {
        left: 15px;
    }

    .lightbox-close {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }

    .lightbox-main img {
        max-width: 100%;
        max-height: 100%;
    }
}