.showcase-section {
    background: var(--dark-gradient);
    padding: 6rem 2rem;
}

.showcase-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1.5rem;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.showcase-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.showcase-item p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.6;
}

.showcase-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.showcase-image {
    width: 100%;
    max-width: 420px;
    height: 100%;
    cursor: pointer;
    position: relative;
    aspect-ratio: 1.618 / 1;
    color: var(--text-muted);
    font-size: 1.2rem;
    transition: transform 0.2s ease;
    margin-bottom: 1rem;
    overflow: hidden;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.showcase-image:hover {
    transform: scale(1.03);
}

.showcase-image::after {
    content: '🔍';
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.showcase-image:hover::after {
    opacity: 1;
    transform: scale(1.25);
}

.showcase-number {
    font-size: 1.2rem;
    font-weight: bold;
    color: #4facfe;
    margin-bottom: 1rem;
    text-align: center;
}

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    visibility: hidden;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    z-index: 10001;
    user-select: none;
}

.lightbox-prev:hover,
.lightbox-next:hover,
.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.lightbox-prev {
    left: 20px;
    z-index: 10001;
}

.lightbox-next {
    right: 20px;
    z-index: 10001;
}

.lightbox-close {
    position: absolute;
    z-index: 10001;
    top: -50px;
    right: -10px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
    padding: 10px;
}

.lightbox img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
}

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

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    user-select: none;
}

.lightbox-counter {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 14px;
    background: rgba(0, 0, 0, 0.5);
    padding: 5px 10px;
    border-radius: 15px;
}

.slider-image {
    cursor: pointer;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 15px;
    transition: opacity 0.3s ease;
}

.slider-image:hover {
    transform: scale(1.02);
}

.slider-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1.618 / 1;
    background: var(--dark-gradient);
    border-radius: 15px;
    overflow: hidden;
}

.slider-container:hover {
    opacity: 1;
}

.slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    opacity: 1;
}

.slider-btn {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    min-width: 35px;
    min-height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    font-weight: bold;
    pointer-events: auto;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

.slider-btn:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: scale(1.1);
}

.slider-btn:active {
    transform: scale(0.95);
}

.slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    row-gap: 6px;
    max-width: 90%;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 12px;
    min-height: 12px;
    margin: 0 2px;
    display: inline-block;
}

.dot.active {
    background: #4facfe;
    transform: scale(1.2);
}

.dot:hover {
    background: #4facfe;
    transform: scale(1.1);
}

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

.image-counter {
    text-align: center;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

@media (max-width: 768px) {
    .showcase-section {
        padding: 4rem 1rem;
    }

    .showcase-item {
        padding: 1.5rem;
    }

    .showcase-item:hover {
        transform: translateY(-3px);
    }

    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .showcase-image {
        height: 200px;
    }

    .lightbox {
        padding: 1rem;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: -40px;
        width: 35px;
        height: 35px;
        font-size: 1rem;
        right: 10px;
    }

    .slider-btn {
        width: 30px;
        height: 30px;
        min-width: 30px;
        min-height: 30px;
        font-size: 1rem;
    }

    .slider-controls {
        padding: 0 0.5rem;
    }

    .dot {
        width: 6px;
        height: 6px;
        min-width: 16px;
        min-height: 16px;
        margin: 0 4px;
    }

    .slider-dots {
        bottom: 30px;
        gap: 6px;
    }

    .lightbox-counter {
        bottom: 20px;
        font-size: 12px;
    }

    .lightbox-info {
        bottom: -50px;
        padding: 0.75rem;
    }

    .lightbox-title {
        font-size: 1rem;
    }

    .lightbox-description {
        font-size: 0.8rem;
    }
}