.app-details-page {
    direction: rtl;
}

.app-icon-large img {
    width: 120px;
    height: 120px;
    object-fit: cover;
}

.download-btn {
    transition: all 0.3s ease;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,123,255,0.3) !important;
}

.screenshots-carousel {
    scrollbar-width: thin;
}

.screenshots-carousel::-webkit-scrollbar {
    height: 8px;
}

.screenshots-carousel::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.screenshots-carousel::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 10px;
}

.similar-app-card {
    transition: transform 0.3s ease;
}

.similar-app-card:hover {
    transform: translateY(-5px);
}

.rating-bar .progress {
    background-color: #e9ecef;
}

.section-title {
    position: relative;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(45deg, #007bff, #0056b3);
    border-radius: 2px;
}

@media (max-width: 768px) {
    .app-header .row > div {
        text-align: center;
    }
    
    .app-quick-info .row {
        justify-content: center;
    }
    
    .screenshots-carousel {
        padding-right: 15px;
        padding-left: 15px;
    }
}