/* Mobile App Details Specific Styles */
.app-mobile-details-container {
    padding: 5px 0;
}

.app-detail-mobile-item {
    position: relative;
    overflow: hidden;
}

.app-detail-mobile-item.special-detail {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.app-detail-mobile-value-link {
    color: var(--park-primary);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.app-detail-mobile-value-link:hover {
    color: var(--park-secondary);
    text-decoration: underline;
}

/* Mobile app download buttons */
.app-download-buttons-mobile {
    padding: 0 15px;
}

.app-download-buttons-mobile .btn {
    font-size: 0.85rem;
    padding: 10px 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.app-download-buttons-mobile .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

@media (max-width: 375px) {
    .download-btn-text {
        font-size: 0.75rem;
    }
}

/* Improved mobile app header */
.app-hero-icon {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    border-radius: 18px;
}

.mobile-app-header {
    background: linear-gradient(145deg, rgba(var(--park-primary-rgb), 0.85), rgba(var(--park-secondary-rgb), 0.9));
    border-radius: 0 0 15px 15px;
    padding: 15px 15px 20px;
}

.mobile-app-info .app-hero-title,
.mobile-app-info .app-hero-developer,
.mobile-app-info .app-hero-rating {
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.mobile-app-info .app-hero-developer {
    opacity: 0.9;
}

/* Responsive adjustments */
/* About this app section improvements */
.app-about-card {
    border-radius: 12px;
    overflow: hidden;
}

.app-about-title {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--park-primary);
}

/* App details section spacing */
.app-section-container {
    margin-bottom: 25px;
    padding: 0 5px;
}

.section-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--park-primary);
}

/* Responsive adjustments */
@media (max-width: 360px) {
    .mobile-app-icon-container {
        flex: 0 0 60px;
    }

    .mobile-app-icon-container img {
        width: 60px;
        height: 60px;
    }

    .mobile-app-info .app-hero-title {
        font-size: 1rem;
    }

    .app-detail-mobile-icon {
        flex: 0 0 28px;
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }

    .app-details-mobile .row {
        margin-left: -5px;
        margin-right: -5px;
    }

    .app-details-mobile .col-6 {
        padding-left: 5px;
        padding-right: 5px;
    }
}