

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Zalando Sans SemiExpanded", sans-serif;
    font-optical-sizing: auto;
    font-weight: weight;
    font-style: normal;
}

:root {
    --bg: #0f1115;
    --bg-alt: #161922;
    --text: #eaeaf0;
    --muted: #a0a3ad;
    --accent: #ce9df9;
    --card: #1c1f2a;
    --radius: 16px;
}

body {
    font-family: system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
    border-radius: var(--radius);
}

.container {
    width: min(1200px, 90%);
    margin: auto;
}

.section {
    padding: 120px 0;
}

.section.alt {
    background: var(--bg-alt);
}

/* ================= HEADER ================= */
.site-header {
    position: fixed;
    width: 100%;
    background: oklch(24.367% 0.08602 286.789 / 0.406);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.logo {
    font-weight: 700;
    letter-spacing: 2px;
}

.main-nav a {
    margin-left: 24px;
    text-decoration: none;
    color: var(--text);
    font-size: 0.95rem;
}

.nav-btn {
    padding: 8px 16px;
    border: 1px solid var(--accent);
    border-radius: 999px;
}

/* ================= HERO ================= */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: url("/DJ/2026-1/1.jpg") center / cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.hero-content {
    position: relative;
    max-width: 700px;
}

.hero-label {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    color: var(--muted);
}

.hero h2 {
    font-size: clamp(3rem, 6vw, 4.5rem);
    margin: 20px 0;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-top: 30px;
}

/* ================= BUTTONS ================= */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
}

.btn.primary {
    background: var(--accent);
    color: #000;
}

.btn.ghost {
    border: 1px solid var(--accent);
    color: var(--accent);
}

/* ================= CONTENT ================= */
.split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
}

.feature-list {
    margin-top: 20px;
    list-style: none;
}

.feature-list li {
    margin-bottom: 10px;
    color: var(--muted);
}

.image-card {
    overflow: hidden;
    border-radius: var(--radius);
}

/* ================= CARDS ================= */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.card {
    background: var(--card);
    padding: 40px;
    border-radius: var(--radius);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-8px);
}

/* ================= GALLERY ================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

/* ================= MONEY MUNEY ================= */
.pricing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.price-card {
    background: var(--card);
    padding: 40px;
    border-radius: var(--radius);
    text-align: center;
}

.price-card.highlight {
    border: 2px solid var(--accent);
}

.price {
    font-size: 2.5rem;
    margin: 20px 0;
}

/* ================= FORM ================= */
.narrow {
    max-width: 600px;
}

.contact-form {
    display: grid;
    gap: 16px;
}

.contact-form input,
.contact-form textarea {
    padding: 14px;
    background: var(--bg-alt);
    border: 1px solid #131418;
    color: var(--text);
    border-radius: 8px;
}

/* ================= FOOTER ================= */
.site-footer {
    background: #0b0d12;
    padding: 40px 0;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--muted);
}

/* Box */
.box {
    max-width: 500px;
    margin: 0px 0 0px auto;
    /* oben, rechts, unten, links */
    border: 2px solid #000;
    border-radius: 8px;
    background: #00000018;
    overflow: hidden;
    margin-right: 50px;
}

/* Klickbare Header */
.box summary {
    padding: 15px 20px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    list-style: none;
    /* entferne vom Standard-Pfeil */
}

/* eigene Pfeil */
.box summary::after {
    content: "▼";
    float: right;
    transition: transform 0.3s ease;
}

/* Pfeil drehen wenn offen */
.box[open] summary::after {
    transform: rotate(180deg);
}

/* Inhalt */
.content {
    padding: 0 20px 20px;
    animation: fadeIn 0.3s ease;
}

/* klini Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-container {
    margin-left: 50px;
    display: flex;
    /* nebeneinander anordne */
    gap: 20px;
    /* Abstand zwische Bild und FAQ */
    align-items: flex-start;
    /* obe usrichte */
    flex-wrap: wrap;
    /* bi klinem Bildschirm umbrechen */
}

.faq-image img {
    max-width: 380px;
    /* Bildgröße */
    width: 100%;
    height: auto;
    border-radius: 10px;
    /* optional abgerundeti Ecke */
}

.faq {
    flex: 1;
    /* FAQ nimmt verblibene platz i */
    min-width: 250px;
    /* damit es bi schmalen Bildschirme nit zu kli wird */
}

.box summary {
    cursor: pointer;
    font-weight: bold;
}

.kremmesnachrechts {
    margin-left: 700px;
}

