/* GENERAL WEBSITE CONTAINER */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.nav-menu a:hover {
    color: #8e59ff;
}

/* Remove default browser spacing */
html, body {
    margin: 0;
    padding: 0;
}

/* Smooth-scroll to in-page anchors (e.g. Trama / Personaggi buttons) */
html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

/* Short highlight animation played on the section you land on */
@keyframes section-flash {
    0% { box-shadow: 0 0 0 0 rgba(142, 89, 255, 0); }
    25% { box-shadow: 0 0 50px 8px rgba(142, 89, 255, 0.35); }
    100% { box-shadow: 0 0 0 0 rgba(142, 89, 255, 0); }
}

.section-flash {
    animation: section-flash 1s ease-out;
    border-radius: 12px;
}

/* LOGO OG in alto a SX */
.nav-logo img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

/* FONT DELLA BARRA PRINCIPALE */
.nav-menu a {
    font-family: 'Rajdhani', sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    color: white;
}

.nav-menu .crackcode-link {
    color: #222222;
}

.nav-menu .crackcode-link:hover {
    color: #7440d6;
}

/* DISTANZA TRA LE PAROLE DELLA BARRA PRINCIPALE */
.nav-menu {
    display: flex;
    gap: 20px;
}

/* Navigation Bar */
.navbar {
    width: 100%;
    min-height: 70px;
    background-color: #222222;
}

.navbar-content {
    width: 100%;
    max-width: 1200px;
    min-height: 70px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;

    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
}

.nav-menu {
    display: flex;
    gap: 20px;
    justify-content: center; /* centra il menu nella colonna centrale */
}

.nav-socials {
    display: flex;       /* <- controlla che ci sia ancora */
    gap: 12px;
    align-items: center;
    justify-self: end;
}


body {
    background-image: url("../assets/icons/pog_bg.png");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}


/*
body {
    background-color: #151515;
}
*/

.social-icon {
    position: relative;
    width: 40px;
    height: 40px;
    display: block;
}

.social-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
}

.social-icon .hover-icon {
    opacity: 0;
}

.social-icon:hover .normal-icon {
    opacity: 0;
}

.social-icon:hover .hover-icon {
    opacity: 1;
}

/* Grandezza icone social */
.nav-socials img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.nav-socials a:hover img {
    content: var(--hover-image);
}

.hero {
    padding-top: 60px;
    padding-bottom: 60px;
    color: white;
}

.hero-banner {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px; /* opzionale, per angoli smussati */
}

/* MGNK / TNWM banners on index.html: clickable, slow zoom on hover */
.game-banner-link {
    display: block;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

.game-banner-link .hero-banner {
    transition: transform 1.6s ease;
}

.game-banner-link:hover .hero-banner {
    transform: scale(1.08);
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 20px;
    margin-bottom: 40px;
}

.cta-btn {
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    background-color: #8e59ff;
    padding: 12px 24px;
    border-radius: 8px;
    transition: background-color 0.2s ease;
}

.cta-btn:hover {
    background-color: #6b1ca8;
}

.cta-steam {
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    background-color: #344ef5;
    padding: 12px 24px;
    border-radius: 8px;
    transition: background-color 0.2s ease;
}

.cta-steam:hover {
    background-color: #1c1cad;
}

.cta-itch {
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    background-color: #fb382e;
    padding: 12px 24px;
    border-radius: 8px;
    transition: background-color 0.2s ease;
}

.cta-itch:hover {
    background-color: #941111;
}

.cta-patreon {
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    background-color: #c08300;
    padding: 12px 24px;
    border-radius: 8px;
    transition: background-color 0.2s ease;
}

.cta-patreon:hover {
    background-color: #925902;
}

.hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 56px;
    letter-spacing: 1px;
    margin-bottom: -25px;
}

.hero p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

header {
    position: sticky;
    top: 0;
    z-index: 1000;
}

