.screenshot-gallery {
    position: relative;
}

/* Yeni ikonlu tab tasarımı */
.featured-tabs {
    position: relative;
}

.featured-tabs__wrapper {
    position: relative;
    z-index: 2;
}

.featured-tabs__nav-wrapper {
    background: rgba(30, 41, 59, 0.8);
    border-radius: 15px;
    padding: 15px 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: visible;
}

.featured-tabs__nav {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 10px;
    padding: 5px 0;
    scroll-behavior: smooth;
}

.featured-tabs__nav::-webkit-scrollbar {
    display: none;
}

.featured-tabs__nav .nav-item {
    flex: 0 0 auto;
}

.featured-tabs__nav .nav-link {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    padding: 12px 20px;
    color: #fff;
    border-radius: 10px;
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    min-width: auto;
    height: 100%;
}

.featured-tabs__nav .nav-link.active,
.featured-tabs__nav .nav-link:hover {
    background: #2a3a4e;
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 10;
}

.featured-tabs__icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    margin-right: 12px;
    flex-shrink: 0;
}

.featured-tabs__nav .nav-link span {
    font-weight: 500;
    font-size: 14px;
    white-space: nowrap;
}

.screenshot-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.bg-dark-800 {
    background: #1e293b;
}

.text-gray-200 {
    color: #e2e8f0;
}

.text-gray-300 {
    color: #cbd5e1;
}

.feature-icon {
    font-size: 16px;
}

.feature-text {
    font-size: 14px;
}

/* Kaydırma ok düğmeleri */
.tabs-scroll-arrows {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    pointer-events: none;
    z-index: 5;
}

.tabs-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.8);
    color: white;
    border: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.tabs-arrow:hover {
    background: rgba(59, 130, 246, 1);
    transform: translateY(-50%) scale(1.1);
}

.tabs-arrow-left {
    left: 10px;
}

.tabs-arrow-right {
    right: 10px;
}

/* Tablet ve mobil uyumluluk */
@media (max-width: 991px) {
    .featured-tabs__nav .nav-link {
        padding: 10px 15px;
    }

    .featured-tabs__icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
        margin-right: 10px;
    }

    .featured-tabs__nav .nav-link span {
        font-size: 13px;
    }

    .screenshot-card__details {
        margin-top: 20px;
    }
}

@media (max-width: 767px) {
    .featured-tabs__nav-wrapper {
        padding: 12px 40px;
    }

    .featured-tabs__nav {
        justify-content: flex-start;
    }

    .featured-tabs__nav .nav-link {
        padding: 8px 12px;
    }

    .featured-tabs__icon {
        width: 30px;
        height: 30px;
        font-size: 14px;
        margin-right: 8px;
    }

    .featured-tabs__nav .nav-link span {
        font-size: 12px;
    }

    .tabs-arrow {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
}