.blank {
    margin-top: 80px;
}

.map-wrapper {
    margin-top: 40px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.map-wrapper iframe {
    width: 100%;
    height: 450px;
    border: 0;
}

/* ====================== MOBILE OPTIMIERUNG – CSS 1 :( uere drecks scheisse ====================== */
@media (max-width: 768px) {
    body {
        font-size: 15px;
    }

    .container {
        padding: 0 16px;
    }

    /* HEADER */
    .header-inner {
        height: 64px;
    }

    .main-nav {
        display: none;
        /* später ersetzbar durch Burger-Menü de ich zu 100% nit mache werd hüt*/
    }

    /* HERO */
    .hero {
        padding: 110px 16px 80px;
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero p {
        font-size: 1rem;
    }

    .btn {
        padding: 12px 26px;
        font-size: 0.95rem;
    }

    /* SPONSORS */
    .sponsors-section {
        padding: 60px 16px;
    }

    .sponsors-section h1 {
        font-size: 1.8rem;
    }

    .sponsor-card {
        padding: 20px;
    }

    /* TESTIMONIALS */
    .testimonial-card {
        padding: 22px;
    }

    /* CTA */
    .cta h2 {
        font-size: 1.9rem;
    }

    /* FOOTER */
    .footer-inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    /* FIX: de usversehe Mobile zerstört*/
    .kremmesnachrechts {
        margin-left: 0 !important;
    }
}

/* ====================== DIENSTLEISTUNGEN ====================== */
.services-section {
    padding: 100px 0;
    background: #0F1115;
    color: #ffffff;
    text-align: center;
}

.services-title {
    font-size: 2.4rem;
    margin-bottom: 60px;
    color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    width: min(1200px, 90%);
    margin: auto;
}

.service-card {
    background: #97609838;
    padding: 20px 22px 30px;
    border-radius: 6px;
}

.service-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    margin-bottom: 15px;
}

.service-top {
    font-size: 0.85rem;
    color: #ffffff;
    margin-bottom: 6px;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.95rem;
    color: #ffffff98;
    line-height: 1.5;
    margin-bottom: 18px;
}

.service-btn {
    display: inline-block;
    background: #fe8de758;
    color: #fff;
    padding: 8px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.9rem;
}

.service-btn.small {
    font-size: 0.8rem;
    padding: 6px 14px;
    margin: 4px;
}

.dj-buttons {
    display: flex;
    justify-content: center;
    gap: 8px;
}

/* ================= ABOUT / ÜBER UNS ================= */
.about-section {
    background: var(--bg-alt);
}

.about-split {
    align-items: center;
}

.about-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin: 20px 0;
}

.about-text p {
    color: var(--muted);
    margin-bottom: 16px;
    max-width: 520px;
}

.about-image img {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
}

/* Mobile Anpassunge zum 100 mol will de drecks scheiss nit goht */
@media (max-width: 768px) {
    .about-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-text {
        text-align: center;
    }

    .feature-list {
        text-align: left;
        display: inline-block;
        margin: auto;
    }
}

/* ================= TEAM ================= */
team-section {
    background: var(--bg);
    padding: 80px 0;
    text-align: center;
}

.team-title {
    font-size: clamp(2.2rem, 4vw, 3rem);
    margin-bottom: 70px;
    letter-spacing: 0.5px;
}

/* GRID */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 36px;
}

/* CARD */
.team-card {
    position: relative;
    background: linear-gradient(180deg, #1e2232, #141724);
    padding: 36px 26px 40px;
    border-radius: 22px;
    transition: all 0.35s ease;
    overflow: hidden;
}

/* subtle glow border */
.team-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.02));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    pointer-events: none;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.05);
}

/* AVATAR */
.team-card img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    margin: 0 auto 22px;
    background: #111;
    border: 3px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.03), 0 12px 30px rgba(0, 0, 0, 0.6);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.team-card:hover img {
    transform: scale(1.05);
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.05), 0 18px 40px rgba(0, 0, 0, 0.7);
}

/* NAME */
.team-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: 0.4px;
}

/* ROLE */
.team-card .role {
    font-size: 0.95rem;
    opacity: 0.75;
    margin-bottom: 10px;
}

/* beschribig oder so */
.team-card .desc {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.65;
    max-width: 260px;
    margin: 0 auto;
    text-align: center;
}

.list-button-container {
    display: flex;
    align-items: center;
    /* Button mittig zur Liste ausrichten */
    gap: 20px;
    /* Abstand zwischen Liste und Button */
}