footer {
    background-color: rgb(20, 20, 20);
    padding-top: 50px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-brand {
    max-width: 260px;
}

.footer-brand h3 {
    font-family: 'Rajdhani', sans-serif;
    color: white;
    font-size: 20px;
    margin-bottom: 8px;
}

.footer-brand .highlight {
    color: #8e59ff;
}

.footer-brand p {
    color: rgb(160, 160, 160);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    margin: 0;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col h4 {
    font-family: 'Rajdhani', sans-serif;
    color: rgb(140, 140, 140);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 4px 0;
}

.footer-col a {
    font-family: 'Inter', sans-serif;
    color: white;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: #8e59ff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgb(50, 50, 50);
    padding-top: 20px;
    padding-bottom: 20px;
}

.footer-bottom p {
    color: rgb(140, 140, 140);
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    margin: 0;
}

.footer-discord-btn {
    background-color: rgb(45, 45, 45);
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 6px;
    transition: background-color 0.2s ease;
}

.footer-discord-btn:hover {
    background-color: #8e59ff;
}

.age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.age-gate-box {
    background-color: rgb(20, 20, 20);
    border: 1px solid #8e59ff;
    border-radius: 12px;
    padding: 40px;
    max-width: 420px;
    text-align: center;
}

.age-gate-box h2 {
    font-family: 'Rajdhani', sans-serif;
    color: white;
    font-size: 24px;
    margin-bottom: 16px;
}

.age-gate-box p {
    font-family: 'Inter', sans-serif;
    color: rgb(200, 200, 200);
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 12px;
}

.age-gate-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 24px;
}

.age-btn {
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.age-btn-yes {
    background-color: #8e59ff;
    color: white;
}

.age-btn-yes:hover {
    background-color: #7440d6;
}

.age-btn-no {
    background-color: rgb(50, 50, 50);
    color: white;
}

.age-btn-no:hover {
    background-color: rgb(70, 70, 70);
}

/* Contact Form */
.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 500px;
    margin-top: 24px;
}

.contact-form input,
.contact-form textarea {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    background-color: rgb(30, 30, 30);
    border: 1px solid rgb(60, 60, 60);
    border-radius: 8px;
    padding: 12px 16px;
    color: white;
    resize: vertical;
    width: 100%;
    box-sizing: border-box;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgb(140, 140, 140);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #8e59ff;
}

/* Email, Message, Submit occupano tutta la larghezza (entrambe le colonne) */
.contact-form input[name="email"],
.contact-form textarea,
.contact-form button {
    grid-column: 1 / -1;
}

.char-counter {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: rgb(140, 140, 140);
    margin-top: -8px;
    grid-column: 1 / -1;
}

/* Privacy Policy page */
.policy-section {
    max-width: 900px;
}

.policy-effective {
    font-family: 'Inter', sans-serif;
    color: #8e59ff;
    font-size: 14px;
    display: block;
    margin-top: 10px;
}

.policy-intro {
    font-family: 'Inter', sans-serif;
    color: rgb(200, 200, 200);
    font-size: 16px;
    line-height: 1.5;
    margin-top: 16px;
    margin-bottom: 32px;
}

.policy-box {
    background-color: rgba(20, 20, 20, 0.75);
    border: 1px solid rgba(142, 89, 255, 0.4);
    border-radius: 12px;
    padding: 28px 32px;
    margin-bottom: 24px;
}

.policy-box h2 {
    font-family: 'Rajdhani', sans-serif;
    color: white;
    font-size: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: 0 0 14px 0;
}

.policy-box p {
    font-family: 'Inter', sans-serif;
    color: rgb(200, 200, 200);
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 12px 0;
}

.policy-box p:last-child {
    margin-bottom: 0;
}

.policy-box a {
    color: #8e59ff;
}

.policy-inner-box {
    background-color: rgba(40, 40, 40, 0.6);
    border: 1px solid rgb(60, 60, 60);
    border-radius: 10px;
    padding: 20px 24px;
    margin-top: 16px;
}

.policy-inner-box h3 {
    font-family: 'Rajdhani', sans-serif;
    color: white;
    font-size: 16px;
    margin: 0 0 8px 0;
}

.policy-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 16px;
}

/* Cookie / Analytics Consent Banner */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgb(20, 20, 20);
    border-top: 1px solid #8e59ff;
    z-index: 9998;
    padding: 20px;
    box-sizing: border-box;
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-consent-content p {
    font-family: 'Inter', sans-serif;
    color: rgb(200, 200, 200);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    flex: 1 1 320px;
}

.cookie-consent-content a {
    color: #8e59ff;
    text-decoration: underline;
}

.cookie-consent-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-consent-buttons .age-btn {
    padding: 10px 20px;
    font-size: 14px;
}

@media (max-width: 600px) {
    .cookie-consent-buttons {
        width: 100%;
    }

    .cookie-consent-buttons .age-btn {
        flex: 1;
    }
}

/* Games Page - Hero Cards */
.games-hero {
    padding-top: 0;
    padding-bottom: 20px;
}

.games-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.game-card {
    position: relative;
    min-height: 480px;
    border-radius: 12px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-color: rgb(20, 20, 20);
    display: flex;
    align-items: flex-end;
    transition: box-shadow 0.4s ease, opacity 0.4s ease, filter 0.4s ease;
}

/* Landing on games.html from an index.html banner click: make it unmistakable
   which of the two side-by-side cards was chosen */
.game-card.game-card-picked {
    box-shadow: 0 0 45px 10px rgba(142, 89, 255, 0.55);
}

.game-card.game-card-dimmed {
    opacity: 0.4;
    filter: grayscale(50%);
}

/* The background image lives on this pseudo-element (not the card itself)
   so it can zoom on hover without moving the text/buttons on top of it */
.game-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transition: transform 1.6s ease;
}

.game-card:hover::before {
    transform: scale(1.08);
}

@media (prefers-reduced-motion: reduce) {
    .game-card::before {
        transition: none;
    }
}

.game-card-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 28px;
    box-sizing: border-box;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 10%, rgba(0, 0, 0, 0.55) 55%, rgba(0, 0, 0, 0) 100%);
}

.game-card-title-img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 56px;
    object-fit: contain;
    margin: 0 0 10px 0;
}

.game-card-desc {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgb(210, 210, 210);
    line-height: 1.5;
    margin: 0 0 18px 0;
    max-width: 420px;
}

.game-card-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cta-btn-outline {
    font-family: 'Rajdhani', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    background-color: transparent;
    border: 1px solid #8e59ff;
    padding: 10px 22px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    display: inline-block;
}

.cta-btn-outline:hover {
    background-color: rgba(142, 89, 255, 0.15);
}

@media (max-width: 800px) {
    .games-hero-grid {
        grid-template-columns: 1fr;
    }
}

/* Game Section */
.game-section {
    padding-top: 60px;
    padding-bottom: 40px;
    scroll-margin-top: 90px;
    border-top: 1px solid rgb(40, 40, 40);
}

.game-section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 42px;
    color: white;
    letter-spacing: 0.5px;
    margin: 0 0 32px 0;
}

.game-section-placeholder {
    font-family: 'Inter', sans-serif;
    color: rgb(150, 150, 150);
    font-size: 15px;
}

/* Stats matrix (1x4) */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}

.stat-box {
    background-color: rgba(20, 20, 20, 0.75);
    border: 1px solid rgba(142, 89, 255, 0.35);
    border-radius: 10px;
    padding: 22px 16px;
    text-align: center;
}

.stat-value {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    color: #8e59ff;
    margin-bottom: 6px;
}

.stat-label {
    display: block;
    font-family: 'Rajdhani', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgb(180, 180, 180);
}