.feature-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.feature-list li {
    margin-bottom: 8px;
    color: var(--muted);
}

.btn-modern {
    margin-left: 50px;
    display: inline-block;
    padding: 12px 26px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #626fff5d, #ff47e373);
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
    background-color: pink;
}

/* ===================================== MOBILE FIX – hoffentlich goht es jetzt oder das löschen spöter katarina (CSS 1 + CSS 2) ===================================== */
@media (max-width: 768px) {

    /* ===== GLOBAL ===== */
    body {
        font-size: 15px;
        overflow-x: hidden;
    }

    .container {
        width: 100%;
        padding: 0 16px;
    }

    .section {
        padding: 70px 0;
    }

    /* ===== HEADER ===== */
    .header-inner {
        height: 60px;
    }

    .main-nav {
        display: none;
    }

    /* ===== HERO ===== */
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 120px 16px 70px;
        text-align: center;
    }

    .hero h1,
    .hero h2 {
        font-size: 2.1rem;
        line-height: 1.2;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 14px;
        align-items: stretch;
    }

    .btn {
        width: 100%;
        text-align: center;
        padding: 14px;
        font-size: 1rem;
    }

    /* ===== SPLIT / GRID (hit the griddy) ===== */
    .split,
    .about-split {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    /* ===== CARDS ===== */
    .card,
    .price-card,
    .service-card,
    .sponsor-card,
    .testimonial-card {
        padding: 24px;
    }

    /* ===== FAQ ===== */
    .faq-container {
        margin-left: 0;
        flex-direction: column;
        gap: 30px;
    }

    .faq-image img {
        max-width: 100%;
    }

    .box {
        max-width: 100%;
        margin: 0;
    }

    /* ===== MAP ===== */
    .map-wrapper iframe {
        height: 260px;
    }

    /* ===== TEAM ===== */
    .team-card img {
        width: 130px;
        height: 130px;
    }

    /* ===== SERVICES ===== */
    .service-card img {
        height: 200px;
    }

    .dj-buttons {
        flex-wrap: wrap;
        gap: 10px;
    }

    /* ===== BUTTON NEBEN LISTE ===== */
    .list-button-container {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .btn-modern {
        margin-left: 0;
        width: 100%;
        text-align: center;
    }

    /* ===== FOOTER ===== */
    .footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    /* ===== HARTE FIXES (vallahim lösch das wenn du spöter was machsch und es nit goht) ===== */
    .kremmesnachrechts {
        margin-left: 0 !important;
    }
}

/* ================================= MOBILE HEADER – GANZ OBEN FIX ================================= */
@media (max-width: 768px) {

    /* KEIN ABSTAND OBEN (bitte merk dier de scheiss du peach) */
    html,
    body {
        margin: 0;
        padding: 0;
    }

    /* HEADER */
    .site-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: rgba(15, 17, 21, 0.92);
        z-index: 9999;
    }

    .header-inner {
        height: auto;
        padding: 6px 0;
        flex-direction: column;
        gap: 4px;
    }

    /* Logo*/
    .logo {
        font-size: 1rem;
        line-height: 1;
    }

    /* NAV */
    .main-nav {
        display: flex !important;
        justify-content: center;
        flex-wrap: wrap;
        gap: 6px;
    }

    .main-nav a {
        margin: 0;
        padding: 5px 10px;
        font-size: 0.8rem;
        line-height: 1.1;
    }

    .main-nav .nav-btn {
        padding: 5px 12px;
        font-size: 0.8rem;
    }

    /* das de Content nit unter dem kack header isch */
    body {
        padding-top: 72px;
    }
}

/* Grundlegendes Styling für Header */
/* Navigation Links (hoffentlich) */
.main-nav a {
    color: #fff;
    text-decoration: none;
    margin-left: 20px;
    position: relative;
    transition: color 0.3s, transform 0.3s;
}

.main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    left: 0;
    bottom: -4px;
    background: linear-gradient(to right, #360d69, #af24a1);
    transition: width 0.3s;
}

.main-nav a:hover::after {
    width: 100%;
}

.main-nav a:hover {
    color: #cabdff;
    transform: translateY(-2px);
}

/* Smooth Scroll mache */
html {
    scroll-behavior: smooth;
}

/* Optional: Body Style */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* Styling für den Link dings wo ich gmacht han */
/* Optional: BITTE ABSTAND BEACHTE digga*/
#contact {
    scroll-margin-top: 70px;
    /* verhindert dass Navbar den Abschnitt überdeckt */
}