@media (max-width: 700px) {
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Plot block */
.plot-block {
    max-width: 900px;
    margin-bottom: 56px;
}

.plot-block h3,
.characters-block h3 {
    font-family: 'Rajdhani', sans-serif;
    color: white;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 16px 0;
}

.plot-block p {
    font-family: 'Inter', sans-serif;
    color: rgb(200, 200, 200);
    font-size: 15px;
    line-height: 1.7;
}

/* Characters block */
.characters-block {
    scroll-margin-top: 90px;
}

.char-tabs {
    display: flex;
    border-bottom: 1px solid rgb(50, 50, 50);
    margin-bottom: 24px;
}

.char-tab {
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: rgb(150, 150, 150);
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    padding: 12px 20px;
    cursor: pointer;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.char-tab:hover {
    color: white;
}

.char-tab.active {
    color: white;
    border-bottom-color: #8e59ff;
}

.char-panel {
    display: none;
}

.char-panel.active {
    display: block;
}

.char-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.char-chip {
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: rgb(200, 200, 200);
    background-color: rgb(30, 30, 30);
    border: 1px solid rgb(60, 60, 60);
    border-radius: 999px;
    padding: 8px 20px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.char-chip:hover {
    border-color: #8e59ff;
    color: white;
}

.char-chip.active {
    background-color: #8e59ff;
    border-color: #8e59ff;
    color: white;
}

.char-detail {
    display: none;
    grid-template-columns: 1fr 1.3fr;
    gap: 36px;
    align-items: center;
    background-color: rgba(20, 20, 20, 0.6);
    border: 1px solid rgb(50, 50, 50);
    border-radius: 12px;
    padding: 28px;
}

.char-detail.active {
    display: grid;
}

/* Character gallery: one large image + 3 previews below */
.char-detail-gallery {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.char-media-main {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 10px;
    overflow: hidden;
    background-color: rgb(25, 25, 25);
}

.char-media-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.char-media-thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.char-media-thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    overflow: hidden;
    background-color: rgb(25, 25, 25);
}

.char-media-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Shown automatically if the image file listed in data-placeholder is missing */
.char-media--missing {
    border: 1px dashed rgb(80, 80, 80);
    background-color: rgb(20, 20, 20);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
    box-sizing: border-box;
}

.char-media--missing::after {
    content: attr(data-placeholder);
    font-family: 'Inter', sans-serif;
    color: rgb(110, 110, 110);
    font-size: 12px;
    line-height: 1.4;
}

.char-media-thumb.char-media--missing::after {
    font-size: 10px;
}

.char-name {
    font-family: 'Rajdhani', sans-serif;
    color: white;
    font-size: 42px;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.char-tagline {
    font-family: 'Inter', sans-serif;
    color: #8e59ff;
    font-style: italic;
    font-size: 18px;
    line-height: 1.5;
    margin: 0 0 16px 0;
}

.char-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.char-tag {
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 7px 16px;
    border-radius: 6px;
    border: 1px solid;
}

.char-tag--a {
    background-color: rgba(142, 89, 255, 0.15);
    border-color: #8e59ff;
    color: #b98bff;
}

.char-tag--b {
    background-color: rgba(52, 78, 245, 0.15);
    border-color: #344ef5;
    color: #8fa0ff;
}

.char-tag--c {
    background-color: rgba(192, 131, 0, 0.18);
    border-color: #c08300;
    color: #e0b34d;
}

.char-bio {
    font-family: 'Inter', sans-serif;
    color: rgb(190, 190, 190);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 750px) {
    .char-detail.active {
        grid-template-columns: 1fr;
    }

    .char-detail-gallery {
        order: -1;
    }
}

/* Gallery images open the lightbox on click */
.char-detail-gallery img {
    cursor: pointer;
    transition: opacity 0.15s ease;
}

.char-detail-gallery img:hover {
    opacity: 0.85;
}

/* Character Image Lightbox */
body.lightbox-open {
    overflow: hidden;
}

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.92);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.lightbox.open {
    display: flex;
}

.lightbox-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 90vw;
    max-height: 90vh;
    padding: 0 100px;
    box-sizing: border-box;
}

/* Shrink-wraps to the actual rendered size of the image, so the close
   button (positioned relative to this) always sits right at its corner */
.lightbox-image-wrap {
    position: relative;
    display: inline-block;
    max-width: 100%;
    max-height: 80vh;
}

.lightbox-image-wrap img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    display: block;
}

.lightbox-caption {
    font-family: 'Rajdhani', sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: white;
    margin: 16px 0 0 0;
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 34px;
    height: 34px;
    background-color: rgb(20, 20, 20);
    border: 2px solid #ff3b3b;
    border-radius: 50%;
    color: #ff3b3b;
    font-size: 20px;
    line-height: 1;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10002;
    transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.lightbox-close:hover {
    color: white;
    background-color: #ff3b3b;
    transform: scale(1.08);
}

.lightbox-nav {
    position: fixed;
    top: 0;
    height: 100%;
    width: 90px;
    max-width: 14vw;
    background-color: rgba(20, 20, 20, 0.35);
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    transition: background-color 0.2s ease;
}

.lightbox-nav:hover {
    background-color: rgba(142, 89, 255, 0.35);
}

.lightbox-prev {
    left: 0;
}

.lightbox-next {
    right: 0;
}

@media (max-width: 700px) {
    .lightbox-content {
        padding: 0 60px;
    }

    .lightbox-nav {
        width: 50px;
        font-size: 20px;
    }

    .lightbox-close {
        top: -12px;
        right: -12px;
        width: 28px;
        height: 28px;
        font-size: 16px;
    }
}