#tickets {
    scroll-margin-top: 70px;
}

/* Grundstil für den Button */
.route-btn {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: bold;
    color: #fff;
    background: linear-gradient(90deg, #ff6a00, #ee0979);
    border: none;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Hover-Effekt */
.route-btn:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(90deg, #4f2d82, #6d1c6a);
}

/* Pulsierender Glanz von links nach rechts :D */
.route-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transform: skewX(-25deg);
    transition: all 0.7s ease;
}

.route-btn:hover::before {
    left: 125%;
}

.service-card img {
    width: 100%;
    border-radius: 10px;
}

.service-card video {
    width: 50%;
    border-radius: 10px;
    object-fit: cover;
}

/* Burger verstecken auf Desktop */
.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.burger span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: 0.3s;
}

/* MOBILE */
@media (max-width: 900px) {
    .burger {
        display: flex;
        position: absolute;
        right: 20px;
        top: 25px;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 50%;
        height: 100vh;
        background: #111;
        flex-direction: column;
        padding-top: 100px;
        gap: 20px;
        transition: 0.4s ease;
        z-index: 999;
    }

    .main-nav a {
        color: white;
        font-size: 18px;
    }

    .main-nav.active {
        right: 0;
    }
}

/* Burger Animation */
.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Close Button */
.close-btn {
    display: none;
}

/* MOBILE */
@media (max-width: 900px) {
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 50%;
        height: 100vh;
        background: #111;
        flex-direction: column;
        align-items: center;
        padding-top: 100px;
        gap: 25px;
        transition: 0.4s ease;
        z-index: 1000;
    }

    .main-nav.active {
        right: 0;
    }

    .close-btn {
        display: block;
        position: absolute;
        top: 25px;
        right: 25px;
        font-size: 32px;
        color: white;
        cursor: pointer;
    }
}



@media (max-width: 768px) {
    .gallery-grid img {
        height: 150px;
    }
}



/* Mobile Anpassung */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }

    .gallery-grid a img {
        height: 120px;
    }
}

.webCreator {
    color: rgba(255, 255, 255, 0.427);
}

/* Footer Text & Link nebeneinander */
.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--muted);
    flex-wrap: wrap;
    /* für Mobile */
    gap: 12px;
}

.footer-text {
    display: flex;
    align-items: center;
    gap: 6px;
    /* Abstand zwischen Text und Icon/Link */
}

.webCreator {
    color: var(--muted);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.3s, transform 0.3s;
}

.webCreator:hover {
    color: var(--accent);
    transform: translateY(-2px);
}

/* E-Mail rechts (auf Desktop) */
.contact-email {
    text-align: right;
}

/* Mobile Anpassung */
@media (max-width: 768px) {
    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .contact-email {
        text-align: center;
    }
}

/* Masonry Gallery */
.gallery-grid {
    column-count: 4;
    /* Desktop */
    column-gap: 10px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 0;
}

.gallery-grid a {
    display: inline-block;
    width: 100%;
    margin-bottom: 10px;
    break-inside: avoid;
    /* Kein Zerschneiden in Spalten */
    opacity: 0;
    transform: translateY(50px);
    transition: transform 0.8s cubic-bezier(.19, 1, .22, 1), opacity 0.8s ease;
}

.gallery-grid img {
    width: 100%;
    height: auto;
    /* Originalhöhe beibehalten */
    display: block;
    object-fit: contain;
    /* Nicht zuschneiden */
    border-radius: 0;
    /* Keine abgerundeten Ecken */
    transition: transform 0.5s ease, filter 0.5s ease;
}

/* Hover Effekt */
.gallery-grid a:hover img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* Scroll Reveal */
.gallery-grid a.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Lightbox Overlay */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    cursor: pointer;
}

.lightbox-overlay img {
    max-width: 90%;
    max-height: 90%;
}

/* Responsive Masonry */
@media (max-width: 1200px) {
    .gallery-grid {
        column-count: 3;
    }
}

@media (max-width: 900px) {
    .gallery-grid {
        column-count: 2;
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        column-count: 1;
    }
}

/* Lightbox Overlay */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.lightbox-overlay img {
    max-width: 90%;
    max-height: 90%;
}

/* Pfeile */
.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 3rem;
    cursor: pointer;
    user-select: none;
    padding: 10px;
    z-index: 2100;
    transition: color 0.3s;
}

.lightbox-arrow:hover {
    color: #aaa;
}

.lightbox-arrow.left {
    left: 20px;
}

.lightbox-arrow.right {
    right: 20px;
}

